Design a vb form in which there will be a moving text
Design a vb form in which there will be a moving text
Rate Design a vb form in which there will be a moving text
(1(1 Vote))
If Option1 = True Then
Form2.Show
End If
If Option2 = True Then
Form3.Show
End If
If Option3 = True Then
Form4.Show
End If
Unload Me
End Sub
Private Sub Command2_Click()
Form8.Show
Unload Me
End Sub
Private Sub Form_Load()
Label3.Caption = Date
tx = ScaleWidth
ty = ScaleHeight / 44
End Sub
Private Sub open_Click()
Form9.Show
Unload Me
End Sub
Private Sub Timer1_Timer()
ForeColor = BackColor
FontSize = 12
FontName = "Arial Bold"
CurrentX = tx + 10
CurrentY = ty
Print "This form is Designed by Shaidul Islam Prince for VB Code.com."
ForeColor = QBColor(1)
CurrentX = tx
CurrentY = ty
Print "This form is Designed by Shaidul Islam Prince for VB Code.com."
tx = tx - 10
End Sub
Design a vb form in which there will be a moving text Comments
No comments yet — be the first to post one!
Post a Comment