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

C#

 
GeneralRe: run location Pin
thepersonof18-Jun-05 23:12
thepersonof18-Jun-05 23:12 
GeneralRe: run location Pin
mav.northwind19-Jun-05 22:49
mav.northwind19-Jun-05 22:49 
Generalpass value between windows forms Pin
webhay18-Jun-05 6:42
webhay18-Jun-05 6:42 
GeneralRe: pass value between windows forms Pin
S. Senthil Kumar18-Jun-05 7:39
S. Senthil Kumar18-Jun-05 7:39 
GeneralCalling .NET Remote object from VC or VB Client Pin
maharsoft18-Jun-05 1:41
maharsoft18-Jun-05 1:41 
GeneralRe: Calling .NET Remote object from VC or VB Client Pin
S. Senthil Kumar18-Jun-05 7:47
S. Senthil Kumar18-Jun-05 7:47 
GeneralHELP NEEDED ON LISTBOXES! Pin
dgap17-Jun-05 22:00
dgap17-Jun-05 22:00 
GeneralRe: HELP NEEDED ON LISTBOXES! Pin
Robert Rohde17-Jun-05 23:18
Robert Rohde17-Jun-05 23:18 
Well tell me what ListItem should be? Its not a class of the framework. I assume you added those objects into the ListBox but how should the ListBox know to set the Selected property of this special class which it cannot know?
Try instead iterating over the SelectedItems property of the ListBox:
string s = "";
foreach (ListItem i in lstListBox.SelectedItems){
s += i.Value.ToString() + ", ";
}

GeneralRe: HELP NEEDED ON LISTBOXES! Pin
dgap18-Jun-05 7:27
dgap18-Jun-05 7:27 
GeneralRe: HELP NEEDED ON LISTBOXES! Pin
Amr_Cs19-Jun-05 13:03
Amr_Cs19-Jun-05 13:03 
QuestionHow to run a Method exactly 12.30 PM? Pin
pubududilena17-Jun-05 18:56
pubududilena17-Jun-05 18:56 
AnswerRe: How to run a Method exactly 12.30 PM? Pin
Christian Graus17-Jun-05 21:32
protectorChristian Graus17-Jun-05 21:32 
Generalwhy if i load an image in a Picturebox it is not usable Pin
Sasuko17-Jun-05 14:46
Sasuko17-Jun-05 14:46 
GeneralRe: why if i load an image in a Picturebox it is not usable Pin
Dave Kreskowiak17-Jun-05 17:53
mveDave Kreskowiak17-Jun-05 17:53 
GeneralRe: why if i load an image in a Picturebox it is not usable Pin
Sasuko18-Jun-05 0:54
Sasuko18-Jun-05 0:54 
Generalc# on windows 98 Pin
Green Fuze17-Jun-05 14:21
Green Fuze17-Jun-05 14:21 
GeneralRe: c# on windows 98 Pin
Dave Kreskowiak17-Jun-05 17:48
mveDave Kreskowiak17-Jun-05 17:48 
GeneralRe: c# on windows 98 Pin
Green Fuze17-Jun-05 21:05
Green Fuze17-Jun-05 21:05 
GeneralRe: c# on windows 98 Pin
Vasudevan Deepak Kumar18-Jun-05 1:10
Vasudevan Deepak Kumar18-Jun-05 1:10 
GeneralRe: c# on windows 98 Pin
Green Fuze18-Jun-05 5:55
Green Fuze18-Jun-05 5:55 
GeneralRe: c# on windows 98 Pin
AristotleYu18-Jun-05 23:23
AristotleYu18-Jun-05 23:23 
GeneralRe: c# on windows 98 Pin
Vasudevan Deepak Kumar19-Jun-05 19:07
Vasudevan Deepak Kumar19-Jun-05 19:07 
GeneralRe: c# on windows 98 Pin
AristotleYu21-Jun-05 1:26
AristotleYu21-Jun-05 1:26 
QuestionHow can i do X^Y? Pin
Anthony Mushrow17-Jun-05 13:30
professionalAnthony Mushrow17-Jun-05 13:30 
AnswerRe: How can i do X^Y? Pin
DavidNohejl17-Jun-05 13:33
DavidNohejl17-Jun-05 13:33 

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.