Click here to Skip to main content
15,914,642 members
Home / Discussions / C#
   

C#

 
GeneralRe: ComboBox SelectedValue Problem Pin
LongRange.Shooter27-Aug-04 9:28
LongRange.Shooter27-Aug-04 9:28 
GeneralTreeView.BeginUpdate question. Help!!! Pin
26-Aug-04 18:14
suss26-Aug-04 18:14 
GeneralRe: TreeView.BeginUpdate question. Help!!! Pin
Paul Lyons26-Aug-04 18:38
Paul Lyons26-Aug-04 18:38 
QuestionHow do you save images loaded in a Microsoft Web Browser Control? Pin
kayhustle26-Aug-04 13:20
kayhustle26-Aug-04 13:20 
AnswerRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
Heath Stewart26-Aug-04 13:34
protectorHeath Stewart26-Aug-04 13:34 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
kayhustle26-Aug-04 13:58
kayhustle26-Aug-04 13:58 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
Heath Stewart26-Aug-04 14:06
protectorHeath Stewart26-Aug-04 14:06 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
kayhustle26-Aug-04 14:17
kayhustle26-Aug-04 14:17 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
Heath Stewart26-Aug-04 14:20
protectorHeath Stewart26-Aug-04 14:20 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
kayhustle26-Aug-04 15:23
kayhustle26-Aug-04 15:23 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
Heath Stewart27-Aug-04 8:56
protectorHeath Stewart27-Aug-04 8:56 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
kayhustle27-Aug-04 10:21
kayhustle27-Aug-04 10:21 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
Heath Stewart27-Aug-04 10:25
protectorHeath Stewart27-Aug-04 10:25 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
kayhustle27-Aug-04 11:44
kayhustle27-Aug-04 11:44 
GeneralRe: How do you save images loaded in a Microsoft Web Browser Control? Pin
Heath Stewart27-Aug-04 11:57
protectorHeath Stewart27-Aug-04 11:57 
QuestionQ. How do you start 2 or more other classes to threading from a single Form1?? Pin
gman4426-Aug-04 12:57
gman4426-Aug-04 12:57 
AnswerRe: Q. How do you start 2 or more other classes to threading from a single Form1?? Pin
kayhustle26-Aug-04 13:25
kayhustle26-Aug-04 13:25 
Thats because you have to start them, you just constructed them.

objClass1 = new Class1();<br />
objClass1 = new Thread(new ThreadStart(StartMoveKing));<br />
objClass1.Start();<br />
// also<br />
<br />
objClass2 = new Class2();<br />
objClass2 = new Thread(new ThreadStart(StartMoveQueen));<br />
objClass2.Start();

AnswerRe: Q. How do you start 2 or more other classes to threading from a single Form1?? Pin
LongRange.Shooter27-Aug-04 10:15
LongRange.Shooter27-Aug-04 10:15 
GeneralLooking for someone who is familiar with iTextSharp library (PDF files creating) Pin
Member 103390726-Aug-04 12:13
Member 103390726-Aug-04 12:13 
GeneralRe: Looking for someone who is familiar with iTextSharp library (PDF files creating) Pin
Heath Stewart26-Aug-04 13:38
protectorHeath Stewart26-Aug-04 13:38 
GeneralRe: Looking for someone who is familiar with iTextSharp library (PDF files creating) Pin
Member 103390727-Aug-04 10:51
Member 103390727-Aug-04 10:51 
Generalreading NTFS Master File Table Pin
redjoy26-Aug-04 11:58
redjoy26-Aug-04 11:58 
GeneralRe: reading NTFS Master File Table Pin
Anonymous26-Aug-04 12:49
Anonymous26-Aug-04 12:49 
Generaladding an item to a listview Pin
yitzstokes26-Aug-04 10:05
yitzstokes26-Aug-04 10:05 
GeneralRe: adding an item to a listview Pin
Nick Parker26-Aug-04 11:46
protectorNick Parker26-Aug-04 11:46 

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.