Makes a form expand to desired size on load.
Makes a form expand to desired size on load.
Rate Makes a form expand to desired size on load.
(1(1 Vote))
'otherwise the starting number + 10 might not add up to the number
'you want it to start at
Private Sub Form_Load()
Form1.Height = 450
End Sub
Private Sub Timer1_Timer()
If Form1.Height = 2250 Then
Form1.Timer1.Enabled = False
Else
Form1.Height = Form1.Height + 10
End If
End Sub
Makes a form expand to desired size on load. Comments
No comments yet — be the first to post one!
Post a Comment