The information in this article applies to:
SUMMARYSeveral Windows API functions require the HBITMAP data type. Visual Basic for Windows does not have a HBITMAP data type. This article explains how to send the equivalent Visual Basic for Windows HBITMAP handle of a picture control to a Windows API function call. MORE INFORMATION
This information is also included with the Microsoft Knowledge Base Help
file provided with the Professional Edition of Microsoft Visual Basic
version 3.0 for Windows.
The HBITMAP data type represents a 16-bit index to GDIs physical
drawing object. Several Windows API routines need the HBITMAP data
type as an argument. Sending the [picture-control].Picture as an
argument is the equivalent in Visual Basic for Windows.
The SetMenuItemBitMap takes five arguments. The fourth and fifth arguments are HBITMAP data types. The following code segment will associate the specified bitmap Picture1.Picture in place of the default check mark: X% = SetMenuItemBitMap(hMenu%, menuID%,0,0, Picture1.Picture) Additional query words: 2.00 3.00
Keywords : |
Last Reviewed: June 24, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |