Click here to Skip to main content
15,899,754 members
Home / Discussions / C#
   

C#

 
GeneralRe: Flashy GDI+ Pin
c242328-Mar-08 6:41
c242328-Mar-08 6:41 
QuestionRead,write and save the configuration file likely named as "logger.exe.config"------------- Please Help anyone,its urgent Pin
BhuMan28-Mar-08 2:05
BhuMan28-Mar-08 2:05 
GeneralRe: Read,write and save the configuration file likely named as "logger.exe.config"------------- Please Help anyone,its urgent Pin
Reelix28-Mar-08 2:12
Reelix28-Mar-08 2:12 
GeneralRe: Read,write and save the configuration file likely named as "logger.exe.config"------------- Please Help anyone,its urgent Pin
BhuMan30-Mar-08 18:34
BhuMan30-Mar-08 18:34 
QuestionDDL Creation Pin
kontax28-Mar-08 1:11
kontax28-Mar-08 1:11 
GeneralRe: DDL Creation Pin
Reelix28-Mar-08 1:23
Reelix28-Mar-08 1:23 
GeneralRe: DDL Creation Pin
kontax28-Mar-08 1:29
kontax28-Mar-08 1:29 
GeneralRe: DDL Creation Pin
Reelix28-Mar-08 1:43
Reelix28-Mar-08 1:43 
private System.Windows.Forms.ListBox listBox1;
private void button1_Click(object sender, EventArgs e)
{
this.listBox1 = new System.Windows.Forms.ListBox();
this.SuspendLayout();
this.listBox1.Location = new System.Drawing.Point(0, 0);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(50, 50);
this.listBox1.Items.Add("Testing");
this.listBox1.SelectedIndexChanged += new System.EventHandler(this.l1_SelectedIndexChanged);
this.Controls.Add(listBox1);
this.ResumeLayout();
}

private void l1_SelectedIndexChanged(object sender, EventArgs e)
{
MessageBox.Show("It Works!");
}

Im not proud of it, but it works... Sigh | :sigh:

Might need some heavy modification... Dead | X|
GeneralRe: DDL Creation Pin
kontax28-Mar-08 2:29
kontax28-Mar-08 2:29 
GeneralRe: DDL Creation Pin
darkelv28-Mar-08 2:38
darkelv28-Mar-08 2:38 
GeneralRe: DDL Creation Pin
kontax28-Mar-08 6:12
kontax28-Mar-08 6:12 
Generalextender desktop Pin
ellllllllie28-Mar-08 0:26
ellllllllie28-Mar-08 0:26 
Generalnested foreach obj1 in obj2 Issue Pin
Harvey Saayman28-Mar-08 0:13
Harvey Saayman28-Mar-08 0:13 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
Bekjong28-Mar-08 0:20
Bekjong28-Mar-08 0:20 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
Harvey Saayman28-Mar-08 0:31
Harvey Saayman28-Mar-08 0:31 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
J4amieC28-Mar-08 1:15
J4amieC28-Mar-08 1:15 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
Harvey Saayman28-Mar-08 1:51
Harvey Saayman28-Mar-08 1:51 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
J4amieC28-Mar-08 2:03
J4amieC28-Mar-08 2:03 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
Harvey Saayman28-Mar-08 2:16
Harvey Saayman28-Mar-08 2:16 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
darkelv28-Mar-08 2:35
darkelv28-Mar-08 2:35 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
badshah20054-Apr-08 11:51
badshah20054-Apr-08 11:51 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
DavidNohejl28-Mar-08 2:10
DavidNohejl28-Mar-08 2:10 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
Bekjong28-Mar-08 2:15
Bekjong28-Mar-08 2:15 
GeneralRe: nested foreach obj1 in obj2 Issue Pin
DavidNohejl28-Mar-08 3:09
DavidNohejl28-Mar-08 3:09 
AnswerRe: nested foreach obj1 in obj2 Issue [SOLVED] Pin
Harvey Saayman28-Mar-08 2:51
Harvey Saayman28-Mar-08 2:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.