Log in

View Full Version : ShellExecute Command in eVB 3.0


Lewis68
11-14-2003, 01:06 AM
I'm trying to execute a program from within eVB3.0, but there is no ShellExecute command. Does anyone know an equivalent or some other method?

Thanks,
Randall

Lewis68
11-14-2003, 07:00 PM
I found this on Microsoft's website that will work as an option. I'll post it incase someone else runs into the same problem.

http://support.microsoft.com/default.aspx?scid=kb;EN-US;241531

BobWitt
12-04-2003, 02:06 PM
I've used CeCreateProcess to launch IE and display a specified page of html... The following line does it...

CeCreateProcess("iexplore.exe", "file:" & App.Path & "\myfile.htm", 0, 0, 0, 0, 0, 0, 0, 0)

Hope it helps

BobWitt