Click here to Skip to main content
15,895,656 members
Home / Discussions / C#
   

C#

 
GeneralRe: creating tab page control in project property window Pin
sakthi s8-Nov-06 2:22
sakthi s8-Nov-06 2:22 
Questiondockable window? using MDI? Pin
h@s@n8-Nov-06 1:35
h@s@n8-Nov-06 1:35 
AnswerRe: dockable window? using MDI? Pin
saqib828-Nov-06 1:47
saqib828-Nov-06 1:47 
GeneralRe: dockable window? using MDI? Pin
h@s@n10-Nov-06 3:03
h@s@n10-Nov-06 3:03 
AnswerRe: dockable window? using MDI? [modified] Pin
bankai1238-Nov-06 12:39
bankai1238-Nov-06 12:39 
GeneralRe: dockable window? using MDI? Pin
h@s@n10-Nov-06 3:07
h@s@n10-Nov-06 3:07 
QuestionComboBox SelectedIndexChanged Pin
freshonlineMax8-Nov-06 1:34
freshonlineMax8-Nov-06 1:34 
AnswerRe: ComboBox SelectedIndexChanged Pin
Martin#8-Nov-06 1:48
Martin#8-Nov-06 1:48 
Hello,

Instead you could unlink the event before you start the Items.Add and link it agein when you are done.

Form_Load()<br />
{<br />
 this.comboBox1.SelectedIndexChanged-= ...<br />
 for (int i=0;i<10;i++)<br />
 {<br />
  comboBox1.Items.Add(i.toString());<br />
 }<br />
 this.comboBox1.SelectedIndexChanged+= ...<br />
}


All the best,

Martin
AnswerRe: ComboBox SelectedIndexChanged Pin
ednrgc8-Nov-06 2:51
ednrgc8-Nov-06 2:51 
GeneralRe: ComboBox SelectedIndexChanged Pin
freshonlineMax8-Nov-06 3:03
freshonlineMax8-Nov-06 3:03 
GeneralRe: ComboBox SelectedIndexChanged Pin
ednrgc8-Nov-06 3:05
ednrgc8-Nov-06 3:05 
QuestionHigh CPU load caused by this.Invalidate(myRegion); [modified] Pin
Mike Novy8-Nov-06 1:33
Mike Novy8-Nov-06 1:33 
AnswerRe: High CPU load caused by this.Invalidate(myRegion); Pin
vineas8-Nov-06 4:27
vineas8-Nov-06 4:27 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
Mike Novy8-Nov-06 5:48
Mike Novy8-Nov-06 5:48 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
vineas8-Nov-06 6:49
vineas8-Nov-06 6:49 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); [modified] Pin
Mike Novy8-Nov-06 7:44
Mike Novy8-Nov-06 7:44 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
vineas8-Nov-06 8:06
vineas8-Nov-06 8:06 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
Mike Novy8-Nov-06 8:46
Mike Novy8-Nov-06 8:46 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
vineas8-Nov-06 9:20
vineas8-Nov-06 9:20 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
Mike Novy8-Nov-06 9:52
Mike Novy8-Nov-06 9:52 
GeneralRe: High CPU load caused by this.Invalidate(myRegion); Pin
vineas8-Nov-06 10:46
vineas8-Nov-06 10:46 
Questionhow to get a date format mm.dd.yyyy( e.g. 12.31.2006) Pin
yogita charhate8-Nov-06 0:36
yogita charhate8-Nov-06 0:36 
AnswerRe: how to get a date format mm.dd.yyyy( e.g. 12.31.2006) Pin
Colin Angus Mackay8-Nov-06 0:44
Colin Angus Mackay8-Nov-06 0:44 
GeneralRe: how to get a date format mm.dd.yyyy( e.g. 12.31.2006) Pin
yogita charhate8-Nov-06 1:27
yogita charhate8-Nov-06 1:27 
QuestionHow Create Nonrectangular form in c#.net 2005 Pin
mohammadSoft8-Nov-06 0:30
mohammadSoft8-Nov-06 0:30 

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.