Results 1 to 3 of 3

Thread: PBar help

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2002
    Location
    USA
    Posts
    432

    PBar help

    I have a progressbar in my project and i want a form to show after the progressbar get %100 here is my code help please

    VB Code:
    1. Option Explicit
    2. Private Sub Form_Load()
    3.     Load frmMain
    4.     lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
    5. End Sub
    6.  
    7. Private Sub Timer1_Timer()
    8. PBar1.Value = PBar1.Value + 2
    9. End Sub

  2. #2
    PowerPoster cafeenman's Avatar
    Join Date
    Mar 2002
    Location
    Florida
    Posts
    2,819
    VB Code:
    1. Sub Timer1_Timer()
    2.  
    3. ' code you already have here
    4.  
    5. if pbar1.value = pbar1.max then form.show
    6.  
    7. End Sub

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2002
    Location
    USA
    Posts
    432
    Cool thanks

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