StrikeEagleII
Technical User
My current database has three form which all appear on startup. I currently use the docmd.movesize method to fix their size and position. The problem is when the database is loading, the normal database menus appear pushing the form position down. When it's done loading those menubars disappear per what I have set in the database startup options, which leaves a gap between the menubar and my forms. Is there a way to fix that? for my top left form this is code I use to position it:
r = 0
d = 0
w = 4
h = 3.25
DoCmd.MoveSize r * 1440 + 1, d * 1440 + 1, w * 1440, h * 1440
The other forms use similar code. Any suggestions? Thanks!
r = 0
d = 0
w = 4
h = 3.25
DoCmd.MoveSize r * 1440 + 1, d * 1440 + 1, w * 1440, h * 1440
The other forms use similar code. Any suggestions? Thanks!