Set MS Access Window size on open

tuktuk

Well-known Member
Joined
Nov 13, 2006
Messages
856
I know that I can set DoCmd.Maximize on open for a form......

but how to I set the size of the ms access window to be around 3 in x 3 in on open.

I appreciate the help.

T
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
I know that I can set DoCmd.Maximize on open for a form......

but how to I set the size of the ms access window to be around 3 in x 3 in on open.

I appreciate the help.

T

You can use a Widnows API.


Create a Code module to hold this:


Code:
Declare Function MoveWindow Lib "user32.dll" (ByVal hwnd As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, _
    ByVal nHeight As Long, ByVal bRepaint As Long) As Long

Then in your Form_Load of your form...

Code:
Private Sub Form_Load()
    Dim retval As Long
    
    retval = MoveWindow(Application.hWndAccessApp, 200, 150, 300, 500, 1)

End Sub

This uses Pixels for the size and position.


See:

https://msdn.microsoft.com/en-us/library/windows/desktop/ms633534(v=vs.85).aspx


I assume by 3x3 you mean 3 inches by 3 inches.

You will first have to determine the monitors resolution (DPI) using another API. Using the DPI you can calculate the number of pixels that equal three (3) inches.
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top