Hi,
i have long running process in my BackgroundWorker_DoWork..

here:
Code:
Private Sub BackgroundWorker1_DoWork(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork

'Uploading XML File in remote server here

End Sub
the problem is i dont have a loop inside my DoWork.i cannot cancelled the worker thread immediately. any idea on this..

thank you..