If you have a directive "using System" don't you already inherit all the System methods etc? Why do you need the directive "using System.Windows.Forms?"
I might have missed something in my reading. But this is just sticking in my head like a thorn.
Thanks for putting up with these newbie questions.
Loading
VulpesPosted Feb 16, 2012, 4:59 AM
Scott StewartPosted Feb 16, 2012, 11:32 AM
Scott StewartPosted Feb 16, 2012, 12:51 AM
This came up because I wanted to add a split window to my MDI. On the left of the screen I will have a tree view based on data in my DB. So I looked into this and came across this http://msdn.microsoft.com/en-us/library/system.windows.forms.splitcontainer.aspx. Well, I see these directives and I ask myself "Why?" Of course there are a bunch of questions following the 'Why' but OMG! what a lot of stuff to follow and (as is normal with Microsoft) it is not clear to me. So I am trying to get a grip but the more I try to understand the more I get into stuff I can't figure out.
I appreciate any clarity anyone can provide. This is, obviously, the place I can get it.
Satyapriya NayakPosted Feb 16, 2012, 12:31 AM
The System.Windows.Forms namespace contains classes for creating Windows-based applications that take full advantage of the rich user interface features available in the Microsoft Windows operating system.
Refer
http://msdn.microsoft.com/en-us/library/system.windows.forms.aspx
Thanks