I have defined a rc file for my dll with following details
VALUE "CompanyName", "My Company Inc."
VALUE "FileDescription", "Dll for XYZ"
VALUE "FileVersion", "1.00"
VALUE "InternalName", "MyDll"
VALUE "ProductName", "MyProduct"
VALUE "ProductVersion", "1.00"
VALUE "Build ID", "10500 "
VALUE "LegalCopyright", "Copyright © 2004-2011 My Company Inc. All rights reserved."
Right click on the file and selecting properties shows the following
File version: 0.1.00
Description: Dll for XYZ
Copyright: Copyright © 2004-2011 My Company Inc. Al
First issue is the file version. Not sure why it is prepending 0. before the file version Can we format that string in rc file?
Second, the copyright text is truncated after 40 characters.User has to drag the cursor on the string to read entire string. Can we set the text to wrap so entire string is visible? I understand that the copyright string can be reduced to under 40 characters but wanted to know if we can wrap that text.