Hi all
How to create a toolbar at win32 application?
Printable View
Hi all
How to create a toolbar at win32 application?
You can't have toolbars in a console application. The whole point of console applications is to use consoles instead of windows.
Toolbar is one of the windows common controls. It has a class name defined as TOOLBARCLASSNAME that may become ToolbarWindow ToolbarWindow32 ANSI or ToolbarWindow32 UNICODE.
Creating toolbar is not an easy task; it requires lots of coding. First you create window of a toolbar class and after loading resource (bitmap) use send messages to set buttons. I am sure you will be able to find some sample code in WWW. Explaining it here falls beyond a scope of this forum.