G Guest Apr 12, 2004 #1 How do I get a popup or menu to appear for 5 seconds and then close by itself Thanks As Always RIP
A Arvin Meyer Apr 12, 2004 #2 In the form's Timer event code, add the line: DoCmd.Close Then set the form's TimerInterval property to: 5000 -- Arvin Meyer, MCP, MVP Microsoft Access Free Access downloads: http://www.datastrat.com http://www.mvps.org/access
In the form's Timer event code, add the line: DoCmd.Close Then set the form's TimerInterval property to: 5000 -- Arvin Meyer, MCP, MVP Microsoft Access Free Access downloads: http://www.datastrat.com http://www.mvps.org/access
J John Vinson Apr 15, 2004 #3 How do I get a popup or menu to appear for 5 seconds and then close by itself? Thanks As Always, RIP Click to expand... Set the Timer property of the Form to 5000 (milliseconds); in the OnTimer [Event Procedure] put DoCmd.Close acForm, Me.Name
How do I get a popup or menu to appear for 5 seconds and then close by itself? Thanks As Always, RIP Click to expand... Set the Timer property of the Form to 5000 (milliseconds); in the OnTimer [Event Procedure] put DoCmd.Close acForm, Me.Name