x = Shell("d:\temp2\apispy27.exe", vbNormalFocus)
y won't that work when i click the command button?
Printable View
x = Shell("d:\temp2\apispy27.exe", vbNormalFocus)
y won't that work when i click the command button?
Try this:
Code:Private Sub Command1_Click()
Shell "D:\temp2\apispy27.exe", vbNormalFocus
End Sub
it works now ... but how come it wouldn't work the way i had it?