Line visiblity it is very simple code show how to use object visblity property and timer
Line visiblity it is very simple code show how to use object visblity property and timer
API Declarations
just insert 4 lines and one time and line boarder style =2(dashed)
Rate Line visiblity it is very simple code show how to use object visblity property and timer
(1(1 Vote))
Private Sub Form_Load()
Line1.Visible = False
Line2.Visible = True
Line4.Visible = False
Line3.Visible = False
End Sub
Private Sub Timer1_Timer()
If Line2.Visible = True Then
Line2.Visible = False
Line1.Visible = True
Line4.Visible = False
Line3.Visible = False
Else
If Line1.Visible = True Then
Line2.Visible = False
Line1.Visible = False
Line4.Visible = True
Line3.Visible = False
Else
If Line4.Visible = True Then
Line2.Visible = False
Line1.Visible = False
Line4.Visible = False
Line3.Visible = True
Else
If Line3.Visible = True Then
Line2.Visible = True
Line1.Visible = False
Line4.Visible = False
Line3.Visible = False
End If
End If
End If
End If
End Sub
Line visiblity it is very simple code show how to use object visblity property and timer Comments
No comments yet — be the first to post one!
Post a Comment