Hi, Tammy,
not sure what you mean by running a user control. User controls are usually put on a form (dragged from the toolbox). If you want to change which *form* should display when you run your project (startup form), open your program.cs file and replace the name of the form in the following line:
Application.Run(new Form1())
to, let's say:
Application.Run(new Form2())
Andrej
|