System.WinForms and System.Windows.Forms;

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a problem using the samples that have "using System.WinForms;"
Changing it to System.Windows.Forms does not work. Somehow in such projects
System does not have ".Forms" .
Is there a way to fix the problem?
Thanks,
Dave.
 
Hi,

System.WinForms is not part of the framework, where did it came from?

Now that I thikn I believe that it was the name given to
System.Windows.Forms back in beta 1 of .net !!!
I may be wrong though.

Cheers,
 
Hello, Dave!

Whatever type of project you're making, right click on "References"
and choose "Add Reference..."
Then add "System.Forms.dll" to the list of the references
And then type in your program "System.forms" and it will "jump"
to "System.Forms"


D> I have a problem using the samples that have "using System.WinForms;"
D> Changing it to System.Windows.Forms does not work. Somehow in such
D> projects System does not have ".Forms" .
D> Is there a way to fix the problem?
D> Thanks,
D> Dave.

Hope this helps...
With best regards, Nurchi BECHED.
 
Back
Top