active questions tagged icons - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:10:30Z http://stackoverflow.com/feeds/tag/icons http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1073322/how-to-save-imagemso-icon-from-microsoft-office-2007 1 How to save ImageMSO icon from Microsoft Office 2007? Soul_Master 2009-07-02T09:12:39Z 2009-11-25T23:58:00Z <p>I found a lot of nice icons from Microsoft Office 2007. Do you any idea for extract &amp; save all icons as PNG files by using VBA?</p> <p><img src="http://rabu4g.bay.livefilestore.com/y1p2SF1q63YjDjPNmK4nYMW2644r9AO2aAsE%5F%5FvBYznTeXD0b4SJUU0O07fxPD0r7aO%5F83gCJ-8OfcOQsFKG0fQMRnTEneBU1TI/Capture.PNG" alt="Partial ImageMSO" /></p> <p>The following code is code which is used to get image from ImageMSO. </p> <pre><code>Application.CommandBars.GetImageMso([name], [width], [height]) </code></pre> <p>I can display all as PictureBox control and save excel file as web page. However, every icons is very low quality.</p> <p>Moreover, I try to create C# Excel Add-in project for exporting as Bitmap object by using the following code. But I found that it can't export as semi-transparent PNG.</p> <pre><code>stdole.IPictureDisp p = Application.CommandBars.GetImageMso(fileName, size, size); Bitmap b = Bitmap.FromHbitmap((IntPtr)p.Handle, (IntPtr)p.hPal); </code></pre> <p>PS. I want to save all icons as PNG format because I need to use semi-transparent feature of it. It allow me to use all icons on most background color more than white background.</p> http://stackoverflow.com/questions/1795753/how-to-hide-desktop-icons-by-double-clicking-the-desktop-using-c 1 How to hide desktop icons by double clicking the desktop using c# murasaki5 2009-11-25T09:38:13Z 2009-11-25T09:38:13Z <p>Hi, I wanted to know if there is a way to toggle desktop icon to show/hide when the desktop is double clicked. Similar to how it is done in Stardock Fences. I wanted it to be done using visual c#.</p> http://stackoverflow.com/questions/120865/how-do-i-get-files-in-my-own-file-format-to-have-its-own-dynamic-icon 6 How do I get files in my own file format to have its own dynamic icon? Epaga 2008-09-23T13:06:57Z 2009-11-25T09:22:49Z <p>Our application has a file format similar to the OpenDocument file format (see <a href="http://en.wikipedia.org/wiki/OpenDocument" rel="nofollow">http://en.wikipedia.org/wiki/OpenDocument</a>) - i.e. zipped with a manifest file, a thumbnail image, etc.</p> <p>I notice that OpenOffice files have a preview image of the Open Office file as their icons, both in Windows and in Linux. Is there some way to accomplish this for our files: i.e. I want a dynamic icon based on the internal thumbnail.png?</p> <p><strong>Edit 1</strong> Wow, thanks for all the quick answers. <a href="http://library.gnome.org/devel/integration-guide/stable/thumbnailer.html.en" rel="nofollow">Thumbnailer</a> looks great for the GNOME world. Windows I'll be looking into those links, thanks. As for the comment question: programmatically OR via our installer.</p> <p><strong>Edit 2</strong> Oh, forgot Mac. How about on the Mac? (Sorry Mac lovers!) Also are there any links or info for how OpenOffice does their IconHandler stuff - since ours would be very similar?</p> http://stackoverflow.com/questions/1787315/256x256-icons-trouble-again-or-how-to-get-true-icon-size-through-iimagelist 0 256x256 icons trouble again, or how to get TRUE icon size through IImageList Satchitananda 2009-11-24T01:56:43Z 2009-11-25T03:55:31Z <p>When I taken an System image list by SHGetFileInfo... SHGetImageList(SHIL_LAST,IID_IImageList,(void**)&amp;imList); I have got a list of images 256x256 sizes, but size of small icons which have not 256 version, have size 256 too. I need to each icon with it's TRUE size, how can I know this size?</p> <h2>I getting size of icon by IImageList::GetIconSize Method.</h2> <p>Ok, now I know about IImageList::GetIconSize getting all icon's size equals 256x256. Then another question, how to know real image size?</p> <p>P.S. Sorry for my English...</p> http://stackoverflow.com/questions/1787045/why-does-the-java-awt-filedialog-seticonimage-method-fail-to-set-the-icon 0 Why does the Java AWT FileDialog setIconImage method fail to set the icon? Adam 2009-11-24T00:24:34Z 2009-11-24T20:36:12Z <p>I am attempting to use a Java AWT FileDialog, but I want to replace the default Java Dialog icon with something else. In short, the code looks something like this:</p> <pre><code>Frame frame = new Frame(); Image image = ImageIO.read(new URL("file:/path/to/myfile.jpg")); FileDialog fileDialog = new FileDialog(frame, "Save As", FileDialog.SAVE); fileDialog.setIconImage(image); fileDialog.setDirectory("/path/to/directory"); fileDialog.setFile("filename.txt"); fileDialog.setVisible(true); </code></pre> <p>I've tried several variation, including a different method of reading the image, packing the FileDialog, packing the Frame, setting the icon of the Frame, etc. However, regardless of what I try, the FileDialog icon never changes. When I set the icon of the Frame and set the Frame to visible, the frame displayed the correct icon, but it was still a no go for the FileDialog.</p> <p>Any Thoughts?</p> http://stackoverflow.com/questions/1759745/configuring-favicon-with-expires-header-in-htaccess 0 Configuring favicon with expires header in htaccess [closed] thehuby 2009-11-18T22:58:34Z 2009-11-19T05:07:21Z <p>I have implemented Expires headers via mod_expires on my Apache server and have successfully created expires headers for most file types, however I am having trouble with the favicon.</p> <p>I initially tried adding a set of instructions for the .ico files but when checking via YSlow it has no expiry set.</p> <p>When this didn't work I amended it to be a GIF, however this seems to have the same issue.</p> <p>Other gif's on the website have correctly set expires headers (accoridng to YSlow at least).</p> <p>Can anyone shed any light on this situation?</p> http://stackoverflow.com/questions/1757737/how-to-tell-windows-explorer-to-refresh-its-icons 1 How to tell Windows Explorer to refresh its icons? Josh Kelley 2009-11-18T17:35:21Z 2009-11-18T19:05:49Z <p>Once my installer finishes installing new versions of my application's exe, I'd like to tell Explorer to use the new exe's icons for its shortcuts. However, I cannot figure out how to do this.</p> <p>From reading online, it looks like the problem is that the <a href="http://www.catch22.net/tuts/sysimg" rel="nofollow">system image list</a> is caching an old version of the icon. I tried calling <a href="http://msdn.microsoft.com/en-us/library/bb762118%28VS.85%29.aspx" rel="nofollow">SHChangeNotify</a> with a <code>SHCNE_UPDATEIMAGE</code> parameter. I tried calling <a href="http://msdn.microsoft.com/en-us/library/bb762258%28VS.85%29.aspx" rel="nofollow">SHUpdateImage</a>. I even tried the <a href="http://groups.google.com/group/microsoft.public.platformsdk.shell/browse%5Fthread/thread/439e0ff1718f4377" rel="nofollow">sledgehammer approach</a> of broadcasting <code>WM_SETTINGCHANGE</code>. Nothing seems to work.</p> <p>It's entirely possible that I'm just doing something wrong. Any help would be appreciated.</p> <p>Warning: Very ugly test code follows.</p> <pre><code>#if 1 // First attempt: using shell functions wchar_t icon_path[MAX_PATH]; int icon_index; UINT icon_flags; IShellFolder *desktop_folder; IShellFolder *sub_folder; IExtractIcon *extract_icon; LPITEMIDLIST pidl; SHGetDesktopFolder(&amp;desktop_folder); wchar_t *folder_path = L"C:\\Documents and Settings\\All Users\\Start Menu\\Programs\\MyCompany\\"; desktop_folder-&gt;ParseDisplayName(NULL, NULL, folder_path, NULL, &amp;pidl, NULL); desktop_folder-&gt;BindToObject(pidl, NULL, IID_IShellFolder, (void**) &amp;sub_folder); sub_folder-&gt;ParseDisplayName(NULL, NULL, L"MyApp.lnk", NULL, &amp;pidl, NULL); sub_folder-&gt;GetUIObjectOf(NULL, 1, (LPCITEMIDLIST*) &amp;pidl, IID_IExtractIcon, NULL, (void**) &amp;extract_icon); extract_icon-&gt;GetIconLocation(0, icon_path, MAX_PATH, &amp;icon_index, &amp;icon_flags); SHFILEINFO sfi; DWORD_PTR result = SHGetFileInfo(shortcut_path, 0, &amp;sfi, sizeof(sfi), SHGFI_SYSICONINDEX | SHGFI_LARGEICON); SHUpdateImage(icon_path, icon_index, icon_flags, sfi.iIcon); // sfi.iIcon should be correct, but we'll try both, just for fun... SHChangeNotify(SHCNE_UPDATEIMAGE, SHCNF_DWORD, NULL, (LPCVOID) icon_index); SHChangeNotify(SHCNE_UPDATEIMAGE, SHCNF_DWORD, NULL, (LPCVOID) sfi.iIcon); #else // Second attempt: broadcasting a settings change HKEY reg; RegCreateKeyEx(HKEY_CURRENT_USER, L"Control Panel\\Desktop\\WindowMetrics", 0, NULL, 0, KEY_SET_VALUE, NULL, &amp;reg, NULL); DWORD value; value = 33; RegSetValueEx(reg, L"Shell Icon Size", 0, REG_DWORD, (BYTE*) &amp;value, sizeof(value)); value = 32; SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, SPI_SETNONCLIENTMETRICS, (int) L"WindowMetrics"); RegSetValueEx(reg, L"Shell Icon Size", 0, REG_DWORD, (BYTE*) &amp;value, sizeof(value)); SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, SPI_SETNONCLIENTMETRICS, (int) L"WindowMetrics"); #endif </code></pre> http://stackoverflow.com/questions/1591731/whats-the-best-size-for-toolbar-icons 1 What's the best size for toolbar icons? issy 2009-10-19T23:38:35Z 2009-11-17T03:09:52Z <p>Windows *.ico files and Mac *.icns files contain multiple size icons. A lot of the icons you can buy also come in various sizes. But, as far as I'm aware, most implementations of toolbars set the size that's displayed. Are there any guidelines as to the best size to use on different platforms?</p> http://stackoverflow.com/questions/1711733/does-anyone-know-where-i-can-find-the-standard-windows-file-dialog-toolbar-icons 0 Does anyone know where I can find the standard windows file dialog toolbar icons? Mordachai 2009-11-10T22:34:45Z 2009-11-12T19:01:13Z <p>I'm trying to roll my own implementation of IShellBrowser because I need to have a more full-featured File Open and Save As dialog than Windows allows that is compatible with XP (and ideally with W2000)*</p> <p>At this point I need to add the standard toolbar that you see in upper right of the dialog (manifest styles for XP and earlier) - a back button, a parent-folder button, a new folder button, and a "tools" drop down.</p> <p>But so far I've been unsuccessful in finding these icons / images. I've looked in USER32.dll, comdlg32.dll, comctl32.dll, but haven't found anything that quite matches.</p> <p>I could simply take screen shots of an application where I can find them - but it would possibly more useful to know where they come from, so I can access the various versions of these buttons (high rez, low rez, shallow color, deep color, etc.).</p> <p>Any ideas?</p> <p>[Edit: I need it to be compatible with Vista &amp; Windows 7 also. Its just that starting with Vista, they broke the old common dialog model, and their new model is brain-damaged IMO - I no longer have enough access to the state of the dialog to perform the necessary duties that our dialogs used to do - so we are forced to approach the problem from another angle]</p> http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images 142 Where can one find free software icons / images? mmattax 2008-09-26T14:41:24Z 2009-11-12T16:56:15Z <p>This may not be directly related to programming, but I always find it hard to get quality icons that can be used for software.</p> <p>I currently have the need for some type of "green checkmark image", and I always seem to be looking for print, save, delete types of icons...</p> <p><strong><em>Anybody have good resources?</em></strong> <hr/> <strong>Note:</strong> I rather not be stealing someone's intellectual property.</p> http://stackoverflow.com/questions/1700497/why-does-browser-show-smaller-favicon 0 Why does browser show smaller favicon? culebrón 2009-11-09T11:38:33Z 2009-11-09T11:57:52Z <p>In our <a href="http://icando.ru" rel="nofollow">client's website</a>, <a href="http://icando.ru/favicon.ico" rel="nofollow">favicon.ico</a> file has several sizes from 8x8 to 32x32. I expect the 16x16 to show in browser tab, but instead it shows 8x8 icon in white frame. Why does this happen and what workarounds are there?</p> http://stackoverflow.com/questions/1681339/how-do-i-find-out-where-an-icon-was-clicked-relative-to-itself-using-python -1 How do I find out where an icon was clicked (relative to itself) using python? CodeLabMaster 2009-11-05T15:36:51Z 2009-11-05T16:10:14Z <p>Essentially, what I want to do is have an icon that has different symbols for various programs at the bottom of it (for example, a python file might have a symbol for command prompt, a text editor, and a debugger, all little squares at the bottom of the icon), and when the user double clicks on one of these, that program is used to open it up.</p> <p>How can I put these symbols there (do I have to make a special icon, or is there an easier way to do it) and how can I see if they double click on these? Also, how can I stop the normal program from running when they double click, so only the program I want will work?</p> <p>Some background: I'm using Python 2.5 and I'm on a Windows Vista, but if possible I'd like for this to be able to run on XP or 7 as well.</p> http://stackoverflow.com/questions/1022213/alt-tab-application-icon-pixelated 1 ALT-TAB Application Icon Pixelated Red Potato 2009-06-20T18:42:02Z 2009-11-04T17:33:19Z <p>When a child window of my application is opened and I view the ALT-TAB menu, the application icon looks pixellated. I assume that Windows uses a low resolution version of the icon (16x16 pixel I think). What can I do that Windows selects the right version which would be 32x32 pixel?</p> <p>I assigned an icon to the window in question that has 16x16, 24x24, 32x32, 48x38 and 256x256 in true color. Please note that VS says in the proterties that 32x32 is used and that it works fine for the main window of my application where I assigned the exact same icon.</p> http://stackoverflow.com/questions/1642294/turn-pngs-to-one-ico-file 0 Turn pngs to one ICO file [closed] eyalw 2009-10-29T08:31:34Z 2009-11-03T15:22:46Z <p>How do i convert a series of pngs of 16,24, 32, 48, 64, 128 to one *.ico file</p> http://stackoverflow.com/questions/1659684/iphone-working-with-icons 0 Iphone working with icons Ali Bozorgkhan 2009-11-02T06:16:25Z 2009-11-02T07:27:36Z <p>Hi all, I want to write a simple program which can customize iphone icons like their positions or something like theme creators. and I want to know how some programs' settings are in the iphone main setting tab. I really need help. thanx in advance</p> http://stackoverflow.com/questions/813096/are-there-free-iphone-navigation-bar-icon-sets-available 9 Are there free iPhone navigation bar icon sets available? higginbotham 2009-05-01T20:20:48Z 2009-10-31T22:16:10Z <p>I want to use up/down icons like the ones used by "mail" in the upper-right corner when you're viewing a specific message. Are these icons available for free anywhere?</p> <p>Beyond that, are there any sites with free navigation bar, toolbar, or tab bar icons?</p> <p>Thank you!</p> http://stackoverflow.com/questions/1654381/how-can-i-add-a-wxicon-to-my-frame-app 2 How can I add a wxIcon to my frame app? Mikey 2009-10-31T13:22:38Z 2009-10-31T13:59:32Z <p>I've looked all over the net and can't seem to find a standard way of including a wxIcon in my wxWidgets app that actually works! I've tried converting the icon to an XPM and including that I've also tried loading the bitmap but whatever I do it seems to compile but the icon never appears!</p> http://stackoverflow.com/questions/1638592/gnome-icons-pack 0 Gnome icons pack eyalw 2009-10-28T16:56:50Z 2009-10-31T00:58:41Z <p>Does anyone know where can i find this icon set for download (pngs + svgs) <a href="http://www.iconspedia.com/search/gnome/0/" rel="nofollow">http://www.iconspedia.com/search/gnome/0/</a></p> <p>and also, is the icons license allows it to be used in commercial applications?</p> http://stackoverflow.com/questions/261559/higher-color-depth-for-mfc-toolbar-icons 4 Higher color depth for MFC toolbar icons? Whyamistilltyping 2008-11-04T11:16:28Z 2009-10-28T22:32:20Z <p>Hi all,</p> <p>I was wondering how to make a toolbar in MFC that used 24bit or 256 colour bitmaps rather than the horrible 16 colour ones.</p> <p>Can anyone point me in the direction of some simple code?</p> <p>Thanks</p> http://stackoverflow.com/questions/1628463/how-to-put-a-c-programm-ex-wpf-or-wf-or-with-mono-under-desctop-icons-like-a 0 How to put a C# programm (ex WPF or WF or with Mono) under desctop Icons (like a wallpaper)? Ole Jak 2009-10-27T02:27:02Z 2009-10-27T23:26:56Z <p>How to put a C# programm (ex WPF or WF) under desctop Icons (like a wallpaper)?</p> <ul> <li><p>I want my Old Good XP Active Desktop made by a some open source C# programm on my Win 7!)</p></li> <li><p>Something like this - <strong><a href="http://www.stardock.com/products/fences/" rel="nofollow">Fences</a></strong> . They have there "windows" appearing underneath icons. I do not want to manage Icons - just put my window under them... BTW any one knows about such operations in other OS’s (Mac etc)?</p></li> <li><p>And I DO NOT WANT TO MANAGE ALL THE ICONS ON MY OWN LIKE <strong><a href="http://bumptop.com/" rel="nofollow">bumptop</a></strong></p></li> </ul> http://stackoverflow.com/questions/1628552/getting-large-file-and-folder-icons-on-a-mac 0 Getting large file and folder icons on a Mac Oscar Reyes 2009-10-27T03:02:48Z 2009-10-27T03:02:48Z <p>This <a href="http://nadeausoftware.com/articles/2008/12/mac%5Fjava%5Ftip%5Fhow%5Faccess%5Faqua%5Ffile%5Fand%5Ffolder%5Ficons" rel="nofollow">article</a> says:</p> <blockquote> <p><em>At this time, there is no public API for getting larger file and folder icons from Java on a Mac.</em></p> </blockquote> <p>That was on Dec 2008 and for Java 1.5 </p> <p>Is there a way to access larger file folders from Java on a Mac in the latest release?</p> http://stackoverflow.com/questions/1551566/how-to-set-the-icon-property-in-code-how-to-understand-the-way-it-is-done-in-xam 0 How to set the Icon property in code? How to understand the way it is done in XAML? Dabblernl 2009-10-11T19:42:21Z 2009-10-26T22:33:02Z <p>When I choose an Icon for a wpf Window through the designer I get the following XAML:</p> <pre><code>&lt;Window Icon="/MyNameSpace;component/myIcon.ico"&gt; </code></pre> <p>Please explain this notation for me!</p> <p>Say I want to set the Icon in the code behind. How do I translate the XAML to C#?</p> http://stackoverflow.com/questions/1614689/how-to-display-the-copyright-icon-in-uilabel-text 1 How to display the copyright icon in UILabel text? Neeraj 2009-10-23T16:55:09Z 2009-10-26T05:21:12Z <p>Hi, Does any one know how to display the copyright icon in UILabel text? This is the icon with a circle around c. The html code for it is: <code>&amp;copy;</code> or <code>&amp;#169;</code>.</p> <p>I tried the following code:</p> <pre><code>UILabel *contactInfo = [[UILabel alloc] initWithFrame:CGRectMake(-55,135,420,100)]; contactInfo.text = @"'&amp;#169;):'2009 Nationwide "; </code></pre> <p>or</p> <pre><code>contactInfo.text = @"'&amp;copy;'2009 Nationwide "; </code></pre> <p>or</p> <pre><code>contactInfo.text = @"&amp;copy;2009 Nationwide "; </code></pre> <p>It just prints everything as text and no icon.</p> <p>This would work in a webView but I need it as UILabel text. Any help?</p> http://stackoverflow.com/questions/90697/how-to-create-and-use-resources-in-c-net-vs-2008 5 How to create and use resources in C#.NET (VS 2008) Matthew Scharley 2008-09-18T07:21:24Z 2009-10-24T13:23:54Z <p>How do I create a resource that I can reference and use in various parts of my program easily?</p> <p>My specific problem is that I have a NotifyIcon that I want to change the icon of depending on the state of the program. A common problem, but one I've been struggling with for a long time. Pointers on where to look are appreciated!</p> http://stackoverflow.com/questions/1614586/change-google-maps-infowindow-close-icon 3 Change Google Maps Infowindow Close Icon David 2009-10-23T16:35:11Z 2009-10-23T18:56:19Z <p>How can I change the default graphic for the Infowindow close button?</p> http://stackoverflow.com/questions/1599622/free-media-resources-useful-for-programmers 0 free media resources useful for programmers dole doug 2009-10-21T09:11:32Z 2009-10-21T10:17:08Z <p>Hi there</p> <p>I've started recently to learn C# and to build some desktop applications. Now I'm asking myself where can I find free icons, wav and small mp3 files which can be used in my applications.</p> <p>many thanks</p> http://stackoverflow.com/questions/270361/where-can-i-find-free-weather-icons 1 Where can I find Free Weather Icons? Kyle Trauberman 2008-11-06T21:29:57Z 2009-10-19T19:31:53Z <p>Related to <a href="http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images">http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images</a></p> <p>I have a need for free icons relating to weather. Specifically, I need icons that you might see in a 10-day forecast (Clear Day/Night, Rainy Day/Night, etc.) Where could I find such images?</p> <p><strong>Requirements: Like the linked question above, I would prefer to not rip anyone's intellectual property off.</strong></p> http://stackoverflow.com/questions/1577219/iphone-add-badge-to-icons-internal-to-my-app 0 iPhone: add badge to icons internal to my app viji 2009-10-16T10:05:27Z 2009-10-16T10:25:10Z <p>Hi, I am trying to add badges to the icons in my app. e.g. in the facebook app, in the home page the number of pending requests is shown on the requests icon. </p> <p>Can someone provide any links/ideas on how to do this?</p> <p>Thanks, V</p> http://stackoverflow.com/questions/1561336/what-do-the-icons-in-eclipse-mean 2 What do the icons in Eclipse mean? Lord Torgamus 2009-10-13T16:21:09Z 2009-10-14T01:57:51Z <p>What do the icons in the Eclipse debugger mean?<br /> What do the icons in Eclipse's Package Explorer mean?<br /> What do the little letters on top of Eclipse icons mean?<br /> What's the difference between the two error icons in Eclipse (the x in the red circle and the one with the light bulb)?</p> <p>I just came to SO looking for this, didn't find it, and found it on my own elsewhere. But I thought it would be good for SO to have the answer for future reference; I wondered about them all the time when I was new to Eclipse (this was before I discovered SO). This post is community wiki, because people like different amounts of detail in their explanations and so it doesn't start a "you're fishing for rep" war.</p> http://stackoverflow.com/questions/1555487/winforms-console-application-how-can-i-embed-an-icon-in-exe-file 2 Winforms console application, how can I embed an icon in exe file? JL 2009-10-12T16:16:30Z 2009-10-12T19:21:25Z <p>I have a console application, I want to include an ico file as an embedded resource in the exe, then have it as the programs icon in windows explorer, how is this done?</p>