how to replace a .exe's icon from ICO file?
-
I want to replace a .exe's icon from ICO fiel use code.change see in Explorer view for the .exe file. Best Regards, Steven.
-
I want to replace a .exe's icon from ICO fiel use code.change see in Explorer view for the .exe file. Best Regards, Steven.
If you are wanting to change the icon that Windows Explorer uses for a given file type, select Folder Options from the Tools menu, click the File Types tab, select the file type, click the Advanced button, click the Change Icon button. If you are wanting to change an icon resource in the EXE itself, you'll need to use
UpdateResource()
twice, once to delete the old icon resource and again to add the new icon resource.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
-
If you are wanting to change the icon that Windows Explorer uses for a given file type, select Folder Options from the Tools menu, click the File Types tab, select the file type, click the Advanced button, click the Change Icon button. If you are wanting to change an icon resource in the EXE itself, you'll need to use
UpdateResource()
twice, once to delete the old icon resource and again to add the new icon resource.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
Thanks,David. I'll to try and tell the result for u. Just now, I want to replace it via PE stuct,hehe, It's too difficult.
-
Thanks,David. I'll to try and tell the result for u. Just now, I want to replace it via PE stuct,hehe, It's too difficult.
Xiaodi_Liu wrote: I want to replace it via PE stuct,hehe, It's too difficult. While that is a good learning exercise, it's a tad too much, especially when a much simpler solution is available.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
-
Xiaodi_Liu wrote: I want to replace it via PE stuct,hehe, It's too difficult. While that is a good learning exercise, it's a tad too much, especially when a much simpler solution is available.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?
Now I found a quesstion. The UpdateResource function can not use for win95/98. How do I UpdateResource for win95/98? Thanks.
-
Now I found a quesstion. The UpdateResource function can not use for win95/98. How do I UpdateResource for win95/98? Thanks.
That function is unavailable on Windows 9x.
Five birds are sitting on a fence. Three of them decide to fly off. How many are left?