-
Hi this is just a bit urgent. Okay now up to now the only way i know how to execute a a .exe file from a vb app is to use the oem control. But i need to be able to execute an .exe program by clicking on an image or a button what code would i use??? Please help thanks. Either respond here or e-mail me at [email protected] ... :-) :)
-
Hello,
Have you ever tried using the Shell function?
Here's a sample,
Code:
Option Explicit
Private Sub Form_Load()
Shell "c:\windows\notepad.exe", vbNormalFocus
End Sub
-
Hello,
Have you ever tried using the Shell function?
Here's a sample,
Code:
Option Explicit
Private Sub Form_Load()
Shell "c:\windows\notepad.exe", vbNormalFocus
End Sub
Hope it helps,
Desire.
-
Thank you sooooo much tahnk you for your help this will really help. Belive it or not i am making a little shell replacment in vb well i'm trying lol.