How to restart my application?
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Which is the most efficient way to restart my dialog box application, I mean to close the application and to start it again immediately after that.
Hmm if design allows, I would hide all dialogs visible, spawn a new instance of the application and then finish the original instance. For user it will look the same, only problem can be in accessing shared resources (disk file or whatever) but you can take a care about that.