I would like to change my form scale height.how would i refresh it to show the new height?
Printable View
I would like to change my form scale height.how would i refresh it to show the new height?
couldn't you put it in the form load event?
what i meant is to resize the form when i click a button it will resize to a new height in runtime. the form is already loaded.
Using this method, the form refreshes automaticallyCode:Private Sub Command1_Click()
Form1.Height = 2000
End Sub
that does it thanks...guys