icons

Can i put an icon in the status bar when my application is running? ( PERMANENTLY, also in background mode)

Hi, i want to put just an ICON when my application is running, also in background (home key pressed or something like that) i mean that it's just an icon showing that my application is ON, and it have to be there allways also when my application it's in background mode i can't find any information about how to do this can someone give...

How to add a custom icon to Setup Project in Visual Studio?

I am trying to add a custom icon to setup project. So instead of standard installer logo I have my custom logo. To make it clear, here is the icon, which I want to change: ...

Wrong Application icon in taskbar

Hello, I have a windows application(C#) that has the icon and manifest settings set in the project properties. The icon is set correctly. The problem I am having is when a user launches the application from his/her machine, and logs in, the icon is displayed correctly on the form window, but the icon that is displayed in the task bar ...

Windows resource editor from linux (without using wine)

Is there some resource editor for windows executables I could run from a CentOS box? Something like Resource hacker, that allows to update icon and fileversion. But I don't want to install wine because it's not my server and I want to change much. I would like to run it from a .py script so anything that works from a terminal will do....

Samsung Galaxy S features icon backdrops in Launcher, any way to specify it?

I haven't seen this mentioned anywhere. Usually Android app icons feature a transparent background, unlike the squared status quo of the iOS family. However, the Samsung Galaxy S's launcher sets different icon backdrops for my various apps. On my own app, he attributed a green sunshine, and I see that pattern on some other apps I have i...

Windows Icons for Details, List, etc

You know how, in windows explorer, when you click that button, and drag the slider, you can change the display from details, to list, small icons, etc etc? Does anyone know where I can get the icons that are beside each of those choices? Windows 7 would be ideal (not sure if they've changed over the years). Thanks! ...

ExtractIconEx all icon sizes vb6 including 256

Hello guys, I need to extract all Icons sizes up to 256x256 from ico,exe,dll,icl files ExtractIconEx only extracts 32x32 and 16x16 icons thanks for helping ...

iphone SDK: Universal binary app icon is blank for iPhone 3G

I have a universal binary iPhone/iPad app. The app icon appears correctly when I install the app on an iPhone4 and an iPad. However, when installed on an iPhone 3G, the icon is blank (gray). I've tried everything I can think of that might fix this issue and would appreciate suggestions. I followed the Apple icon guidelines for universal ...

How do I set icons for Air for Android Settings within Flash CS5?

Hey there- I'm trying to set my own icons for Air for Android using Flash CS5. I see the icon tab within the Air Android Settings panel, but it won't let me navigate to my icons. Also, I would add the path to my manifest.xml file, but it gets overwritten while publishing. Thanks, any advice is appreciated! ...

Application icon image is not appears in the iPhone 2G?

Hi Friends, I am developing iphone application. It works fine in 3G and 4G version. But in 2G version, the Appicon(icon.png) is not appears in the mobile.(I have used PNG image format) In 2G version, the image is doesn't appear and the blank white screen is visible. So how can i solve this issue? Please help me out. Thanks! ...

c# Icon (Windows.Drawing.Icon) selecting the size?

Hi, I have an Icon which has a few different sizes (16px, 32px, 64px). I am calling the toBitMap() object but it is always returning the 32px image. How do I retrieve the 64? ...

How to create the empty 'Icon\r' file for a .dmg from shell script?

Hi, From shell script, I would like to create the empty 'Icon\r' file for a Mac OS X disk image (dmg), so as the .VolumeIcon.icns icon file is taken into account by the finder; the damn '\r' character is not accepted from the console: touch Icon\r ls Icon* > Iconr and other things happen when trying to type 'Icon\r', "Icon\r" etc., ...

Get Windows Icons and File Type Names in Silverlight?

I am trying to get the native windows icons and file type names for a file I am reading in using OpenFileDialog. The FileInfo doesn't contain this. I need something similar to shell32.SHGetFileInfo and szTypeName, but I believe shell32 has permission problems with silverlight. Is there a way for me to do this? ...

android color menu icons

Is there are a reason why android menu icons are always monochrome and not color? Is there any reason why i shouldn't use color menu icons? ...

Changing Icon per Day

Just like the Calendar app on the iphones and ipods, how do I make the Icon change per day? ...

How to select icon for a WPF to be the icon of the application?

I have set the icon to use for my application but my form still having the default icon on it. How can I select its icon to be the one set for the application? Please help ...

How to save Bitmap as icon?

Hi! I need to save Bitmap object loaded from image file (.png, .jpeg, .bmp) and save it as an icon (.ico) to a separate file. First I tried saving Bitmap object to a file with Icon ImageFormat: using System.Drawing; Bitmap bmp = (Bitmap)pictureBox1.Image; bmp.Save(@"C:\icon.ico", Imaging.ImageFormat.Icon); This one fails, as the ic...

How do you bind menu items to a ContextMenu in silverlight, including the icon

I have a context menu and i want its menu items populated via a binding. The following code works <Button> <controlsInputToolkit:ContextMenuService.ContextMenu> <controlsInputToolkit:ContextMenu ItemsSource="{Binding MenuItems}"> <controlsInputToolkit:ContextMenu.ItemTemplate> <DataTemplate> ...

Setting a different taskbar icon to the icon displayed in the titlebar (C#)?

I have both dark and light versions of my application icon; the dark version works best on gray surfaces such as Windows XP taskbar, where the light version works best as an icon in the titlebar. Is there a way I can set the icon in the taskbar to a different icon than the one used in my form in C# (P/Invoke is fine)? ...

Python/Tkinter: Using custom mouse cursors under Windows?

Python 2.7/Windows: My understanding is that we can load custom mouse cursors using the cursor='@file.cur' syntax: widget = tkinter.Label( ..., cursor='@help.cur' ) Here's the traceback I receive: Traceback (most recent call last): File "<pyshell#82>", line 1, in <module> widget.config( cursor='@help.cur' ) File "C:\Python27\...