How to restrict moving a form ???

  • Thread starter Thread starter George
  • Start date Start date
G

George

Hello to everybody and a Happy NEw Year
Is there a way in Access97 to make a Form unmoveable ???
Something like the "moveable" property in Visual Basic ???
I don't want a user to move my main form in my application.
Any suggestions ???
Many Thanks in Advance
George
 
George said:
Hello to everybody and a Happy NEw Year
Is there a way in Access97 to make a Form unmoveable ???
Something like the "moveable" property in Visual Basic ???
I don't want a user to move my main form in my application.
Any suggestions ???
Many Thanks in Advance
George

George,
Set the Form's BorderStyle property to none.

Make sure there is a way for the user to exit the form as the form's
close and min/max buttons are not available.

Also, size the form to it's final size first, as the form is not
re-sizable in form view by the user.
You probably would want to set the Form's AutoResize to No also.
 
Back
Top