Windows Mobile ProgressBar

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Carona
    New Member
    • Dec 2007
    • 10

    Windows Mobile ProgressBar

    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
  • RedSon
    Recognized Expert Expert
    • Jan 2007
    • 4980

    #2
    Sorry can't really help you much. Try posting this question in the VB.net forum. Since you are using a .net language those people should be able to help you. You just need to make sure that the APIs you are using are supported by the compact framework.

    Comment

    Working...