I need to know how to make an About Box show.
The about box is name AboutBox.vb
I've tried AboutBox.show() but it comes up saying: "Reference to a non-shared member requires an object reference."
The about box is name AboutBox.vb
I've tried AboutBox.show() but it comes up saying: "Reference to a non-shared member requires an object reference."
Code:
Public Class MainForm
Private Sub aboutButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles aboutButton.Click
AboutBox.Show()
End Sub
End Class
Comment