I need to run a batch file from Access. Any Ideas?
M missinglinq via AccessMonster.com Jul 3, 2007 #2 Where C:\ is the path to your batch file; modify the path as needed: Private Sub CallBatchFile_Click() Shell("C:\YourBatchFileName.bat") End Sub
Where C:\ is the path to your batch file; modify the path as needed: Private Sub CallBatchFile_Click() Shell("C:\YourBatchFileName.bat") End Sub
D Daniel Jul 3, 2007 #3 Two options comes to mind 1. Application.FollowHyperlink "FullPath\FilenName" 2. Shell "cmd.exe /C ""FullPath\FilenName"""
Two options comes to mind 1. Application.FollowHyperlink "FullPath\FilenName" 2. Shell "cmd.exe /C ""FullPath\FilenName"""