Live updates control

seema.nare@oasis-bs.com

Active member
Joined
May 19, 2006
Messages
27
Programming Experience
Beginner
Hi,

I've developed an application in VB.net wherein I'm providing the Online updates. As my application exe and online updates exe are different I can't continue with the previous form in application. After online updates my application starts again instead of continuing from the same form in app on which I's working.
Can anybody help regarding tranfering data from 1 exe to another to keep the state of my application.

Regards.
 
Your best bet would be to save your data to disk as XML, text file or whatever and then look for that file when you startup. If you find it then use the data to restore your app to its formaer state and delete the file. If you don't find it then just startup as normal.
 
Back
Top