Hi Vegeta4ss,
In Visual Studio 2008, each form has two cs file. For Form1, one is Form1.cs and another is Form1.Designer.cs. The form class will be marked as partial class. When you copy the control of a form, you need to copy all the code in the Form1.cs as well as the code in the Form1.Designer.cs. If you lost any line of code, you may get problem. Also you should make sure all the assembly references are added properly.
Before you copy the Form1 from one project to another, you need to create a Form1 in that project first in order that Visual Studio will create the necessary source for it. After copy, you can try to rebuild the project first, if no error occur, then you can click the form to view it in the designer.
Did you do the copy as my description? What does the "handles" really mean in your post?
Sincerely,
Kira Qian
Please mark the replies as answers if they help and unmark if they don't.