Share via


TB_ADDBITMAP (Windows CE 5.0)

Send Feedback

This message adds one or more images to the list of button images available for a toolbar.

TB_ADDBITMAPwParam= (WPARAM)nButtons;lParam= (LPARAM)(LPTBADDBITMAP)lptbab;

Parameters

  • wParam
    Not used.
  • nButtons
    Number of button images in the bitmap. If lptbab specifies a system-defined bitmap, this parameter is ignored.
  • lptbab
    Long pointer to a TBADDBITMAP structure that contains the identifier of a bitmap resource and the handle to the module instance with the executable file that contains the bitmap resource.

Return Values

The index of the first new image indicates success. –1 indicates failure.

Remarks

The bitmap specified in the lptbab parameter can contain multiple images. The number of images in the bitmap must be specified in the nButtons parameter.

The bitmap width should be nButtons multiplied by the image width, and the bitmap height should be equal to the image height.

The default image width is 16 pixels and the default image height is 15 pixels. The default image width and height can be changed using TB_SETBITMAPSIZE. If the size of the bitmap is not the default or if you have multiple images in a bitmap, you must call TB_SETBITMAPSIZE to change the default size settings.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.

See Also

CreateWindowEx | TBADDBITMAP | TB_BUTTONSTRUCTSIZE | TB_SETBITMAPSIZE | Toolbar Controls Messages

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.