Results 1 to 3 of 3

Thread: pop up menus

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2000
    Location
    Singapore
    Posts
    98
    Hi!

    How do i make popup menus on forms?

  2. #2
    Guest
    You can use Me.PopupMenu

    Code:
    Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
        If Button = 2 Then
            Me.PopupMenu menuname
        End If
    End Sub
    Sunny

  3. #3
    Guest
    You do not need the Me. .

    Code:
    PopUpMenu MyPopUpMenu

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