PDA

Click to See Complete Forum and Search --> : Blank Form Load? HELP!!!! (Resolved)


Stick
Jan 21st, 2003, 06:31 PM
Hey i really don't get this...
I am writing a program for my visual basic .net class and i have most of it done but now when i run it the form is blank.
I have attached the code along with the post THANKS
ANY HELP WOULD BE GREAT !!!!!!!!!



THANKS !!!!

RealNickyDude
Jan 21st, 2003, 07:43 PM
You're missing the following code:


Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub
Add that above the "Form overrides dispose to clean up the component list" section of code right near the top and all should be ok.

Stick
Jan 21st, 2003, 08:41 PM
Thanks Alot

RealNickyDude
Jan 22nd, 2003, 11:49 AM
I take it everything's ok now?