Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have three different exe. Now once i select the exe from drop down list and press start button i want to execute that particular application . Can any one please guide me.
Posted
Updated 4-Dec-11 19:53pm
v3

Process.Start is the ideal function to resolve this issue. Example to call google page is given below:

VB
Sub Main()
    SearchGoogle("VB.NET awesome")
    End Sub

    ''' <summary>
    ''' Open the user's default browser and search for the parameter.
    ''' </summary>
    Private Sub SearchGoogle(ByVal t As String)
    Process.Start("http://google.com/search?q=" & t)
    End Sub
 
Share this answer
 
You cannot do this in ASP.Net.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900