Type INITCOMMONCONTROLSEX_TYPE
dwSize As Long
dwICC As Long
End Type
The INITCOMMONCONTROLSEX_TYPE structure tells InitCommonControlsEx which common control classes to register. The structure holds a combination of flags specifying which classes are wanted.
Officially, the name of this structure is INITCOMMONCONTROLSEX (all capitals). However, since Visual Basic is case-insensitive, that name conflicts with the InitCommonControlsEx API function. Therefore, it is necessary to give it a different name -- in this case, by appending _TYPE to the end.
Const ICC_ANIMATE_CLASS = &H80
Const ICC_BAR_CLASSES = &H4
Const ICC_COOL_CLASSES = &H400
Const ICC_DATE_CLASSES = &H100
Const ICC_HOTKEY_CLASS = &H40
Const ICC_INTERNET_CLASSES = &H800
Const ICC_LISTVIEW_CLASSES = &H1
Const ICC_PAGESCROLLER_CLASS = &H1000
Const ICC_PROGRESS_CLASS = &H20
Const ICC_TAB_CLASSES = &H8
Const ICC_TREEVIEW_CLASSES = &H2
Const ICC_UPDOWN_CLASS = &H10
Const ICC_USEREX_CLASSES = &H200
Const ICC_WIN95_CLASSES = &HFF
Back to the Structure list.
Back to the Reference section.
Last Modified: October 29, 2000
This page is copyright © 2000 Paul Kuliniewicz.
Copyright Information Revised October 29, 2000
Go back to the Windows API Guide home page.
E-mail: vbapi@vbapi.com Send Encrypted E-Mail
This page is at http://www.vbapi.com/ref/i/initcommoncontrolsex.html