the progress bar didn't changed when the progresschanged occur of the BackgroundWorker
hi
i have a backgroundworker object on the form and on the dowork event i write the code to fill the dataset like this
PrivateSub BackgroundWorker1_DoWork(ByVal senderAs System.Object,ByVal eAs System.ComponentModel.DoWorkEventArgs)Handles BackgroundWorker1.DoWorkMe.GoodsDetailsTableAdapter.Fill(Me.MS4GM_DBDataSet.GoodsDetails)e.Result =
Me.MS4GM_DBDataSet.GoodsDetails EndSubon the progresschanged event of the backgroundworker i write the following to make the progressbar on the form change it's value
PrivateSub BackgroundWorker1_ProgressChanged(ByVal senderAs System.Object,ByVal eAs System.ComponentModel.ProgressChangedEventArgs)Handles BackgroundWorker1.ProgressChangedProgressBar1.Value = e.ProgressPercentage
EndSub-
and on the load event
BackgroundWorker1.RunWorkerAsync()
and the worker report progress is set to true
but the progressbar didn't changed any help will be good
thanks in advance.

