I have a database that I want to open via a batch program. I want to schedule the batch file to run daily.
So, I have scheduled a batch file to run daily using the Windows System Tools>>Scheduled Task. below is my code for the batch file:
When I run that, it opens the database but at the security warning that waits for the end user to make a selection.
I need for the database to open so that it can execute the autoexec macro . Any suggestions or answers?
So, I have scheduled a batch file to run daily using the Windows System Tools>>Scheduled Task. below is my code for the batch file:
Code:
start /d "C:\Documents and Settings\e3utbl\Desktop\SOLreports" CreateSpan.mdb"
When I run that, it opens the database but at the security warning that waits for the end user to make a selection.
I need for the database to open so that it can execute the autoexec macro . Any suggestions or answers?