i need some values for:
TB_BUTTONSTRUCTSIZE
TB_BUTTONCOUNT
TBSTATE_ENABLED
TBSTYLE_BUTTON
or if ya know where i can get them, let me know.
Printable View
i need some values for:
TB_BUTTONSTRUCTSIZE
TB_BUTTONCOUNT
TBSTATE_ENABLED
TBSTYLE_BUTTON
or if ya know where i can get them, let me know.
I don't believe I've ever seen these before? What are they used in connection with?
VB Code:
Const WM_USER = &H400 Const TB_BUTTONSTRUCTSIZE = (WM_USER + 30) Const TB_BUTTONCOUNT = (WM_USER + 24) Const TBSTATE_ENABLED = &H4 Const TBSTYLE_BUTTON = &H0
I guess I don't get out much.
Anyway, my original question remains...what would they be used with?
Oops, I forgot about the TBBUTTON structure, anyone know that?
VB Code:
Private Type TBBUTTON 'Stuff End Type
They are used to create a toolbar using the api.
I still need the TBBUTTON structure.. ANYONE?