Hi Luis,
Put something like this in the form's event procedures:
Private Sub Form_Load()
Me.TimerInterval = 5000
End Sub
Private Sub Form_Timer()
Me.TimerInterval = 0
Me.Visible = True
End Sub
Then open the form with DoCmd.OpenForm and set the WindowMode argument
to acHidden.
On Tue, 2 May 2006 07:36:02 -0700, Luis Tudor <Luis