Results 1 to 4 of 4

Thread: Menu in Coolbar?

  1. #1

    Thread Starter
    Lively Member Nator's Avatar
    Join Date
    Nov 1999
    Location
    East Larryville, GA
    Posts
    80
    Does anyone know how to put the menu of a form into a coolbar (much like all the MS Apps)? I've tried putting a standard toolbar as a child to a coolbar band and setting the button style to "drop down menu", but it's not giving me the same look as the menues IE, VB, Office, etc. have. Another question I have is can this be done if I am using an MDI?

  2. #2
    Guest
    how about creating an activex user control?

  3. #3
    Guest
    Code:
    Private Sub cmdMenu_Click(Index As Integer)
    Select Case Index
    Case 0
    frmChat.PopupMenu mnuOptions, , 400, 360
    Case 1
    frmChat.PopupMenu mnuFile, , 1480, 360
    End Select
    End Sub

    this was for a chat prog i am working on.

    make the menus....
    have all of the items visible, but the main part(example, File, Edit, Favorites, etc.) not visible...
    then set where you want the menu to popup which is the 400,360, and the 1480, 360
    I hope this is what you were looking for

  4. #4
    Junior Member
    Join Date
    Apr 2000
    Posts
    27

    Answer Is HERE! :)

    I've seen what you're looking for.. and i've worked with it...

    Source code is available on http://www.vbacellerator.com somewhere
    Life's hard, but the front of a train is harder

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