Click here to Skip to main content
15,881,757 members
Articles / Desktop Programming / MFC
Article

Simple update check function

Rate me:
Please Sign up or sign in to vote.
4.47/5 (14 votes)
10 Nov 2003CPOL3 min read 158.5K   2.3K   65   43
An aasy way to implement an online Update-check to your application

Introduction

Almost all programs that are available today have a feature that checks for software updates using the internet. This is a convenient way for both the user and the developer: You don't have to contact all the users (if you know them...) when a new version is available. And the user can be sure to always have the newest version.

In this article I'd like to focus on small programs (e.g. only 1 executable and no nescessary installation program) and developers who have just a simple web space without the possibility to use scripts (only static web pages). Also this code only shows a web page and does not automatically download or install files.

The basic thing we have to do is very simple: Connect to a web site, ask for the newest version, compare it to the current version, and in case there is an update ask the user to download it. You - as the developer - have to use correct version information in your code and update the internet file whenever an update is available.

Program version

Ever looked at the version block of your code in the resource file? This resource consists of two major blocks: A language-independent information on the top containing file version etc. and some blocks where text information can be stored like the copyright. This code only uses the fixed block (FILEVERSION) at the top of this resource. Please be sure to update this block any time you want to release a new version!

What this class does

The new class CUpdateCheck has 1 main function: download a web site and check for updates! If you don't want to change any behaviour you simply use the class "as is" - that's all (besides adding the language-dependant strings). The class has two helper function GetFileVersion()to get the applications File version and GotoURL() which simply opens a web page in the default browser. I got the code for GotoURL() somewhere on the web, so when you are the author please inform me to put your names to the credits.

Using the code, allow auto-updates

[1]: Add a new menu item to your application and handle it in your CWinApp drived class. This could look like this:
void CMyApp::OnAppCheckupdate()
{
  CUpdateCheck checkUpdate;
  checkUpdate.Check(IDS_UPDATE);
}
where the string IDS_UPDATE is e.g. http://www.mywebsite.xxx/update.txt

In case you want to check automatically for updates each time the user start your application put the lines above in the InitInstance function. Or write the last date you checked for updates to the registry and only check once each week. ....

[2]: Add a few strings to the string table:

IDS_UPDATE_AVAILABLE You currently use version %u.%u of this program. The newest version %u.%u is available online. Do you want to see more information?
IDS_UPDATE_NO No Updates available.
IDS_UPDATE_NOCHECK Unable to check for updates.

[3]: Put a file on your webspace (located as referred in IDS_UPDATE) which has the following syntax:

Major Version|Minor Version|URL for Update page
So when your program has currently the version 1,1,0,0 and you want to offer an update to 3,4,0,0 which is available for download at http://www.mydomain.com/updateinfo.html the file should be
3|4|http://www.mydomain.com/updateinfo.html

Limitations

  • The file on your web site has to be less than 512 characters
  • Only the two leftmost parts of the version info are used. The lower two numbers are normally used as a "Build number" and have no effect on this class
  • No automatic download is offered, the user has to download the files from your site and copy/install them

History

01.11.2003: Initial release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Germany Germany
Ok, a few words about me:

I started programming on the C64 by the "trial and error" method. Years later my parents got their first PC (Atari PC4, AT 8 MHz) where I started with Turbo Pascal. The next steps led to Turbo Pascal for Windows, Visual C++ 1.52c, and finally Visual C++ 6.

I had several chances to code larger projects, e.g.
* stand-alone disc copy station software (Win 3.1) with automatic reboot, disc encryption, ...
* government-used strategic decision system
* MLM marketing tool (www.upline.de)
* maintenance for show planning system and other TV software (www.hse24.de)

A lot of code, tipps and help came from this site for my later projects. Thanks again to all who helped me, even if they don't know it. I'm trying to share code (which is worth sharing) so others can get the help I got (and still need) for everyday problems.

Well, I think that's enough.

Comments and Discussions

 
GeneralRe: Shameless plug for Web Update Wizard Pin
peterboulton16-May-04 4:21
professionalpeterboulton16-May-04 4:21 
GeneralRe: Shameless plug for Web Update Wizard Pin
alex.barylski16-May-04 5:03
alex.barylski16-May-04 5:03 
GeneralRe: Shameless plug for Web Update Wizard Pin
Alexander Bischofberger26-Nov-03 0:35
Alexander Bischofberger26-Nov-03 0:35 
GeneralRe: Shameless plug for Web Update Wizard Pin
peterboulton26-Nov-03 2:54
professionalpeterboulton26-Nov-03 2:54 
GeneralRe: Shameless plug for Web Update Wizard Pin
leotta24-Jan-04 15:58
leotta24-Jan-04 15:58 
GeneralRe: Shameless plug for Web Update Wizard Pin
John Marino20-Apr-04 22:27
sussJohn Marino20-Apr-04 22:27 
GeneralRe: Shameless plug for Web Update Wizard [modified] Pin
oducille15-Dec-09 6:44
oducille15-Dec-09 6:44 
GeneralRe: Shameless plug for Web Update Wizard Pin
The Bug5-Oct-04 1:40
The Bug5-Oct-04 1:40 
GeneralRe: Shameless plug for Web Update Wizard Pin
peterboulton5-Oct-04 2:54
professionalpeterboulton5-Oct-04 2:54 
GeneralExcellent article, but... Pin
Bassam Abdul-Baki12-Nov-03 17:23
professionalBassam Abdul-Baki12-Nov-03 17:23 
GeneralRe: Excellent article, but... Pin
Alexander Bischofberger25-Nov-03 1:16
Alexander Bischofberger25-Nov-03 1:16 
GeneralAn application sample Pin
Piccinano11-Nov-03 19:54
Piccinano11-Nov-03 19:54 
GeneralRe: An application sample Pin
Trần Văn Tiến4-Jul-11 21:33
Trần Văn Tiến4-Jul-11 21:33 
QuestionWhat about proxies? Pin
Neville Franks11-Nov-03 11:05
Neville Franks11-Nov-03 11:05 
AnswerRe: What about proxies? Pin
Alexander Bischofberger11-Nov-03 20:51
Alexander Bischofberger11-Nov-03 20:51 
GeneralRe: What about proxies? Pin
alex.barylski15-May-04 20:51
alex.barylski15-May-04 20:51 
GeneralRe: What about proxies? Pin
RaceProUK11-Jul-06 12:57
RaceProUK11-Jul-06 12:57 
GeneralOne thing though Pin
Snyp11-Nov-03 5:17
Snyp11-Nov-03 5:17 
GeneralRe: One thing though Pin
Alexander Bischofberger11-Nov-03 6:43
Alexander Bischofberger11-Nov-03 6:43 
GeneralRe: One thing though Pin
Blake Miller11-Nov-03 11:16
Blake Miller11-Nov-03 11:16 
GeneralRe: One thing though Pin
Alexander Bischofberger11-Nov-03 20:57
Alexander Bischofberger11-Nov-03 20:57 
GeneralFINALLY!!!!! Pin
Snyp11-Nov-03 4:24
Snyp11-Nov-03 4:24 
GeneralRe: FINALLY!!!!! Pin
Martin Bohring12-Nov-03 5:21
Martin Bohring12-Nov-03 5:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.