Hello, many software now has auto update features.. How can i make my application to have this also?
Announcement
Collapse
No announcement yet.
Help auto update
Collapse
X
-
First you would need to make a function to do a web call to check your local version with your remove version if the remote version is bigger then you tell the user to download it, then you have to deal with how your code base is I create DLL based source so my updating code can just delete the old source dll and place with the new one.
- Likes 1
-
Originally posted by kingzooly View PostFirst you would need to make a function to do a web call to check your local version with your remove version if the remote version is bigger then you tell the user to download it, then you have to deal with how your code base is I create DLL based source so my updating code can just delete the old source dll and place with the new one.
Comment
Comment