Program-Icon
-
How do I manage to use an own Icon for my executable (no MFC used yet) so that the usual Windows-Icon for exes is replaced by my Icon ?
hmm, I think this question is answered several times in this forum, it might even be in the Q&A section. Anyway, to change this icon, modify the Icon whose ID is IDR_MAINFRAME, remember to change both of them, the standard one (32x32) and the small one (16x16).
-
hmm, I think this question is answered several times in this forum, it might even be in the Q&A section. Anyway, to change this icon, modify the Icon whose ID is IDR_MAINFRAME, remember to change both of them, the standard one (32x32) and the small one (16x16).
-
I know that procedure when I have a for example dialog-based app using MFC. But I dont use MFC and aint got any resources yet. What do I have to do ? :confused:
The resources are crucial - if you don't have them you can't have icons. When explorer try to flash an icon up, it just uses the first icon it comes across in the resource sector. Usually we arrange things so that if you have several icons, the main one is the first one uncovered. There really is no way around you making an .rc, and doing it that way - not that I nkow of anyway. I hope that helps. With time we live, with money we spend! Joel Holdsworth
-
The resources are crucial - if you don't have them you can't have icons. When explorer try to flash an icon up, it just uses the first icon it comes across in the resource sector. Usually we arrange things so that if you have several icons, the main one is the first one uncovered. There really is no way around you making an .rc, and doing it that way - not that I nkow of anyway. I hope that helps. With time we live, with money we spend! Joel Holdsworth