Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Revision Information Missing 1

Status
Not open for further replies.

gundie

Programmer
Feb 5, 2004
69
US
I'm kinda new to Delphi programming, so please bear with me. At work, I'm maintaining some code written by someone else. Everything was fine for a while, until I noticed with the last 2 to 3 builds that I created, that:

1. the version/revision information that I defined in 'Option' no longer display when I hover the mouse pointer over the .exe file.
2. the customized icon no longer display with the .exe, shows only a generic windows icon, also, that option is grayed out in the 'Option' dialog box.

How can I resolve this?

I'm doing my best to explain my problem, hope I make sense.
 
sounds like your resource file (x.res) is no longer compiled into your exe.

check you .dpr file .

there should be a line with
{$R *.res}

in it. this line assures that all resource files all compiled into your exe.

Cheers,
Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
THANK YOU SO MUCH! That's it!

The line was missing the '$' in front of the R. Now everything is back to normal. Thank you!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top