D
Dwayne Conyers
I have an image that I want to appear at the bottom of the form when the
application loads. I have the following subroutines:
Private Sub Form_Load()
Me.imgVetters.Top = Me.InsideHeight - (Me.imgVetters.Height * 1.5)
End Sub
Private Sub Form_Resize()
On Error GoTo ResizeError
fnEcho (0)
Me.imgVetters.Top = Me.InsideHeight - (Me.imgVetters.Height * 1.5)
fnEcho (1)
Exit Sub
ResizeError:
fnEcho (1)
Exit Sub
End Sub
The image jumps to the desired location when the form is resized. However,
when the form loads it appears where it is placed -- and that is fine for
the development workstation but not with a diverse set of resolutions and
sizes for end users.
Appreciate help with this.
application loads. I have the following subroutines:
Private Sub Form_Load()
Me.imgVetters.Top = Me.InsideHeight - (Me.imgVetters.Height * 1.5)
End Sub
Private Sub Form_Resize()
On Error GoTo ResizeError
fnEcho (0)
Me.imgVetters.Top = Me.InsideHeight - (Me.imgVetters.Height * 1.5)
fnEcho (1)
Exit Sub
ResizeError:
fnEcho (1)
Exit Sub
End Sub
The image jumps to the desired location when the form is resized. However,
when the form loads it appears where it is placed -- and that is fine for
the development workstation but not with a diverse set of resolutions and
sizes for end users.
Appreciate help with this.