|
|
Title | Make a program start another program by using the Shell command |
Description | This example shows how to make a program start another program by using the Shell command in Visual Basic 6. |
Keywords | Shell, run, execute |
Categories | Software Engineering |
|
|
Use the Shell statement.
|
|
Private Sub cmdRun_Click()
On Error Resume Next
Shell txtProgram.Text, vbNormalFocus
End Sub
|
|
|
|
|
|