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

C#

 
GeneralRe: Disposing of objects Pin
GuyThiebaut28-Dec-07 3:38
professionalGuyThiebaut28-Dec-07 3:38 
GeneralRe: Disposing of objects Pin
Luc Pattyn28-Dec-07 3:57
sitebuilderLuc Pattyn28-Dec-07 3:57 
GeneralRe: Disposing of objects Pin
Gareth H28-Dec-07 4:10
Gareth H28-Dec-07 4:10 
QuestionExceptions and Backgroundworker Pin
boersnoes28-Dec-07 2:43
boersnoes28-Dec-07 2:43 
GeneralRe: Exceptions and Backgroundworker Pin
KaptinKrunch28-Dec-07 4:26
KaptinKrunch28-Dec-07 4:26 
GeneralRe: Exceptions and Backgroundworker Pin
boersnoes28-Dec-07 5:23
boersnoes28-Dec-07 5:23 
GeneralRe: Exceptions and Backgroundworker Pin
KaptinKrunch28-Dec-07 5:52
KaptinKrunch28-Dec-07 5:52 
GeneralRe: Exceptions and Backgroundworker Pin
boersnoes30-Dec-07 22:07
boersnoes30-Dec-07 22:07 
This is the method that gets called by the bgndWorker.
Like this:
public void BeginSyncingDir(string fromDir, string toDir, string filter, bool createRemotePath)
{
    BackgroundWorker syncWorker = new BackgroundWorker();
    syncWorker.DoWork += new DoWorkEventHandler(SynchronizeDir);
    syncWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(Synchronized);
    syncWorker.RunWorkerAsync(new Object[] { fromDir, toDir, filter, createRemotePath });
}

As for now I pass the error as a result.
Which is extremely ugly.
Generaltags Pin
Luc Pattyn28-Dec-07 5:56
sitebuilderLuc Pattyn28-Dec-07 5:56 
GeneralRe: tags Pin
boersnoes30-Dec-07 22:08
boersnoes30-Dec-07 22:08 
GeneralRowfilter Pin
topcatalpha28-Dec-07 2:22
topcatalpha28-Dec-07 2:22 
GeneralRe: Rowfilter Pin
KaptinKrunch28-Dec-07 3:51
KaptinKrunch28-Dec-07 3:51 
GeneralRe: Rowfilter Pin
topcatalpha1-Jan-08 20:44
topcatalpha1-Jan-08 20:44 
GeneralError:Unsafe code may only appear if compiling with /unsafe Pin
zeeShan anSari28-Dec-07 1:59
zeeShan anSari28-Dec-07 1:59 
GeneralRe: Error:Unsafe code may only appear if compiling with /unsafe Pin
boersnoes28-Dec-07 2:47
boersnoes28-Dec-07 2:47 
GeneralRe: Error:Unsafe code may only appear if compiling with /unsafe Pin
Luc Pattyn28-Dec-07 3:58
sitebuilderLuc Pattyn28-Dec-07 3:58 
Questionhow to get a view on a vector Pin
edaw28-Dec-07 0:32
edaw28-Dec-07 0:32 
GeneralRe: how to get a view on a vector Pin
Colin Angus Mackay28-Dec-07 1:10
Colin Angus Mackay28-Dec-07 1:10 
GeneralRe: how to get a view on a vector Pin
edaw28-Dec-07 1:41
edaw28-Dec-07 1:41 
GeneralRe: how to get a view on a vector Pin
Luc Pattyn28-Dec-07 4:03
sitebuilderLuc Pattyn28-Dec-07 4:03 
GeneralRe: how to get a view on a vector Pin
edaw28-Dec-07 4:18
edaw28-Dec-07 4:18 
GeneralRe: how to get a view on a vector Pin
Luc Pattyn28-Dec-07 4:50
sitebuilderLuc Pattyn28-Dec-07 4:50 
QuestionHow to extend Math class Pin
Chesnokov Yuriy28-Dec-07 0:00
professionalChesnokov Yuriy28-Dec-07 0:00 
GeneralRe: How to extend Math class Pin
Colin Angus Mackay28-Dec-07 0:02
Colin Angus Mackay28-Dec-07 0:02 
GeneralRe: How to extend Math class Pin
User 665828-Dec-07 4:01
User 665828-Dec-07 4:01 

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.