|
-
May 19th, 2000, 01:17 AM
#1
Thread Starter
Lively Member
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?
-
May 19th, 2000, 07:00 PM
#2
how about creating an activex user control?
-
May 20th, 2000, 12:32 AM
#3
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
-
Jul 3rd, 2000, 02:35 AM
#4
Junior Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|