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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

automate Exports for every 5 minutes

Status
Not open for further replies.

jmeckley

Programmer
Jul 15, 2002
5,269
US
I need to export 3 files from access the exportation works, my problem is automating this export to occur every 2 minutes. i looked at Access Help and from what they have told me i now have the following code in place:

***********************************************************
Private Sub Form_Load()
'Export Information every 2 minutes
Me.TimerInterval = 120000
End Sub
***
Private Sub Form_Timer()
'variables
'Export code
End Sub
***********************************************************
I open the form, but nothing happens. What part of the code am i missing?

thank you for help Jason Meckley
Database Analyst
WITF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top