johncassell
Well-known member
Hi There,
I am looking for help on making a progressbar if someone wouldn't mind sparing their time.
Eventually I would like it to work with my reports but just for now I would like it to show the user how quickly my tableadapter has been filled. When I put a value in my WorkshopJobNumber text box and press enter, it fills my dataset...
All I have done is drag the progressbarcontrol1 onto my form and have no clue where to go from there.
Any help would be greatly appreciated.
Thanks
John
I am looking for help on making a progressbar if someone wouldn't mind sparing their time.
Eventually I would like it to work with my reports but just for now I would like it to show the user how quickly my tableadapter has been filled. When I put a value in my WorkshopJobNumber text box and press enter, it fills my dataset...
VB.NET:
Private Sub WorkshopJobNumberTextBox_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles WorkshopJobNumberTextBox.KeyUp
If e.KeyCode = Keys.Enter Then
Me.WorkshopJobsTableAdapter.FillBy(Me.RedcarWorkshopDataSet.WorkshopJobs, WorkshopJobNumberTextBox.Text)
End If
End Sub
All I have done is drag the progressbarcontrol1 onto my form and have no clue where to go from there.
Any help would be greatly appreciated.
Thanks
John