Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Application Icons?

Status
Not open for further replies.

baden

Programmer
Feb 6, 2002
125
US
Where can I download a package of free-to-use application icons ie, copy, paste, move, save, ... etc.

Different schemas would be nice - KDE, etc.

Thanks.
 
Hi,

In case you wish to use them for a toolbar, the toolbar has it's own standard icon's like new document, copy, paste, etc. About all basic office icons and browser icons. You can use them by sending the TB_LOADIMAGES message.

[tt]
Loads system-defined button images into a toolbar control's image list.

TB_LOADIMAGES
wParam = (WPARAM)(INT) iBitmapID;
lParam = (LPARAM)(HINSTANCE) hinst;

Parameters
iBitmapID
Identifier of a system-defined button image list. This parameter can be set to one of the following values. IDB_HIST_LARGE_COLOR Microsoft® Windows® Explorer bitmaps in large size.
IDB_HIST_SMALL_COLOR Microsoft® Windows® Explorer bitmaps in small size.
IDB_STD_LARGE_COLOR Standard bitmaps in large size.
IDB_STD_SMALL_COLOR Standard bitmaps in small size.
IDB_VIEW_LARGE_COLOR View bitmaps in large size.
IDB_VIEW_SMALL_COLOR View bitmaps in small size.

hinst
Instance handle. This parameter must be set to HINST_COMMCTRL.
[/tt]

If this is not the case, then you could download a resource viewer and take a look at some programs like office or so. Most of the times it contains a bitmap in the resources containing all the icons, which you can easily extract.

LuCkY
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top