What code do i put in the submenu click event??
Well that depends on what you want to do

I assume you have minimized the form and set it's visible property to false?

try this
Code:
Private Sub mnuPop_Click()
    Form1.Windowstate = 0
    Form1.Visible = True
End Sub
did that work?