Click here to Skip to main content
15,897,968 members
Home / Discussions / C#
   

C#

 
AnswerRe: DATA GRID in C# window application Pin
coolvinx16-May-06 11:11
coolvinx16-May-06 11:11 
Questionpdb file Pin
mehrdadc4816-May-06 10:03
mehrdadc4816-May-06 10:03 
AnswerRe: pdb file Pin
Michael P Butler16-May-06 10:17
Michael P Butler16-May-06 10:17 
Questionmulticast problem Pin
snouto16-May-06 9:38
snouto16-May-06 9:38 
AnswerRe: multicast problem Pin
Nader Elshehabi16-May-06 15:52
Nader Elshehabi16-May-06 15:52 
QuestionHelp with BGWorker Pin
student_rhr16-May-06 9:06
student_rhr16-May-06 9:06 
AnswerRe: Help with BGWorker Pin
led mike16-May-06 9:24
led mike16-May-06 9:24 
AnswerRe: Help with BGWorker Pin
Robert Rohde16-May-06 9:40
Robert Rohde16-May-06 9:40 
Well you can pass parameters. The RunWorkerAsync can take an object parameter which will be transferred to the event arguments of the DoWork event callback. You could argue that it is only one parameter and that you need several ones but this is not really a restriction because you can stuff anything you like into that parameter like an ArrayList filled with values, a Hashtable or plain an object array.
using (BackgroundWorker bw = new BackgroundWorker()) {
   bw.DoWork += new DoWorkEventHandler(bw_DoWork);
   bw.RunWorkerAsync(new object[] { tempDestination, tempRemoveable, ExtensionFlag});
   bw.DoWork -= new DoWorkEventHandler(bw_DoWork);
} 


private void bw_DoWork(object sender, DoWorkEventArgs e)
{
object[] o = (object[])e.Argument
CopyFiles cf = new CopyFiles((string)o[0], (string)o[1], (string)o[2]);
}

Not tested but should work Smile | :)
QuestionA beginering Question too Pin
jackalfb16-May-06 8:50
jackalfb16-May-06 8:50 
AnswerRe: A beginering Question too Pin
stancrm18-May-06 3:53
stancrm18-May-06 3:53 
GeneralRe: A beginering Question too Pin
jackalfb20-May-06 1:39
jackalfb20-May-06 1:39 
QuestionWeakReferences and the background garbage collector Pin
Judah Gabriel Himango16-May-06 8:48
sponsorJudah Gabriel Himango16-May-06 8:48 
AnswerRe: WeakReferences and the background garbage collector Pin
led mike16-May-06 9:22
led mike16-May-06 9:22 
GeneralRe: WeakReferences and the background garbage collector Pin
Judah Gabriel Himango16-May-06 11:11
sponsorJudah Gabriel Himango16-May-06 11:11 
AnswerRe: WeakReferences and the background garbage collector Pin
Guffa16-May-06 12:34
Guffa16-May-06 12:34 
QuestionXML and sorting Pin
donkaiser16-May-06 8:44
donkaiser16-May-06 8:44 
AnswerRe: XML and sorting Pin
Rei Miyasaka16-May-06 11:30
Rei Miyasaka16-May-06 11:30 
GeneralRe: XML and sorting Pin
donkaiser17-May-06 18:50
donkaiser17-May-06 18:50 
GeneralRe: XML and sorting Pin
Rei Miyasaka18-May-06 7:08
Rei Miyasaka18-May-06 7:08 
GeneralRe: XML and sorting Pin
donkaiser19-May-06 10:41
donkaiser19-May-06 10:41 
GeneralRe: XML and sorting [modifed] Pin
Rei Miyasaka19-May-06 13:54
Rei Miyasaka19-May-06 13:54 
QuestionJNI_CreateJavaVM Pin
pwimmers16-May-06 8:29
pwimmers16-May-06 8:29 
QuestionCollection was modified; Enumeration Operation may not execute Pin
Vijju200616-May-06 6:50
Vijju200616-May-06 6:50 
AnswerRe: Collection was modified; Enumeration Operation may not execute Pin
carlop()16-May-06 6:55
carlop()16-May-06 6:55 
GeneralRe: Collection was modified; Enumeration Operation may not execute Pin
Vijju200616-May-06 7:13
Vijju200616-May-06 7:13 

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.