1)Create the following application in VB. The form should contain the following menu
Draw Modify Exit
Circle Shrink
Expand
Erase
On selection of the menu option ‘Circle’, a circle should be drawn on the screen. The user can Shrink, Expand or Erase the circle by selecting the menu option or by displaying a popup menu after the right mouse button is clicked or pressed. The popup menu should contain the option Shrink, Expand or Erase which should perform the same operation as the menu option.
Option Explicit
Private Sub Form_Load()
Shape1.Visible = False
End Sub
Private Sub nmucircle_Click()
Shape1.Visible = True
End Sub
Private Sub nmuearise_Click()
Shape1.Visible = False
End Sub