Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Having a VB.NET desktop app restart itself

Status
Not open for further replies.

DotNetter

Programmer
Joined
May 19, 2005
Messages
194
Location
US
How can I have my VB.NET desktop app restart itself. In other words, when the user clicks on "Restart the wizard" button, it should relaunch itself. (I have the EXE runnable from a URL, if that helps anything...)

Thanks,
Dot
 
Shell "C:\Project1.exe" 'your app
End
 
system.diagnostics.process.start("full_file_path")
 
Or read faq855-5802


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
[lol] Maybe that could just be a default answer I give whenever I post!


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Wow, thanks, everyone!!!
Dot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top