Look at the following code. When I try to call a click event from within a menu event, it won't let me. What am I doing wrong?

VB Code:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         Dim openFileDialog1 As New OpenFileDialog()
  3.  
  4.         OpenFileDialog1.Filter = "All files (*.*)|*.*"
  5.         If openFileDialog1.ShowDialog() = DialogResult.OK Then
  6.             MsgBox("worked!")
  7.         End If
  8.     End Sub
  9.  
  10.     Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click
  11.         Call Button1_Click()
  12.     End Sub
-- Ethan --