How to know Access97 Runtime

S

Susan K

I have an mdb that uses a form to control user interaction. I would like
the Runtime version of Access97 to quit when the form is closed but not the
full Access version. How can I programmatically determine that it is the
Runtime version of Access running?
 
R

Rick Brandt

Susan K said:
I have an mdb that uses a form to control user interaction. I would like
the Runtime version of Access97 to quit when the form is closed but not the
full Access version. How can I programmatically determine that it is the
Runtime version of Access running?

If syscmd(acSysCmdRuntime) = True Then...
 
Top