Click here to Skip to main content
15,900,818 members
Home / Discussions / C#
   

C#

 
AnswerRe: extract info from XML config files Pin
LongRange.Shooter11-May-06 7:04
LongRange.Shooter11-May-06 7:04 
GeneralRe: extract info from XML config files Pin
sean_mufc11-May-06 23:23
sean_mufc11-May-06 23:23 
AnswerRe: extract info from XML config files Pin
eric feng12-May-06 12:30
eric feng12-May-06 12:30 
QuestionException in calling Socket.Accept Pin
e_LA11-May-06 1:53
e_LA11-May-06 1:53 
AnswerRe: Exception in calling Socket.Accept Pin
eric feng12-May-06 12:34
eric feng12-May-06 12:34 
GeneralRe: Exception in calling Socket.Accept Pin
e_LA15-May-06 3:49
e_LA15-May-06 3:49 
QuestionRemove empty Items from checkedListBox Pin
mm31011-May-06 1:42
mm31011-May-06 1:42 
AnswerRe: Remove empty Items from checkedListBox Pin
JoeSharp11-May-06 1:59
JoeSharp11-May-06 1:59 
hi
tray this

for(int i = this.checkedListBox1.Items.Count-1; i >= 0; i--)
{
string txt = (string)this.checkedListBox1.Items[i].ToString();
if (txt.Equals(string.Empty))
this.checkedListBox1.Items.RemoveAt(i);
}

regards
joe
QuestionAdding a panel of specific size to a tabpage Pin
praveenqwe11-May-06 1:14
praveenqwe11-May-06 1:14 
AnswerRe: Adding a panel of specific size to a tabpage Pin
Wjousts11-May-06 2:22
Wjousts11-May-06 2:22 
GeneralRe: Adding a panel of specific size to a tabpage Pin
praveenqwe14-May-06 22:52
praveenqwe14-May-06 22:52 
QuestionDirectX with Windows.Forms controls performance Pin
241411-May-06 0:50
241411-May-06 0:50 
AnswerRe: DirectX with Windows.Forms controls performance Pin
Andy Moore11-May-06 3:37
Andy Moore11-May-06 3:37 
GeneralRe: DirectX with Windows.Forms controls performance Pin
241411-May-06 3:54
241411-May-06 3:54 
GeneralRe: DirectX with Windows.Forms controls performance Pin
Andy Moore11-May-06 6:46
Andy Moore11-May-06 6:46 
GeneralRe: DirectX with Windows.Forms controls performance Pin
241411-May-06 7:17
241411-May-06 7:17 
GeneralRe: DirectX with Windows.Forms controls performance Pin
Andy Moore11-May-06 7:38
Andy Moore11-May-06 7:38 
GeneralRe: DirectX with Windows.Forms controls performance Pin
241411-May-06 8:12
241411-May-06 8:12 
GeneralRe: DirectX with Windows.Forms controls performance Pin
Andy Moore11-May-06 8:21
Andy Moore11-May-06 8:21 
QuestionBuild Windows application from command prompt Pin
KishoreT11-May-06 0:45
KishoreT11-May-06 0:45 
AnswerRe: Build Windows application from command prompt Pin
Stefan Troschuetz11-May-06 0:58
Stefan Troschuetz11-May-06 0:58 
GeneralRe: Build Windows application from command prompt Pin
KishoreT11-May-06 1:33
KishoreT11-May-06 1:33 
GeneralRe: Build Windows application from command prompt Pin
Stefan Troschuetz11-May-06 3:33
Stefan Troschuetz11-May-06 3:33 
QuestionProblem in Passing structure by reference in c# Pin
analytiks11-May-06 0:39
analytiks11-May-06 0:39 
AnswerRe: Problem in Passing structure by reference in c# Pin
S. Senthil Kumar11-May-06 5:11
S. Senthil Kumar11-May-06 5:11 

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.