Application End and Reload Question

  • Thread starter Thread starter John Lepone
  • Start date Start date
J

John Lepone

I have a Windows application written in VB.NET and need it to completely
end execution and reload. Any thoughts on how I might be able to
accomplish this task?
 
* John Lepone said:
I have a Windows application written in VB.NET and need it to completely
end execution and reload. Any thoughts on how I might be able to
accomplish this task?

You will need a 2nd application which you can start from the 1st
instance and which starts the 2nd instance. Use 'Shell' or
'System.Diagnostics.Process.Start' to start an application.
 
Back
Top