VERSION 5.00
Begin VB.Form Form1 
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   60
   ClientWidth     =   4680
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   StartUpPosition =   3  'Windows Default
   Begin VB.Menu mnuHidden 
      Caption         =   "Hidden Menu"
      Visible         =   0   'False
      Begin VB.Menu mnuitem1 
         Caption         =   "Item 1"
      End
      Begin VB.Menu menuItem2 
         Caption         =   "Item 2"
      End
      Begin VB.Menu mnuItem3 
         Caption         =   "Item 3"
      End
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
    PopupMenu mnuHidden, 0
End Sub

