Toolbar event

  • Thread starter Thread starter Hai Ly Hoang
  • Start date Start date
H

Hai Ly Hoang

Hi,
I have created an incon in the toolbar.
But how to add event-handler to my new button (i'm using Visual Studio .NET)

Thanks
 
Hai said:
Hi,
I have created an incon in the toolbar.
But how to add event-handler to my new button (i'm using Visual Studio .NET)

Thanks

When you created the toolbar button you assigned an ID to it, such as
ID_SOME_THING. Open the properties list for the window class that
should handle the click, find the ID in the list of window "Events", and
click to add a COMMAND handler for it.
 
Back
Top