Hi all,
I'm a bit of a newbie on mobile development and I'm having problems getting a simple progress bar to work on the cf. The problem i'm having is that the performstep method which is available on the full frameowrk doesn't seem to be available here. I can't help feeling that i'm missing a beat somewhere! The code i'm using is below.
Cheers,
Paul.
Dim progBar As New ProgressBar
...
progBar.Maximum = 1000
progBar.Minimum = 0
progBar.Value = 0
progBar.Locatio n = New Point(10, 10)
'progBar.step = 1 ' property doesn't exist
progBar.Visible = True
progBar.BringTo Front()
...
For i As Integer = 0 To 1000
' Method doesn't exist
'progBar.perfor mstep()
Next
I'm a bit of a newbie on mobile development and I'm having problems getting a simple progress bar to work on the cf. The problem i'm having is that the performstep method which is available on the full frameowrk doesn't seem to be available here. I can't help feeling that i'm missing a beat somewhere! The code i'm using is below.
Cheers,
Paul.
Dim progBar As New ProgressBar
...
progBar.Maximum = 1000
progBar.Minimum = 0
progBar.Value = 0
progBar.Locatio n = New Point(10, 10)
'progBar.step = 1 ' property doesn't exist
progBar.Visible = True
progBar.BringTo Front()
...
For i As Integer = 0 To 1000
' Method doesn't exist
'progBar.perfor mstep()
Next
Comment