made forms non moveable & non resizeable

  • Thread starter Thread starter paul
  • Start date Start date
P

paul

Hi,
For my Access 2000 application, in the Form's "On Load"
event, I put DoCmd.MoveSize 900, 2000, 11000, 8500.
So the form always come out the same size and same
location. How can I prevent users to move or change the
size of the forms?
Thanks a lot.
 
paul said:
Hi,
For my Access 2000 application, in the Form's "On Load"
event, I put DoCmd.MoveSize 900, 2000, 11000, 8500.
So the form always come out the same size and same
location. How can I prevent users to move or change the
size of the forms?
Thanks a lot.

If you make the BorderStyle = to "None" then they will not be able to
change the size or position.
 
Back
Top