Originally posted by: Raghunath
Is it possible to draw separators when toolbar is vertically docked.
ReplyOriginally posted by: Anton
I add FrameEnableDocking() into my code and got error "unknown identifier"...
What I should to do?
Thanks
ReplyOriginally posted by: Shabbir Taiyabi
I want to know that the toolbar which is created by MFC can how be simply implemented on SDK platform.
Originally posted by: jauwaad
Drop down arrows using style TBSTYLE_EX_DRAWDDARROWS doesn't draw. does anyone know how to fix this bug.
ReplyOriginally posted by: Sreenivasulu
My problem is I need to Change the Bitmap and Text Dynamically for the toolbar buttons.
For Ex: The print icon is there on the toolbar.Now we need to allow the user to change the print icon to some other icon by choosing someicon file at runtime.
if anyoneknows how to do it Help me otherwise give me some reference where can i get the material for this type of application.
ReplyOriginally posted by: Joel Bierling
If you look at your example app and move an open file dialog box from top to bottom over the toolbar you'll notice the buttons don't get redrawn correctly (the buttons get left in an up position).
You can fix this by changing line 398 from:
BOOL bHasCursor = rc.PtInRect(cursor);
to:
BOOL bHasCursor = rc.PtInRect(cursor) && GetActiveWindow() == GetParent();
Also something I haven't found a good fix for yet is that moving a window (open file for example) from right to left or bottom to top over the toolbar messes up the display (the background doesn't get drawn right) of disabled toolbar buttons. The only thing that fixes this is to disable the embossing code in DrawDisabledButton().
This is under NT4 SP6.
Originally posted by: Dirk Schlageter
This sample application has the same problem that i have.
When i grap a toolbar and drag it out so that it has its own frame(floated ?) and push the x to close. How can i bring it back without starting again?
Originally posted by: DRider
I add FrameEnableDocking() into my code and got error "unknown identifier"... What is wrong?
Thanks
Originally posted by: Louis Daoust
I've been using CToolBarEx for a while but now I would need to be able to display a dropdown arrow beside a button like the ones supported in the toolbar in the new common controls. Can this be added ?
Thanks,
Louis.
Originally posted by: zbliu
Use LoadBarState() In MainFrame's OnCreate() Function When Have two ToolBarEx Bar,seriously Error reported
when program runing.
How To DO?