Results 1 to 6 of 6

Thread: Constants

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Oct 2000
    Location
    Orlando, FL
    Posts
    253

    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!

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333
    I don't believe I've ever seen these before? What are they used in connection with?

  3. #3
    Matthew Gates
    Guest
    VB Code:
    1. Const WM_USER = &H400
    2. Const TB_BUTTONSTRUCTSIZE = (WM_USER + 30)
    3. Const TB_BUTTONCOUNT = (WM_USER + 24)
    4. Const TBSTATE_ENABLED = &H4
    5. Const TBSTYLE_BUTTON = &H0

  4. #4
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333
    I guess I don't get out much.

    Anyway, my original question remains...what would they be used with?

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Oct 2000
    Location
    Orlando, FL
    Posts
    253
    Oops, I forgot about the TBBUTTON structure, anyone know that?

    VB Code:
    1. Private Type TBBUTTON
    2.     'Stuff
    3. End Type
    Always looking for a better and faster way!

  6. #6

    Thread Starter
    Addicted Member
    Join Date
    Oct 2000
    Location
    Orlando, FL
    Posts
    253
    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
  •  



Click Here to Expand Forum to Full Width