Click here to Skip to main content
16,015,900 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Strange SetWindowText() under VS2003 Pin
Blake Miller14-Jun-05 4:37
Blake Miller14-Jun-05 4:37 
GeneralRe: Strange SetWindowText() under VS2003 Pin
toxcct14-Jun-05 5:45
toxcct14-Jun-05 5:45 
GeneralRe: Strange SetWindowText() under VS2003 Pin
Blake Miller14-Jun-05 5:51
Blake Miller14-Jun-05 5:51 
GeneralRe: Strange SetWindowText() under VS2003 Pin
toxcct20-Jun-05 20:38
toxcct20-Jun-05 20:38 
GeneralNeed help in RLC(Run-Length Coding)!!! Pin
Member 199230312-Jun-05 20:07
Member 199230312-Jun-05 20:07 
GeneralRe: Need help in RLC(Run-Length Coding)!!! Pin
Ravi Bhavnani13-Jun-05 6:37
professionalRavi Bhavnani13-Jun-05 6:37 
GeneralProblem in adding fifth digit to version number in VC++ 6.0 Pin
Neeranjan12-Jun-05 18:46
Neeranjan12-Jun-05 18:46 
GeneralRe: Problem in adding fifth digit to version number in VC++ 6.0 Pin
Blake Miller13-Jun-05 7:52
Blake Miller13-Jun-05 7:52 
There are only four defined places for digits.

The one place you can add stuff all day is to the version information that is stored as a string (FileVersion and ProductVersion).

The one that is a number is only treated as the two WORDS of two DWORDS. So you only get four numbers possible for each of FILEVERSION and PRODUCTVERSION.

What you might consider doing, assuming you don't have 'hundreds' of patches and more than 9 service packs, is to use the lower number as a build identifier and then for the third number use the 10's digits as a patch number and the hundreds or thousands place as a service pack indicator.

For example, 7.11.1.3452
would mean product version 7.11, patch 1, build 3452

7.11.201.35
would mean product version 7.11 service pack 2 patch 1 build 35

7.5.434.99
would mean product version 7.5 service pack 4 patch 34 build 99

This works well with version checking tools as well, because all numebrs are constantly increasing.

Some scheme similar to this might help you out.

GeneralRe: Problem in adding fifth digit to version number in VC++ 6.0 Pin
Neeranjan13-Jun-05 19:46
Neeranjan13-Jun-05 19:46 
GeneralC++ Array Of Function Pointers problem Pin
CNewbie12-Jun-05 18:21
CNewbie12-Jun-05 18:21 
GeneralRe: C++ Array Of Function Pointers problem Pin
GDavy12-Jun-05 19:34
GDavy12-Jun-05 19:34 
GeneralRe: C++ Array Of Function Pointers problem Pin
toxcct12-Jun-05 20:26
toxcct12-Jun-05 20:26 
GeneralRe: C++ Array Of Function Pointers problem Pin
Bob Stanneveld12-Jun-05 20:56
Bob Stanneveld12-Jun-05 20:56 
GeneralRe: C++ Array Of Function Pointers problem Pin
David Crow13-Jun-05 3:16
David Crow13-Jun-05 3:16 
GeneralRe: C++ Array Of Function Pointers problem Pin
CNewbie13-Jun-05 5:08
CNewbie13-Jun-05 5:08 
GeneralRe: C++ Array Of Function Pointers problem Pin
David Crow13-Jun-05 5:17
David Crow13-Jun-05 5:17 
GeneralRe: C++ Array Of Function Pointers problem Pin
CNewbie13-Jun-05 5:39
CNewbie13-Jun-05 5:39 
GeneralRe: C++ Array Of Function Pointers problem Pin
David Crow13-Jun-05 6:08
David Crow13-Jun-05 6:08 
GeneralRe: C++ Array Of Function Pointers problem Pin
CNewbie13-Jun-05 6:16
CNewbie13-Jun-05 6:16 
GeneralRe: C++ Array Of Function Pointers problem Pin
David Crow13-Jun-05 6:27
David Crow13-Jun-05 6:27 
GeneralRe: C++ Array Of Function Pointers problem Pin
CNewbie15-Jun-05 19:32
CNewbie15-Jun-05 19:32 
GeneralRe: C++ Array Of Function Pointers problem Pin
David Crow16-Jun-05 2:56
David Crow16-Jun-05 2:56 
GeneralRe: C++ Array Of Function Pointers problem Pin
CNewbie16-Jun-05 5:30
CNewbie16-Jun-05 5:30 
GeneralRe: C++ Array Of Function Pointers problem Pin
David Crow16-Jun-05 5:43
David Crow16-Jun-05 5:43 
GeneralRe: C++ Array Of Function Pointers problem Pin
CNewbie16-Jun-05 5:54
CNewbie16-Jun-05 5:54 

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.