View Full Version : user control of access...???? disabling close


paulmcdonnell
06-28-2001, 09:21 AM
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

charityg
06-28-2001, 09:46 AM
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