System.WinForms and System.Windows.Forms;

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dave

    System.WinForms and System.Windows.Forms;

    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.
  • Ignacio Machin \( .NET/ C#  MVP \)

    #2
    Re: System.WinForms and System.Windows. Forms;

    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,

    --
    Ignacio Machin,
    ignacio.machin AT dot.state.fl.us
    Florida Department Of Transportation


    "Dave" <Dave@discussio ns.microsoft.co m> wrote in message
    news:7815FDCF-ED9E-4B8E-A2B9-5F4DF9A6E41E@mi crosoft.com...[color=blue]
    > I have a problem using the samples that have "using System.WinForms ;"
    > Changing it to System.Windows. Forms does not work. Somehow in such[/color]
    projects[color=blue]
    > System does not have ".Forms" .
    > Is there a way to fix the problem?
    > Thanks,
    > Dave.[/color]


    Comment

    • Nurchi BECHED

      #3
      Re: System.WinForms and System.Windows. Forms;

      Hello, Dave!

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


      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.


      Comment

      Working...