user notification

V

viren

Is there a way of getting a message popup of a user who has just logged into
the database??
 
J

Jack Leach

A macro named Autoexec will execute on db startup. So create one of these
and use the RunCode command, and enter then name of a public function to run
(I use a function named AutoExec, go figure...)


Public Function AutoExec()
MsgBox "You are now logged in"
End Function


(you will use "=AutoExec()", without the quotes, as your RunCode paramater
in the Autoexec macro... note that the function can be any public function,
only the macro needs to be named Autoexec to run on startup)


hth
--
Jack Leach
www.tristatemachine.com

"I haven''t failed, I''ve found ten thousand ways that don''t work."
-Thomas Edison (1847-1931)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top