medicenpringles
Programmer
i have a project w/ several forms. i know you can open a project using "sub main", and that's what i try to do
but for some reason i can't get the sub main to load my main form. here's my code:
Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
but for some reason i can't get the sub main to load my main form. here's my code:
Code:
Module Globals
Public MainForm as Form = New frmMain
Sub Main()
MainForm.Show()
End Sub
End Module
Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003