how do i make an image box stay at the bottom of the form.
i tried:
image1.top = Min
thanks in advance
chris1990
Printable View
how do i make an image box stay at the bottom of the form.
i tried:
image1.top = Min
thanks in advance
chris1990
Code:Private Sub Form_Load()
Me.Image1.Top = Me.ScaleHeight
End Sub
Private Sub Form_Resize()
Me.Image1.Top = Me.ScaleHeight
End Sub
try
Private Sub Form_Resize()
Me.Image1.Top = Me.ScaleHeight - image1.height
End Sub
thanks