Connecting Tech Pros Worldwide Forums | Help | Site Map

Make form maximized unable to minamize

cbielich
Guest
 
Posts: n/a
#1: Nov 12 '05
I would like to be able to make a form in access to maximized at all
times and under no circumstances can it be minamized. I created the
DoCmd.Maximize on load event but it is still possible to minimize the
form, can there be a way to make sure that the form is never
minamized?

C

MGFoster
Guest
 
Posts: n/a
#2: Nov 12 '05

re: Make form maximized unable to minamize


cbielich wrote:
[color=blue]
> I would like to be able to make a form in access to maximized at all
> times and under no circumstances can it be minamized. I created the
> DoCmd.Maximize on load event but it is still possible to minimize the
> form, can there be a way to make sure that the form is never
> minamized?
>
> C[/color]

Private Sub Form_Resize()
DoCmd.Maximize
End Sub

--
MGFoster:::mgf
Oakland, CA (USA)

Roger
Guest
 
Posts: n/a
#3: Nov 12 '05

re: Make form maximized unable to minamize


in form design mode, change the 'min max buttons' property to 'none'

cbielich@yahoo.com (cbielich) wrote in message news:<35ec0130.0312050146.4b718550@posting.google. com>...[color=blue]
> I would like to be able to make a form in access to maximized at all
> times and under no circumstances can it be minamized. I created the
> DoCmd.Maximize on load event but it is still possible to minimize the
> form, can there be a way to make sure that the form is never
> minamized?
>
> C[/color]
Pieter Linden
Guest
 
Posts: n/a
#4: Nov 12 '05

re: Make form maximized unable to minamize


cbielich@yahoo.com (cbielich) wrote in message news:<35ec0130.0312050146.4b718550@posting.google. com>...[color=blue]
> I would like to be able to make a form in access to maximized at all
> times and under no circumstances can it be minamized. I created the
> DoCmd.Maximize on load event but it is still possible to minimize the
> form, can there be a way to make sure that the form is never
> minamized?
>
> C[/color]


Set the Min Max Buttons property of the form to None or Max Enabled?
Closed Thread