Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Monitor progress in a progress bar

Status
Not open for further replies.

robert201

Programmer
Jul 18, 2007
80
TH
Hello

VS 2005
CF 2.0
WM5

I have created an application that scynchronizes the central database by sending changes to a web service.

This normally takes 5 to 10 seconds and the customer wants to have some kind of progress bar to show that something is happening.

This is some code that would explain what needs to be monitored. (Only showing the main parts - otherwise to much code to show)
Code:
'Synchronise Data with the central database
Private Sub MenuItem9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem9.Click

Try

If (dsIncidents.HasChanges()) Then

dsChanges = dsIncidents.GetChanges()

'Send only the changes and return a fresh update from the central database

Dim updatedIncident As DataSet = ws.SynchroniseIncidentChanges(dsChanges)

'Assign to the global dataset

Dim objGlobals As New Globals()

objGlobals.IncidentData = updatedIncident

Else

'There was not changes made to the PDA incidents, so just download the latest incidents

Me.GetLatestIncidentData()

End If

End Try

End Sub
So when the code above is running it should display a progress bar to show how long it will take. Or it could show just a animation so the customer knows there is something going on in the background.

Many thanks for any advice and code samples,

Steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top