Message Box

T

TLC

I need a message box to appear when you open my database, but to not appear
any more after that. I tried adding it to my open mainswitch form, which i
have appearing at startup, but it comes up every time i open it after that.
Is there an option for startup only?
 
K

Ken Snell [MVP]

Try using an AutoExec macro to display the message box. That macro will run
only when the database is first opened.
 
D

Douglas J. Steele

You'll need to store a value in a table (or create a database property) that
you can check. If the value (or property) doesn't exist, show the message
box. If it does, don't show it.
 
Top