Is there a command line tool that can add an icon to an existing executable file? It should be able to set the icon as the file's "main" icon that is shown in Explorer.
I don't have Visual Studio and cannot recompile the exe with custom resources containing the icon.
UPDATE: The best tool I have found since posting this question is by ...
I have a C# Windows CE 5.0 application. I am using VS2005. My executable shows the correct icon (32x32 8 bit). If I move the .exe file to the CE device using ActiveSync then the icon is still correctly displayed. When I use a CAB file to install the application the icon is lost. Currently the icon is an embedded resource. Any suggestions...
Specifically, this is from an .ico file, so there is no "transparent" "info" attribute like you would get in a gif. The below example illustrates converting Yahoo!'s favicon to a png using the correct transparency index of "0", which I guessed. how to detect that the ico is in fact transparent and that the transparency index is 0 ?
i...
In the notepad++ website there's a technique to change the icons with any other "ico" format image. Each icon has it special name in order to be detected by notepad++. For instance, the new file icon is: new_normal.ico. The open file icon is: fileopen_normal.ico and so on. But I can't find the special names for Synchronize Vertical Scrol...
Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico?
I'm supporting modern browsers which all support PNG favorite icons.
...
I want to display the favicon.ico from websites on my blackberry application. I would normally use the EncodedImage class to convert the byte[] into a recognizable image file. However EncodedImage only supports PNG, BMP, JPG, TIFF, and GIF. Is there another method for me to display the ICO file on the device?
...
Page of interest: https://www.gsb-yourbank.com/test/
ICO file: https://www.gsb-yourbank.com/test/favicon.ico
My favicon is a 16x16 resolution, 16-color ICO file. It will not appear in IE 7/8 no matter what I do! I've tried everything I can think of, including:
generating the ICO with a variety of
different utilities,
changing the s...
Hello.
Here is what I have:
Visual Studio 2008 (on 32-bit Windows XP)
Qt libraries 4.6.2 for Windows (VS 2008, 194 MB)
Visual Studio Add-in (44 MB)
After I installed all the software, I created simple Qt Application project, with Visual Studio: menu File | New | Project... and Qt4 Projects | Qt Application.
Build it, and here is th...
So added a resource.rc and a resource.h file to my project.
resource.rc has #include "resource.h" IDI_MYICON ICON "my_icon.ico"
and resource.h has #define IDI_MYICON 201
wincl.hIcon = LoadIcon (GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON));
wincl.hIconSm = (HICON) LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON), ...
I would like to test if *.ico images are valid icons in PHP. I tried to use getimagesize function but it doesn't support ICO files.
...
Does anyone know how to make a .ico file that will work in Intenet explorer?
I can't seem to get anywhere
here is my gd code
$im = imagecreatefromjpeg(FAVICONDIR.'normal/'.$filename );
list($width, $height) = getimagesize(FAVICONDIR.'normal/'.$filename); // get the width and height of the jpg
$image_p = imagecreatetrueco...
I have a nice icon and I want to use it on all of the forms in my application. How can I do this?
...