Z
zbud
I have a form that is in the correct position in design view. (although
I notice there are horz and vert scroll bars in the design window even
though the form is smaller than the screen size)
When I open the form it is lower and to the right of where.it was saved
at.
the current form settings are:
border = thin
center = no
resize = no
popup = no
controlbox = no
min/max = neither
close = no
popup = no
Can someone help ?
Bud
more information:
use this code to see where the Access thinks the form is:
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
through all events and actions of the form the msgobsx reports he same
values for windowtop and windowLeft, yet the form has actually moved to
the right and down when a specific record is selected in a combo box on
the form and the focus shifts to another control on the form.
Bud
I notice there are horz and vert scroll bars in the design window even
though the form is smaller than the screen size)
When I open the form it is lower and to the right of where.it was saved
at.
the current form settings are:
border = thin
center = no
resize = no
popup = no
controlbox = no
min/max = neither
close = no
popup = no
Can someone help ?
Bud
more information:
use this code to see where the Access thinks the form is:
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
through all events and actions of the form the msgobsx reports he same
values for windowtop and windowLeft, yet the form has actually moved to
the right and down when a specific record is selected in a combo box on
the form and the focus shifts to another control on the form.
Bud