
Where do I find the values of constants?
Michael,
Quote:
>Does any body know where u find the value of constants such as
Some of them are declared in the win32api.txt file that is included
with VB, and can be retrieved using the API Viewer add-in. To find
constants not listed there, you can check in the C++ header files
included in the Platform SDK.
http://www.*-*-*.com/
You might also want to check out this page to learn how to translate
the contents of the header files to VB.
http://www.*-*-*.com/
Quote:
>TBSTYLE_HOTTRACK
There's no style flag with that name, at least not that I can find.
Quote:
>TBSTYLE_DROPDOWN
This one can be found in Commctrl.h
Const TBSTYLE_DROPDOWN = &H8&
However, Microsoft has renamed that flag recently, and it should now
be
Const BTNS_DROPDOWN = &H8&
Mattias
__________________________________________________
VB+ http://www.*-*-*.com/
Please send questions/replies to the newsgroups