MoveSize

rhernand

Registered User.
Local time
Today, 03:27
Joined
Mar 28, 2003
Messages
96
I am trying to Hide the Database Window by unchecking the Display DataBase Window in the Startup, but the first macro with a MoveSize fails with a Condition: True, Action Name: Movesize and Arguments: 14400, 14400, 7200, 14400. I have also used Code to Hide it and get the same error. "There was an error executing the command" :confused:
 
?

Anyone ............Anyone ...................................
 
Step up to the plate and swing [learn how to use VBA]. Macros are too limiting.

Code:
'hide the database window
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide

Code:
InsideHeight = 4400 'set the forms height
InsideWidth = 5500 'set the forms width
DoCmd.MoveSize 14400, 14400, 7200, 14400 'move the forms position
Check this out for a few more tricks... hide all Access tool bars and menu bars
 

Users who are viewing this thread

Back
Top Bottom