Denotes the height properties of a control
such as a form Example: A program that
change the height of the form and the label randomly
Private Sub Command1_Click()
Dim h As Integer
Randomize Timer
h = 5000 * Rnd + 2000
Form1.Height = h
Label1.Height = 500 * Rnd + 200
End Sub
|