Hi all,
I have the following code attempting to run a batch file (zipper.exe). However each time I run it, a "file not found" error appears, despite the fact that I have double checked the file's path numerous times.
Is there something I am missing here, I thought this would be relatively simple before I started it.
Private Sub Command1_Click()
Dim path As String
Dim runExe As Double
path = "C:\Program Files\C&F Customer Management\2005_Working_Version\"
runExe = Shell(path & "Zipper.exe", vbMaximizedFocus)
End Sub
I have the following code attempting to run a batch file (zipper.exe). However each time I run it, a "file not found" error appears, despite the fact that I have double checked the file's path numerous times.
Is there something I am missing here, I thought this would be relatively simple before I started it.
Private Sub Command1_Click()
Dim path As String
Dim runExe As Double
path = "C:\Program Files\C&F Customer Management\2005_Working_Version\"
runExe = Shell(path & "Zipper.exe", vbMaximizedFocus)
End Sub