I have a series of forms that I call from a series of buttons on another form in VB .Net.
I declare them at the top of the form:
Dim FrmHelp As New Form2
Dim FrmAbout As New Form3
And call them from the buttons:
FrmAbout.Show()
The problem I'm getting is anymore than two/three forms declared at the top of the program crashes Visual Studio and the program doesn't compile.
Is there something I'm doing wrong?
x