Advertisement
Nadds

Loading Screen | VB Proj

Sep 5th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. ' Loading
  2. Private Sub Form_Load()
  3. Timer.Enabled = True
  4. End Sub
  5.  
  6. Private Sub Timer_Timer()
  7. Progress.Value = Progress.Value + 1
  8. Title.Caption = "INITIALIZING: " & Progress.Value & "%"
  9. If Title.Caption = "INITIALIZING: " & "100" & "%" Then
  10. Unload Me
  11. Main.Visible = True
  12. End If
  13. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement