Hi! How do i make popup menus on forms?
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
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
You do not need the Me. . Code: PopUpMenu MyPopUpMenu
PopUpMenu MyPopUpMenu
Forum Rules