user notification

  • Thread starter Thread starter viren
  • Start date Start date
V

viren

Is there a way of getting a message popup of a user who has just logged into
the database??
 
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)
 
Back
Top