|
-
Oct 4th, 2006, 08:31 AM
#3
Re: Progress Bar
 Originally Posted by JAKSupport
Huh?
VB Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim iCount As UInteger
iCount = 32600
Me.ProgressBar1.Maximum = iCount
For i As Integer = 0 To iCount - 1
Me.ProgressBar1.Value += 1
Next
End Sub
Any reason why you used a UInteger versus a regular Integer?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|