Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
C# Helper...
 
XML RSS Feed
Follow VBHelper on Twitter
 
 
 
MSDN Visual Basic Community
 
 
 
 
 
TitleMake a program start another program by using the Shell command
DescriptionThis example shows how to make a program start another program by using the Shell command in Visual Basic 6.
KeywordsShell, run, execute
CategoriesSoftware Engineering
 
Use the Shell statement.
 
Private Sub cmdRun_Click()
    On Error Resume Next
    Shell txtProgram.Text, vbNormalFocus
End Sub
 
 
Copyright © 1997-2010 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated