G
Guest
I'm stumped. I have a database in Access 2003 with a DoEvents command in it.
It works fine until I compile it into a mde. The mde won't allow this command
to run. I get "this command isn't available in an MDE/ADE database." It used
to be!
Some things I've read online imply this is part of the unsafe expression
protection, but I've dropped my security setting to Low. (We're well
protected from the outside without Access's help.) Does anyone know how to
get it to allow DoEvents or what I can do instead?
I'm opening a new window from a form, waiting for the user to make a choice
and then acting on the choice:
msFindme = ""
DoCmd.OpenForm "frmOrgList", acDesign, , , , acDialog
Do While msFindme = ""
'wait for user to choose an org
DoEvents
Loop
'continues on to respond to user's choice
(msFindme is set in the new window)
Thanks!
It works fine until I compile it into a mde. The mde won't allow this command
to run. I get "this command isn't available in an MDE/ADE database." It used
to be!
Some things I've read online imply this is part of the unsafe expression
protection, but I've dropped my security setting to Low. (We're well
protected from the outside without Access's help.) Does anyone know how to
get it to allow DoEvents or what I can do instead?
I'm opening a new window from a form, waiting for the user to make a choice
and then acting on the choice:
msFindme = ""
DoCmd.OpenForm "frmOrgList", acDesign, , , , acDialog
Do While msFindme = ""
'wait for user to choose an org
DoEvents
Loop
'continues on to respond to user's choice
(msFindme is set in the new window)
Thanks!