
Removing RESTORE and CLOSE options on maximized forms
Hi Michael
The behaviour you describe is typical of an MDI interface and occurs in
Access2 and Access97 (although curiously not in Access95, see I remembered
James<g>)
James Esposito and I had a discussion about this recently and the following
code came out of that. What the code does is resize the form to fit inside
the Access window exactly without actually maximizing it.
The method is not perfect:
1) you have to set the form to have no border to get the best effect
2) If you resize Access the form will not automatically resize with it,
as a maximized form does.
To call the code, in the form load event us the following call
MaximizeRestoredForm Me
'************** Code Start *************************
Type Rect
x1 As Long
y1 As Long
x2 As Long
y2 As Long
End Type
Declare Function IsZoomed Lib "user32" (ByVal hwnd As Long) As Long
Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, ByVal _
nCmdShow As Long) As Long
Declare Function MoveWindow Lib "user32" (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
Declare Function GetParent Lib "user32" (ByVal hwnd As Long) As Long
'Use following instead of GetWindowRect
Declare Function GetClientRect Lib "user32" (ByVal hwnd As Long, lpRect
As Rect) As Long
Public Const SW_MAXIMIZE = 3
Public Const SW_SHOWNORMAL = 1
Sub MaximizeRestoredForm(F As Form)
Dim MDIRect As Rect
' If the form is maximized, restore it.
If IsZoomed(F.hwnd) <> 0 Then
ShowWindow F.hwnd, SW_SHOWNORMAL
End If
' Get the screen coordinates and window size of the
' MDIClient area.
'This is the line which is different
GetClientRect GetParent(F.hwnd), MDIRect
' Move the form to the upper left corner of the MDIClient
' window (0,0) and size it to the same size as the
' MDIClient window.
MoveWindow F.hwnd, 0, 0, MDIRect.x2 - MDIRect.x1, MDIRect.y2 -
MDIRect.y1, True
End Sub
'************** Code End ***************************
Quote:
>Q: When maximizing forms within access I always have the RESTORE and
>CLOSE commands on the command bar. I want to disable or remove or
>disable those option but haven't found a way to programmatically do
>that. Any help would be appreciated.
>Thanks,
>Phin.