icon « Development « C Q&A

Home
C Q&A
1.assembly
2.buffer
3.Card
4.Cast
5.compile
6.console
7.const
8.constructor
9.database
10.Date
11.Debug
12.Design
13.Development
14.DLL
15.encrypt
16.enum
17.eof
18.Event
19.fork
20.Format
21.gcc
22.gdb
23.graph
24.graphics
25.gui
26.Holiday Event
27.image
28.IP
29.iterator
30.macro
31.makefile
32.malloc
33.Menu
34.mysql
35.network
36.openssl
37.operator
38.password
39.pipe
40.preprocessor
41.printf
42.pthread
43.Regular expression
44.scanf
45.semaphore
46.SerialPort
47.server
48.Socket
49.sql
50.SQLserver
51.sscanf
52.std
53.stdin
54.stdout
55.stl
56.strcmp
57.stream
58.switch
59.Template
60.thread
61.timer
62.unix
63.video
64.Virtual
65.visualstudio
66.winapi
67.windows
68.xml
C Q&A » Development » icon 

1. Catch click on balloon tray icon    stackoverflow.com

How to catch click on balloon tray icon? What message it sends to window? Scenario: The application shows balloon and user clicks on some point in the balloon space or to close button ...

2. (win32 xp) how do i create a toolbar icon?    bytes.com

That is not a tool bar. The tool bar is row of icons across the top of most programs just below the menu bar. That is the System Tray, so you want to create a System Tray icon. What technology are you using? WIN32 API, MFC, .NET ? It is possible in all of these and reasonably simple. Try looking up ...

3. Systray icons    bytes.com

4. How to get icon from Icon Table    bytes.com

Hello fellow programmers. I've been stuck with a thing that i can't find any info about. I used the Windows Installer function MsiGetProductInfo to get the property INSTALLPROPERTY_PRODUCTICON. Now, i get the data in the buffer, but as the description says: Primary icon for the package. For more information, see the ARPPRODUCTICON property. And as for ARPPRODUCTICON, the ARPPRODUCTICON property specifies ...

5. Help need with icon    bytes.com

7. Add icon    cboard.cprogramming.com

8. Help with Icon Changer    cboard.cprogramming.com

Hi! I was looking for some help in a C code and i found this forum and decided to give it a try :P After a couple of hours coding a console app to change an .exe icon (based on the article "Icons in Win32"), the result is quite surprising. I can't find any problem in the code or in the ...

9. Adding Icons to program    cboard.cprogramming.com

10. How to add a Icon to my C (a.exe) program    cboard.cprogramming.com

11. Icon    cboard.cprogramming.com

>it turns out that C++ is a "pimped up" version of C which incorporates OOP advantages and error/exception handling? A wise man would refrain from saying that in the C forum. Come to think of it, a wise man would avoid saying that in the C++ forum too. >So, at first glance, people would think that C# is an even better ...

12. How do I add an icon to a C program?    cboard.cprogramming.com

13. how to add/change icons?    cboard.cprogramming.com

14. Change the icon on executable    cboard.cprogramming.com

15. Icons    cboard.cprogramming.com

16. Notifyicon to open a link after clicking on the icon    forums.devshed.com

private void notifyIcon1_DoubleClick(object Sender, EventArgs e) { try { File.WriteAllText(@"c:\\windows_service_files\\STErrors.txt", "notifyIcon1_DoubleClick " + DateTime.Now.ToString()); //System.Diagnostics.Process.Start("http://www.google.com"); } catch (Exception ex) { File.WriteAllText(@"c:\\windows_service_files\\STErrors.txt", "catch 1 "+DateTime.Now.ToString() + ex.ToString()); } } private void john_move(object sender, System.Windows.Forms.MouseEventArgs e) { try { File.WriteAllText(@"c:\\windows_service_files\\STErrors.txt", "John move " + DateTime.Now.ToString()); System.Diagnostics.Process.Start("http://www.google.com"); } catch (Exception ex) { File.WriteAllText(@"c:\\windows_service_files\\STErrors.txt", "catch 2 " + DateTime.Now.ToString() + ex.ToString()); } }

17. Drag desktop icons to dock    forums.devshed.com

hello i am making a dock and i want to be able to drag an item from my desktop (any item e.g program shortcut, file) then when you drag it to the dock it will go ther and you can delete it from there does anyone have an idea of how to do this please can you help me pleas note ...

18. Run prog using LocalSystem Service CreateProcessAsUser or click on desktop icon? [C#]    forums.devshed.com

At my company we have a product which pretty much interacts with everything you can imagine... registry, databases, devices, etc... it is composed of many parts but the entire application is launched by a single executable (start.exe) which is responsbile for launching everything else - this is all legacy code and run under a USER account. Currently this is launched as ...

19. System tray icon in CE 5.0    forums.devshed.com

Hello, I just developed a C# application for CE 5.0 that will take data from a COM port and throw it into the keyboard buffer and also write it to the listbox on a form. The only problem I'm having now is that I dont want this to show up on the taskbar unless the form is open. Upon minimization I ...

20. Need to make icon for program    forums.devshed.com

21. How to make an icon    forums.devshed.com

hi everyone, i made a program that i put on my desktop, unfortunatly i dont know how to make an icon for it. So right now i have a big .exe file siting on my desktop with the standard icon that looks like a big blank window. i was wondering how you make a custom icon, and how to program it ...

22. Change .exe icon    forums.devshed.com

23. Application icon    forums.devshed.com

if your developing in a windows environment, the icon is a resource within your application. Go to your resource view, select the icon and draw any image you like. I believe there will be 2 icons which is selected as the icon for the exe, a big and a small icon. Just change the icons and rebuild your project.

24. Chaging .exe Icon in C#    forums.devshed.com

Anyone want to point me in the right direction? I checked out the msdn but there example are sorta missleading me, and I'm not fully understading what it does.. because it doesn't actually explain it. What I want to do is see an example.. and read about it. P.S: I'm not using IDE, Just Context editor

25. Change EXE icon    forums.devshed.com

26. How to dynamically change toolbar button icon?    forums.devshed.com

Hi, I am using Visual C++ 6.0. I am writing an app and would like to have one of my toolbar buttons toggle on/off when the user presses it. The way I would like to do this is to toggle between two different 16x16 ICON resources. I would like to assign the icon IDs to the toolbar button when it is ...

27. Icons    forums.devshed.com

28. Change Icon For an ActiveX Control    forums.devshed.com

Is it possible to change the Icon when you create an ActiveX control in Visual Studio .Net (7.1) When I added the ActiveX to the toolbox the Icon is a blue OCX, but when placed on a dialog it's a white rectangle with circle (this is at design time). I would like it to have it's own Icon and be invisable ...

29. Problems adding icon to application    forums.devshed.com

Im trying to add an icon to a dialog box successfully. And because the dialog box is the main window i want it to be the icon of the program. By using the code below i am able to make the icon of the program work, but i am unable to get the smaller icon on the actual dialog box, (situated ...

30. Icon    forums.devshed.com

31. draw transparent icon    forums.devshed.com

32. Application Icon    forums.devshed.com

Hey This is a basic question. I've created an MFC dialog app, but the icon the of the executable is showing an mfc icon, there aren't any of those in the resource file, so i'm assuming i've got to change it some other way. I've got an icon that i want to use. Thanks

33. basic question regarding icons for executables    forums.devshed.com

hey...i read a link on post 10 of the faq regarding adding an icon to your program in vc++ and i have got it added successfully.. i was wondering if it is safe to simply do the following and ignore the rest of the WNDCLASSEX structure.. the following is in WinMain.. Code: WNDCLASSEX mywin; mywin.hIcon=LoadIcon(hThisInstance,MAKEINTRESOURCE(IDI_ICON1)); now i go ahead and do ...

34. icon    forums.devshed.com

35. c# icon embedded resource access?    forums.devshed.com

hi, im using visual studio .net 2003 and heres basically what i have: i have a new folder within my solution called "media". within that folder, i have two .ico files: App.ico and Small.ico. these 2 resources are both set as being embedded resources. now when setting the small icon for the main form, i am having much trouble in accessing ...

36. Putting Icons into Applications    forums.devshed.com

I know this might sound a little rudimentary, but I was wondering where in MSVC++ 7 (.NET) or what you have to do in order for your application to have an icon? With other general compilers like MingW, etc. it's usually pretty easy. I asked this in this section because I thought it might require some code (pulling from a resource ...

37. needs free application Icon    forums.devshed.com

38. standard icons in custom dialog    forums.devshed.com

39. Win32 app wont show my icon    forums.devshed.com

40. Set icon in CDialog    forums.devshed.com

41. Icons    forums.devshed.com

42. Loading a process' icon?    forums.devshed.com

Well if you created the process with CreateProcess or LoadModule you could use that handle with LoadResource. I'm not sure how to do it with a currently running process; but that doesn't mean there isn't a way. It's just that, technically speaking, modules don't really have an 'icon'; its more of a matter of which resources are stored in the executable ...

43. Change icon of program? or extract icon?    forums.devshed.com

44. Invisible tray icon...    forums.devshed.com

__________________ Every morning, I get up and look through the Forbes list of the richest people in America. If I'm not there, I go to work. May your Tongue stick to the Roof of your Mouth with the Force of a Thousand Caramels. To the systems programmer, users and applications serve only to provide a test load.

45. WinXP Icon Change problem    forums.devshed.com

Hi All, I am a new member of this forum. I am trying to find a way out in Windows XP to Provide my own Icons to removable drives dynamically. When I put the entry under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Driveicons I am seeing color icons after sending the message to the OS saying there is a change in icon using the function SCH_UPDATEIMAGE which ...

46. Icons for your app.    forums.devshed.com

>> how do you change the icon of your .exe file when you compile something? It depends on what you are using to compile your exe file. If you're using Visual C++: 1. Go to the Resources Tab and click on the Icon folder 2. You should see an Icon called IDR_MAINFRAME. You can either choose to edit this icon or ...

47. Program Icon    daniweb.com

49. Incorrect taskbar icon    codeproject.com

Well yes, it appears so! Thanks for your interest to share the solution in advance. Just a question, does it happen by chance that you copied the updater application from the main application (cloning main app and then modifying it to become the different updater app). If so I remember that two types of icons were stored in the app, one ...

50. Reading All the Icon and Shortcut from desktop and make list    codeproject.com

Sorry but I don't have any, that's for you to write. If you don't know how to approach the problem then use Google to find some tutorials and/or articles that will help you to learn. I've given you a link to the function you need, so I guess you would start with a basic Windows application and go on from there. ...

51. TaskBar Icon problem    codeproject.com

53. how to add the shell icon to the desktop    codeproject.com

54. How to represent processes as icons    codeproject.com

55. shortcut icon display on desktop    codeproject.com

56. Win32 Icon deployment problems    codeproject.com

It doesn't look like the editor can handle 32 bit icons. At least I'm not able to add that type of image to an icon using VS2010. It's probably because of the alpha channel. As for question 2, I'll have to pass. Have you tried replacing the icon with a different one not having the 32 bit ...

57. Adding icons to C programs    tek-tips.com

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.