How to open programs using the Shell function.
Posted on January 4, 2009
1 2 3 4 5 6 7 | 'System & API - How to open programs using the Shell function. 'This code opens windows explorer. You can do this with executables 'Place this code into a command button click event. Private Sub Form_Load() Shell ("C:\Windows\Explorer") End Sub |