Connecting Tech Pros Worldwide Help | Site Map

Make form maximized unable to minamize

  #1  
Old November 12th, 2005, 05:23 PM
cbielich
Guest
 
Posts: n/a
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
  #2  
Old November 12th, 2005, 05:25 PM
MGFoster
Guest
 
Posts: n/a

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)

  #3  
Old November 12th, 2005, 05:25 PM
Roger
Guest
 
Posts: n/a

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]
  #4  
Old November 12th, 2005, 05:25 PM
Pieter Linden
Guest
 
Posts: n/a

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