tags:

views:

59

answers:

3

I want to add a toolbar and know which tool was clicked. I'd also like to be able to change the toolbar's buttons' bitmap after theyve been created MSDN is fairly breif on all of this. Thanks

+1  A: 

You might want to check out these tutorials.

Grz, Kris.

XIII
+1  A: 

If you like to learn by example then you may find this code useful. It's a Windows toolbar wrapper class I created some time ago. It's somewhat advanced though because it uses Custom Draw.

WindowsToolbar.h
WindowsToolbar.cpp
WindowsToolbarItem.h
WindowsToolbarItem.cpp

StackedCrooked