Results 1 to 3 of 3

Thread: Menu Mania...

  1. #1

    Thread Starter
    Hyperactive Member CyberSurfer's Avatar
    Join Date
    Aug 2000
    Location
    Old London Town
    Posts
    425

    Exclamation

    Here's my problem.....

    I've made my own title bar for my project, consisting of a shape and three image boxes. How do I make the VB Menus (ie ones I create) sit below the title bar? Failing a solution to this, how do I make my own menu, with pop up submenus etc..

    Pleeeease help!

    THX!

  2. #2
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    Code:
    Option Explicit 
    
    Private Sub Form_Load() 
       mnuPop.Visible = False 
    End Sub 
    
    Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) 
        If KeyCode = 93 Then 
            'fire up the popup menu 
            PopupMenu mnuPop, 2, 60, 60 
        End If 
    End Sub 
    
    Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single) 
        If Button = vbRightButton Then 
            'fire up the popup menu 
            PopupMenu mnuPop, 2, X, Y 
        End If 
    End Sub
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

  3. #3

    Thread Starter
    Hyperactive Member CyberSurfer's Avatar
    Join Date
    Aug 2000
    Location
    Old London Town
    Posts
    425
    Thanks muchly!

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