Question Show Tooltip in notifyicon from backgroundworker

aleroot

New member
Joined
Feb 26, 2009
Messages
4
Programming Experience
Beginner
I have a procedure that download a file in a background worker how can i show a tooltip in a notifyicon when the background worker have finished the work ?


Can i implement also a progressbar from the backgroundworker ?
 
Use the events of the BackgroundWorker to interact with UI thread.
when the background worker have finished the work ?
Use the RunWorkerCompleted event
progressbar from the backgroundworker ?
set WorkerReportsProgress property to True, call ReportProgress method, handle ProgressChanged event.
 
with this :

Private Sub BackgroundWorker1_ProgressChanged(ByVal sender As Object, ByVal e As System.ComponentModel.ProgressChangedEventArgs) Handles BackgroundWorker1.ProgressChanged
Me.ProgressBar1.Value = e.ProgressPercentage
End Sub


don't work ....
 
Back
Top