Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Countdown Timer 1

Status
Not open for further replies.

travis13

MIS
Oct 3, 2002
17
0
0
US
Greetings-
I have setup a form that is opened during the AutoExec that I would like to display for 10 seconds, then continue with the rest of the AutoExec unless the user cancels. Is there a way to do this??

Thanks for your help!!

t
 
yes it is possible but you will need to macro's

the first will open the form
and in the load you set this

begintime = now()

set this just under the line compare database

public begintime as date

and put this in the on timer event

If Abs(DateDiff("s", begintiem, Now())) > 10 Then
DoCmd.OpenForm "form"
DoCmd.Close
End If

and set timerinterval to 100 "What a wonderfull world" - Louis armstrong
 
pff not even a star "What a wonderfull world" - Louis armstrong
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top