Hi, there

My toolbar has 24 items, and each of them has size (43, 49) as button size, size (35, 19) as image size. Only about 15 items are shown correctly. The others are chopped after a | symbol
My code is
m_wndToolBar.Create(this, WS_CHILD | WS_VISIBLE | CBRS_TO
| CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC)
m_wndToolBar.LoadToolBar(IDR_TOOLBAR)
m_wndToolBar.SetButtonText(0, _T("Open 0"))
m_wndToolBar.SetButtonText(1, _T("Save 0"))
m_wndToolBar.SetButtonText(2, _T("ZoomIn 0"))
.............................................................................
m_wndToolBar.SetSizes(CSize(43, 49), CSize(35, 19))

What is the problem here? How to extend the toolbar length

Thanks in advance

Gary