Results 1 to 3 of 3

Thread: Progress bars????

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2005
    Posts
    2

    Resolved Progress bars????

    I am having troble with progress bars, does know how to work them correctly.
    Last edited by Displacer43; Feb 28th, 2005 at 05:53 PM.

  2. #2
    Frenzied Member sciguyryan's Avatar
    Join Date
    Sep 2003
    Location
    Wales
    Posts
    1,763

    Re: Progress bars????

    Have a look in the posted code section they have some really good examples in here

    Cheers,

    RyanJ
    My Blog.

    Ryan Jones.

  3. #3
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Progress bars????

    Here is a quick example:

    VB Code:
    1. Private Sub Form_Activate()
    2.   ProgressBar1.Min = 0
    3.   ProgressBar1.Max = 100
    4.   ProgressBar1.Value = 0
    5.   ProgressBar1.Enabled = True
    6.   Dim x As Integer
    7.   Dim q As Long
    8.   For x = 0 To 100
    9.     For q = 1 To 500000
    10.     Next q
    11.     ProgressBar1.Value = x
    12.   Next x
    13.   End

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width