user2888402
user2888402

Reputation: 77

updating my application through my website

supposing i would add some new features to my desktop application (including developing a new winwindow in my application and attaching new files), and i would upload this new updated application to my website, how is it possible to let users update their version with my latest version, as several programs do, without having to uninstall the current version and re-install the latest version? For example Google Chrome can automatically update its user interface and options without Un-installation and re-installation!

Upvotes: 1

Views: 55

Answers (1)

Matthew Lock
Matthew Lock

Reputation: 13476

You can either:

  • just open a web page when a new version is released (slightly annoying)
  • use a technology like Clickonce or Java's equivalent to handle the updates for you
  • choose an Installer which handles updates for you, like Installshield
  • code your own (harder)

Upvotes: 1

Related Questions