myArray(mx,1) is simply a string, not a form. You have to create an existing form with that string's name, then show it.
Code:
Private Sub MenuItem_Click(Index As Integer)
      Dim f As Form
      Set f = Forms.Load(myArr(Index, 1))
      f.Show
End Sub