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

C#

 
AnswerRe: Direct Chat Over Internet Pin
sanki77926-Oct-06 23:54
sanki77926-Oct-06 23:54 
GeneralRe: Direct Chat Over Internet Pin
GermanDM27-Oct-06 0:43
GermanDM27-Oct-06 0:43 
GeneralRe: Direct Chat Over Internet Pin
Nougat H.27-Oct-06 0:54
Nougat H.27-Oct-06 0:54 
GeneralRe: Direct Chat Over Internet Pin
GermanDM27-Oct-06 1:29
GermanDM27-Oct-06 1:29 
GeneralRe: Direct Chat Over Internet Pin
Dave Kreskowiak27-Oct-06 6:11
mveDave Kreskowiak27-Oct-06 6:11 
AnswerRe: Direct Chat Over Internet Pin
Colin Angus Mackay27-Oct-06 1:05
Colin Angus Mackay27-Oct-06 1:05 
QuestionMultiple Selections highlighted in Listbox Pin
imnotso#26-Oct-06 23:19
imnotso#26-Oct-06 23:19 
AnswerRe: Multiple Selections highlighted in Listbox Pin
Elina Blank27-Oct-06 1:52
sitebuilderElina Blank27-Oct-06 1:52 
You can create a ListItem and set its Selected property to true. Or iterate throught
ListItems in your ListBox.
Something like this:

int i = 0
foreach(ListItem li in ListBox1.Items)
   {
      if( (li.Value == dataSet.Tables[0].Rows[i]["PersonID"].ToString())
      {
         li.Selected = true; 
      }
      i += 1;
   }


Sincerely,
Elina

Life is great!!!
Enjoy every moment of it! Blush | :O

GeneralRe: Multiple Selections highlighted in Listbox Pin
imnotso#27-Oct-06 2:02
imnotso#27-Oct-06 2:02 
QuestionHow 2 populate listview using arraylist? Pin
Support12326-Oct-06 23:03
Support12326-Oct-06 23:03 
AnswerRe: How 2 populate listview using arraylist? [modified] Pin
rah_sin27-Oct-06 0:44
professionalrah_sin27-Oct-06 0:44 
QuestionMonitoring installations Pin
nemopeti26-Oct-06 22:03
nemopeti26-Oct-06 22:03 
Questionproblem with word addins Pin
ppforpyxis26-Oct-06 21:40
ppforpyxis26-Oct-06 21:40 
Questionwhy the imageindex setting is not working Pin
kalaveer26-Oct-06 21:20
kalaveer26-Oct-06 21:20 
QuestionProblem of menus Pin
slSoftware26-Oct-06 21:09
slSoftware26-Oct-06 21:09 
AnswerRe: Problem of menus Pin
u4h2m26-Oct-06 21:34
u4h2m26-Oct-06 21:34 
AnswerRe: Help Me Pin
Nader Elshehabi26-Oct-06 21:41
Nader Elshehabi26-Oct-06 21:41 
QuestionHow to generate a random number Pin
CodeItWell26-Oct-06 20:44
CodeItWell26-Oct-06 20:44 
AnswerRe: How to generate a random number Pin
Neha_Gupta26-Oct-06 20:52
Neha_Gupta26-Oct-06 20:52 
AnswerRe: How to generate a random number Pin
Guffa26-Oct-06 21:05
Guffa26-Oct-06 21:05 
GeneralRe: How to generate a random number Pin
Neha_Gupta26-Oct-06 21:08
Neha_Gupta26-Oct-06 21:08 
GeneralRe: How to generate a random number Pin
seee sharp26-Oct-06 21:43
seee sharp26-Oct-06 21:43 
Questionhow to install asian language support for windows when installing my software Pin
sikandarhayat26-Oct-06 20:13
sikandarhayat26-Oct-06 20:13 
AnswerRe: how to install asian language support for windows when installing my software Pin
Sebastian Schneider27-Oct-06 1:25
Sebastian Schneider27-Oct-06 1:25 
GeneralRe: how to install asian language support for windows when installing my software Pin
sikandarhayat27-Oct-06 1:52
sikandarhayat27-Oct-06 1:52 

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.