|
||||
Re: Need some help with Visual Basic
if you're trying to call this from the C:\ drive, you need to put (C:\Program Files\Opera Mobile\OperaL.exe")
alternatively you can Code:
Dim OperaPath, WSHShell Set WSHShell = WScript.CreateObject("WScript.Shell") OperaPath = "C:\Progam Files\Opera Mobile\" WSHShell(OperaPath & "OperaL.exe") Last edited by elephant007; 08-03-2009 at 08:21 PM. |
|
||||
Re: Need some help with Visual Basic
Quote:
My bad. This is for a pocket pc app. I probably should have mentioned that in my original post |
|
||||
Re: Need some help with Visual Basic
Quote:
try Code:
Run("Program Files\Opera Mobile\OperaL.exe") Code:
Shell("Program Files\Opera Mobile\OperaL.exe") |
|
|
|