Click here to Skip to main content
15,891,763 members
Home / Discussions / C#
   

C#

 
GeneralRe: Making a global variable Pin
Christian Graus12-Nov-06 13:57
protectorChristian Graus12-Nov-06 13:57 
AnswerRe: Making a global variable Pin
beatles169212-Nov-06 19:36
beatles169212-Nov-06 19:36 
GeneralRe: Making a global variable Pin
Blekk13-Nov-06 5:47
Blekk13-Nov-06 5:47 
GeneralRe: Making a global variable Pin
Blekk13-Nov-06 8:01
Blekk13-Nov-06 8:01 
QuestionSplitting a string message into a list of Objects Pin
kristamed12-Nov-06 11:50
kristamed12-Nov-06 11:50 
AnswerRe: Splitting a string message into a list of Objects Pin
Christian Graus12-Nov-06 12:05
protectorChristian Graus12-Nov-06 12:05 
AnswerRe: Splitting a string message into a list of Objects Pin
shopi3012-Nov-06 13:58
shopi3012-Nov-06 13:58 
AnswerRe: Splitting a string message into a list of Objects Pin
Alexandr Kovshovik12-Nov-06 20:36
Alexandr Kovshovik12-Nov-06 20:36 
The following code creates a string object with substrings separated with '|' character. In order to get an array of strings you could use string.Split method:

<br />
  string str = "test1|test2|test3";<br />
  string[] list = str.Split('|');<br />

QuestionHow to Set DataGridView.Rows[0].Visible To False ? Pin
hdv21212-Nov-06 10:27
hdv21212-Nov-06 10:27 
AnswerRe: How to Set DataGridView.Rows[0].Visible To False ? Pin
Christian Graus12-Nov-06 11:15
protectorChristian Graus12-Nov-06 11:15 
GeneralRe: How to Set DataGridView.Rows[0].Visible To False ? Pin
hdv21212-Nov-06 11:22
hdv21212-Nov-06 11:22 
GeneralRe: How to Set DataGridView.Rows[0].Visible To False ? Pin
Christian Graus12-Nov-06 12:06
protectorChristian Graus12-Nov-06 12:06 
GeneralRe: How to Set DataGridView.Rows[0].Visible To False ? Pin
hdv21212-Nov-06 12:23
hdv21212-Nov-06 12:23 
GeneralRe: How to Set DataGridView.Rows[0].Visible To False ? Pin
Christian Graus12-Nov-06 12:30
protectorChristian Graus12-Nov-06 12:30 
AnswerRe: How to Set DataGridView.Rows[0].Visible To False ? Pin
shopi3012-Nov-06 14:12
shopi3012-Nov-06 14:12 
QuestionMoving Other Windows Pin
Now_Loading12-Nov-06 7:42
Now_Loading12-Nov-06 7:42 
AnswerRe: Moving Other Windows Pin
Amar Chaudhary12-Nov-06 8:21
Amar Chaudhary12-Nov-06 8:21 
GeneralRe: Moving Other Windows Pin
shopi3012-Nov-06 13:49
shopi3012-Nov-06 13:49 
GeneralRe: Moving Other Windows Pin
Now_Loading12-Nov-06 14:03
Now_Loading12-Nov-06 14:03 
GeneralRe: Moving Other Windows Pin
Amar Chaudhary12-Nov-06 15:15
Amar Chaudhary12-Nov-06 15:15 
GeneralRe: Moving Other Windows Pin
Now_Loading12-Nov-06 15:55
Now_Loading12-Nov-06 15:55 
GeneralRe: Moving Other Windows Pin
shopi3013-Nov-06 1:19
shopi3013-Nov-06 1:19 
QuestionHow can I do to do when I Click on controls, I have a Message with Control Name? Pin
ks79@bk.ru12-Nov-06 7:19
ks79@bk.ru12-Nov-06 7:19 
AnswerRe: How can I do to do when I Click on controls, I have a Message with Control Name? Pin
User 665812-Nov-06 7:31
User 665812-Nov-06 7:31 
GeneralRe: How can I do to do when I Click on controls, I have a Message with Control Name? Pin
ks79@bk.ru12-Nov-06 7:42
ks79@bk.ru12-Nov-06 7:42 

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.