Should work just fine. Here is an example. I've created 2 forms (Form1 and Form2).
Form2 has a menu mnuFile, which I'll use as a popup menu. On the command button (which is on the Form1) click event I'll show Form2 modally. Form2 has a code on KeyDown event:
Form1
Code:
Private Sub Command1_Click()
Form2.Show vbModal
End Sub
Form2
Code:
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = vbRightButton Then PopupMenu mnuFile
End Sub
------------------
Serge
Senior Programmer Analyst
[email protected]
[email protected]
ICQ#: 51055819