Originally posted by: A. Roth
When i dock a toolbar verically on a main frame, the tool bar goes to the bottom to the frame window, but it should only goes to the begin of the status bar.
ReplyOriginally posted by: Vasily
Try make your classes without using any libs/dll - as simple source files - its not worked with vc 6.0
ReplyOriginally posted by: Xu Xiangyang
Yours,
Xu XIangyang
Hi,
A very good source code!But when I add TEXT on the flat toolbar,
It does not display.
(ie,
m_wndToolBar.SetButtonText( 0, "New" );
)
Do you have any solutions?
Originally posted by: Karim Shehadeh
When the menu bar is vertically docked, top-level menu items mysteriously disappear when you select them (but
only sometimes). I'm running Windows 98.
Originally posted by: Andrew Hilton
"NGenericPopup.cpp"
To get the submenus working correctly replace
m_pParent->PostMessage(WM_COMMAND,nID,NULL);
with
::PostMessage(AfxGetMainWnd( )->GetSafeHwnd( ) ,WM_COMMAND,nID,NULL);
in functions
OnLButtonUp
KeyboardFilter
This gets both mouse and accelerator key submenus functioning
ReplyOriginally posted by: lemon hill
I am from China;I can't download the the source code completely
I download it by netants FTP.It can only download 203K while the website
says It is 287K.So I can't unzip the file.
Originally posted by: Geoff Ferris
you need to modify "NGenericPopup.cpp"
change from
m_pParent->PostMessage(WM_COMMAND,nID,NULL);
to
m_pToolbar->PostMessage(WM_COMMAND,nID,NULL);
this fixed select item from submenu
I have not yet solved accelerator problem.