Hi , I just have a question what im I doing wrong my load form just wont let me load progress bar just gose strayed to login, here is my code.
I need help with this to
Code:
Private Sub Timer1_Timer()
If ProgressBar1.Value = 100 Then
ProgressBar1.Value = 0
Else
ProgressBar1.Value = Val(ProgressBar1.Value) + Val(1)
End If
Label1.Caption = ProgressBar1.Value
LoginSystem.Show
End Sub
Code:
Private Sub Command1_Click()
If Text1.Text = "Andrea" Then
If Text2.Text = "kagoma8255222" Then
System.Show
'Im trying to make LoginSystem hide, how do i do that to.
LoginSystem.Visible = True
End If
End If
End Sub