Link to home
Start Free TrialLog in
Avatar of richelieu7778
richelieu7778

asked on

Product Version (PRODUCTVERSION) of Details Tab of File Property

I am having problems with populating the "Product Version" line of the Details Tab of a file's property. For instance, if you Right Click on a file from within Windows Explorer, you'll see a list of file parameters.  I can populate every other one I need expect for "Product Version".

Attached is the code I'm using in the DLL's (the file I'm creating) resource *.RC file.

What am I doing wrong?

By the way, I have a screen shot of the Details Tab, but I don't know how to post it to this board since it is a BMP file (and it's asking for "Add from URL . . "

I'm using VS.NET 2008 Unmanged C++.

I  have successfully done this with other DLL's but can't for whatever reason do it with this one.
DLL.rc.txt
Avatar of jkr
jkr
Flag of Germany image

The problem seems to be

#define PROD_VER      1.0

which should actually look more like

#define PROD_VER      "1, 0, 0, 0"
ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of richelieu7778
richelieu7778

ASKER

I LOVE EXPERT'S EXCHANGE!!!