CreateToolbarEx (Windows CE 5.0)
This function creates a toolbar window and adds the specified buttons to the toolbar.
HWND CreateToolbarEx(HWNDhwnd, DWORDws, UINTwID, intnBitmaps, HINSTANCEhBMInst, UINTwBMID, LPCTBBUTTONlpButtons, intiNumButtons, intdxButton, intdyButton, intdxBitmap, intdyBitmap, UINT uStructSize );
Parameters
- hwnd
[in] Handle to the parent window for the toolbar. - ws
[in] Specifies the window styles for the toolbar. This parameter must specify at least the WS_CHILD style. - wID
[in] Control identifier for the toolbar. - nBitmaps
[in] Number of button images contained in the bitmap specified by hBMInst and wBMID. - hBMInst
[in] Handle to the module instance with the executable file that contains the bitmap resource. - wBMID
[in] Resource identifier for the bitmap resource. If hBMInst is NULL, this parameter must be a valid bitmap handle. - lpButtons
[in] Long pointer to an array of TBBUTTON structures that contain information about the buttons to add to the toolbar. - iNumButtons
[in] Number of buttons to add to the toolbar. - dxButton
[in] Specifies the width, in pixels, of the buttons to add to the toolbar. - dyButton
[in] Specifies the height, in pixels, of the buttons to add to the toolbar. - dxBitmap
[in] Specifies the width, in pixels, of the button images to add to the buttons in the toolbar. - dyBitmap
[in] Specifies the height, in pixels, of the button images to add to the buttons in the toolbar. - uStructSize
[in] Unsigned integer that contains the size of a TBBUTTON structure.
Return Values
The window handle to the toolbar indicates success. NULL indicates failure. To get extended error information, call GetLastError.
Requirements
OS Versions: Windows CE 2.0 and later.
Header: Commctrl.h.
See Also
TBBUTTON | Toolbar Controls Functions
Send Feedback on this topic to the authors