Form.WindowTop property (Access)
Returns an Integer indicating the screen position in twips of the top edge of a form relative to the top of the Microsoft Access window. Read-only.
expression.WindowTop
expression A variable that represents a Form object.
Use the Move method to change the position of a form.
The following example returns the screen position of the top and left edges of the first form in the current project.
With Forms(0)
MsgBox "The form is " & .WindowLeft _
& " twips from the left edge of the Access window and " _
& .WindowTop _
& " twips from the top edge of the Access window."
End With
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.