I've done the box itself (it's called AboutBox1) I just need the code to display it when you click Help --> About. So far I've got:
CODE
Private Sub AboutToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AboutToolStripMenuItem.Click
' NEEDS TO GO HERE
End Sub
I've tried AboutBox1.Show() , Show.AboutBox1() , Show(AboutBox1) and AxCommonDialog1.ShowAbout()
Thanks in advance.

