P
Peter-d
Does anyone know if there is a way to display a message to a db user that
will not halt the code from running until the user dismisses the message as
the regular message box does?
Some back ground, I've built in my application the ability to shut it down
remotely based on a value in a table (the value is looked up from the timer
event of my switchboard), so while I wait for all instances to shut down, I
don't want others to start the db... so on the load event of the same switch
board, I lookup a different value in a table (DBEnabled for example) and have
code such as:
If bDBEnabled = False then
msgbox "The database is currently unavailble ..."
Application.Quit
end if
But if the user decides to not click the ok button, then access remains
opened and the database stays locked... so I can't open it exclusively and
perform the needed changes.
Thanks for any feedback/direction you can give me
Peter-d
will not halt the code from running until the user dismisses the message as
the regular message box does?
Some back ground, I've built in my application the ability to shut it down
remotely based on a value in a table (the value is looked up from the timer
event of my switchboard), so while I wait for all instances to shut down, I
don't want others to start the db... so on the load event of the same switch
board, I lookup a different value in a table (DBEnabled for example) and have
code such as:
If bDBEnabled = False then
msgbox "The database is currently unavailble ..."
Application.Quit
end if
But if the user decides to not click the ok button, then access remains
opened and the database stays locked... so I can't open it exclusively and
perform the needed changes.
Thanks for any feedback/direction you can give me
Peter-d