Click here to Skip to main content
15,890,043 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hiding the UI [modified] Pin
caix29-Apr-07 13:44
caix29-Apr-07 13:44 
Questionanother windows form questions Pin
MarkSchultz25-Apr-07 11:44
MarkSchultz25-Apr-07 11:44 
AnswerRe: another windows form questions Pin
Rocky#25-Apr-07 22:22
Rocky#25-Apr-07 22:22 
Questiondrag drop operations between 2 listboxes Pin
rzvme25-Apr-07 8:53
rzvme25-Apr-07 8:53 
AnswerRe: drag drop operations between 2 listboxes Pin
Paul Conrad25-Apr-07 9:48
professionalPaul Conrad25-Apr-07 9:48 
AnswerRe: drag drop operations between 2 listboxes Pin
Dan Neely25-Apr-07 10:27
Dan Neely25-Apr-07 10:27 
GeneralRe: drag drop operations between 2 listboxes Pin
Paul Conrad25-Apr-07 10:56
professionalPaul Conrad25-Apr-07 10:56 
Questionproblem with passing method to thread class. Pin
hdv21225-Apr-07 8:39
hdv21225-Apr-07 8:39 
hi i was create a new instance of thread class and pass to it a method(with 1 parameter) and start then pass it's argument to method by this code :

//my method that get 1 argument
private void ShowWaitForm(string message)<br />
        {<br />
            Frm_Waiting fw = new Frm_Waiting();<br />
            fw.label1.Text = message;<br />
            fw.ShowDialog();<br />
        }

// error in this line
System.Threading.Thread th = new System.Threading.Thread(this.ShowWaitForm);<br />
th.Start("Please Wait ...");


but the following error show me :

The best overloaded method match for 'System.Threading.Thread.Thread(System.Threading.ThreadStart)' has some invalid arguments

and :

Argument '1': cannot convert from 'method group' to 'System.Threading.ThreadStart'

i was compile and run it without any problem 2 hours ago but now has error,
how to solve my problem ?
AnswerRe: problem with passing method to thread class. Pin
Tarakeshwar Reddy25-Apr-07 8:53
professionalTarakeshwar Reddy25-Apr-07 8:53 
AnswerRe: problem with passing method to thread class. Pin
Jimmanuel25-Apr-07 9:11
Jimmanuel25-Apr-07 9:11 
QuestionGetting position of IBean of RichTextBox Pin
Adobe200725-Apr-07 7:09
Adobe200725-Apr-07 7:09 
AnswerRe: Getting position of IBean of RichTextBox Pin
Adobe200725-Apr-07 7:12
Adobe200725-Apr-07 7:12 
GeneralRe: Getting position of IBean of RichTextBox Pin
Dan Neely25-Apr-07 7:16
Dan Neely25-Apr-07 7:16 
GeneralRe: Getting position of IBean of RichTextBox Pin
Adobe200725-Apr-07 7:31
Adobe200725-Apr-07 7:31 
GeneralRe: Getting position of IBean of RichTextBox [modified] Pin
Adobe200725-Apr-07 7:34
Adobe200725-Apr-07 7:34 
AnswerRe: Getting position of IBean of RichTextBox Pin
Adobe200725-Apr-07 8:14
Adobe200725-Apr-07 8:14 
AnswerRe: Getting position of IBean of RichTextBox Pin
Adobe200725-Apr-07 8:44
Adobe200725-Apr-07 8:44 
QuestionNullReferenceException in WaitForWaitHandle Pin
jayart25-Apr-07 6:21
jayart25-Apr-07 6:21 
QuestionReverse Find Pin
LCI25-Apr-07 5:13
LCI25-Apr-07 5:13 
AnswerRe: Reverse Find Pin
led mike25-Apr-07 5:39
led mike25-Apr-07 5:39 
AnswerRe: Reverse Find Pin
Guffa25-Apr-07 5:39
Guffa25-Apr-07 5:39 
AnswerRe: Reverse Find Pin
kubben25-Apr-07 9:04
kubben25-Apr-07 9:04 
GeneralNew Error: A namespace does not directly contain members such as fields or methods Pin
cole2325-Apr-07 5:03
cole2325-Apr-07 5:03 
GeneralRe: Error2: Identifier expected Pin
CPallini25-Apr-07 6:09
mveCPallini25-Apr-07 6:09 
GeneralRe: Error2: Identifier expected Pin
Jimmanuel25-Apr-07 8:07
Jimmanuel25-Apr-07 8:07 

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.