Form Generator

  • Thread starter Thread starter Radenko Zec
  • Start date Start date
R

Radenko Zec

How to programatically add C# form to existed solution?
I want to make program(C# form generator),to
create solution,add project to new solution,and add several forms later
without even opening Visual Studio.
I suspect that development such project include
use Visual Studio Add-in?
Please help me?
 
Radenko,

You don't want to open visual studio? If you are going to add new
forms, new code, or anything to your project, you will have to use some sort
of development tool. In .NET, Forms are classes, and classes require code,
which has to be compiled.
 
You don't want to open visual studio? If you are going to add new
forms, new code, or anything to your project, you will have to use some sort
of development tool. In .NET, Forms are classes, and classes require code,
which has to be compiled.

I think he might be talking about using it as a COM server, or otherwise
automating VS.

-- Barry
 
I need to make form generator in c#.But i was confused.
I must create solution,then project and go to visual studio add-in to
generate forms.
But how to create add-in for visual studio 2003 or 2005?
 
Back
Top