|
-
Sep 21st, 2001, 01:19 PM
#1
Thread Starter
Addicted Member
Constants
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.
Always looking for a better and faster way!
-
Sep 21st, 2001, 01:41 PM
#2
I don't believe I've ever seen these before? What are they used in connection with?
-
Sep 21st, 2001, 01:43 PM
#3
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
-
Sep 21st, 2001, 01:46 PM
#4
I guess I don't get out much.
Anyway, my original question remains...what would they be used with?
-
Sep 21st, 2001, 02:06 PM
#5
Thread Starter
Addicted Member
Oops, I forgot about the TBBUTTON structure, anyone know that?
VB Code:
Private Type TBBUTTON
'Stuff
End Type
Always looking for a better and faster way!
-
Oct 31st, 2001, 02:02 PM
#6
Thread Starter
Addicted Member
They are used to create a toolbar using the api.
I still need the TBBUTTON structure.. ANYONE?
Always looking for a better and faster way!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|