This is a simple 2 form application, created by selecting New|C# Project from VS 2010.
I then added a second form, call it form2.cs.
I added some controls on Form2.cs.
I added a button on Form1.cs
Double click button on Form1.
Intellisense picks up Form2 as I type - press the period (.) and there's no Show() method.
Type in show(); anyway and it tells me that form2 does not contain a definition for SHOW()!
What gives? Why does it do this to me today, must I just sit here and cry maybe?
Help...