startup form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all

I want to make a form as a startup for my program.but the thing is that i
want the form only shows for like 5 second and then it close, and open the
main program form. how can i make the function for this?

regards,
jv
 
Hi all

I want to make a form as a startup for my program.but the thing is that i
want the form only shows for like 5 second and then it close, and open the
main program form. how can i make the function for this?
use the timer event:

on open: timerintervall=5000

in the timer:

docmd.open NewForm
docmd.close Me.name


If you expect an answer to a personal mail, add the word "manfred" to the first 10 lines in the message
MW
 
Back
Top