Form Move?
Form Move?
Rate Form Move?
(2(2 Vote))
Form1.Caption = "Form Move"
Form1.Height = 0
Form1.Width = 1680
Timer1.Interval = 200
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
On Error Resume Next
For x = 0 To Form1.Height + 10000
Form1.Height = x
Next x
For y = 1680 To Form1.Width + 10400
Form1.Width = y
Next y
Timer1.Enabled = False
End Sub
Form Move? Comments
No comments yet — be the first to post one!
Post a Comment