Great Douglas!
Thanks Mr. Smith
"Douglas J. Steele" <NOSPAM_djsteele[ at ]NOSPAM_canada.com> wrote in message news:ejytmx21GHA.4796[ at ]TK2MSFTNGP03.phx.gbl...
[Quoted Text] > Create your own form that looks like a message box, put code in it to set > the form's TimerInterval property to whatever duration you want when you > open the form, and code in the form's Timer event to close the form when > the time limit is reached: > > Private Sub Form_Load() > Me.TimerInterval = 1000 > End Sub > > Private Sub Form_Timer() > DoCmd.Close > End Sub > > -- > Doug Steele, Microsoft Access MVP > http://I.Am/DougSteele> (no e-mails, please!) > > > "Mr. Smith" <nospam[ at ]nospam.com> wrote in message > news:%23%230$8t21GHA.3516[ at ]TK2MSFTNGP06.phx.gbl... >> Hi. I have developed an Access application which gives quite a few "Ok" >> messages after the user have completed different tasks. My users are kind >> of "click" tired, and I wonder if it's possible to show an MsgBox only >> for a second before it disappears automatically? >> >> >> >> Any hints appreciated >> >> >> >> Kind regards >> >> Mr. Smith >> >> >> >> > >
|