I have a program that has to show a different icon depending of the platform.
I do not want to compile 5 different versions.
Here is my idea.
I am creating a res file with the 5 different icons
BW98 ICON "...."
BWME ICON ".... "
BWNT ICOB "...."
BW2K ICON "...."
BWXP ICON "...."
If I want to show the icon for Win Me then I can have my installer program to
edit the exe file and find BWME and rename it to AWME, this will make the EXe use
this icon for the EXE.
The problem is that I cannot find the STRING "BWME" because I think is in UNICODE FORMAT.
If I use a unicode editor I am able to see the string "BWME"
Can someone help me with this?
Thanks in advance,
------------------
Pedro Camargo
I do not want to compile 5 different versions.
Here is my idea.
I am creating a res file with the 5 different icons
BW98 ICON "...."
BWME ICON ".... "
BWNT ICOB "...."
BW2K ICON "...."
BWXP ICON "...."
If I want to show the icon for Win Me then I can have my installer program to
edit the exe file and find BWME and rename it to AWME, this will make the EXe use
this icon for the EXE.
The problem is that I cannot find the STRING "BWME" because I think is in UNICODE FORMAT.
If I use a unicode editor I am able to see the string "BWME"
Can someone help me with this?
Thanks in advance,
------------------
Pedro Camargo
Comment