
Disable Close button on Access 2.0 Form
If the form is maximized the control menu, etc will appear.
There are three ways to stop this happening, each of which have there
drawbacks.
1) Don't maximize the form.
This obviously has a major drawback if you want to use maximized forms <g>.
2) Make the form Pop-up.
The form will then maximize to fill the desktop not just the Access MDI
Child window, so you won't be able to see the Access window at all.
3) Write code to make the form as big as it can get in its restored state.
The form doesn't resize with the MDI window as a maximized form does, you
would have to write code to resize the form each time the MDI window is
resized.
Quote:
>How do you disable the Minimize, Maximize and Close buttons
>on an Access2.0 Form? Tried setting form properties "Min Button", "Max
>Button",
>and "Control Box" to "No", but I'm still always able to minimize or
>close the form
>no matter what I try. Any suggestions?
>Van