user control of access...???? disabling close

paulmcdonnell

Ready to Help
Local time
Today, 19:46
Joined
Apr 11, 2001
Messages
167
Hi guys,

A bit of a strange one, but I have a specific check in my application which will not let users exit unless all updates have been made satisfactorily. What's happening a lot is that users will just close the access window to exit instead of checking the database data correctly.

HOW CAN I DISABLE THE CLOSE BUTTON ON THE MAIN APPLICATION WINDOW.

Is this possible?

Hope you have some ideas...cheers

Paul
 
If your users work with one main form, you can set certain properties to accomplish your goal.

First you will want to make sure your form will maximize on open

DoCmd.Maximize

Then set the following properties

PopUp=yes
controlbox=no
borderstyle=non
closebutton=no

Hope this works for you

~Charity
 

Users who are viewing this thread

Back
Top Bottom