how to copy and paste form in the same application (using c# wins forms)
A:
Right-click on the 'source' form, select 'copy' option of the popup menu Right-click on the project name in the Solution Explorer, select 'paste' option of the popup menu
J Angwenyi
2010-06-08 13:06:35
there are duplicate resourse file error
shmandor
2010-06-08 13:14:36
duplicate items not supported by resources parameter
shmandor
2010-06-08 13:33:50
A:
Right-click on the form and click COPY, then right-click on your project and click PASTE. This will add a copy of the form to your project. In order to compile, you then have to change the name of the form to something else (in the main CS file and also in the .designer.cs file).
MusiGenesis
2010-06-08 13:09:36
Please note the third sentence in my answer. You need to change the copied form's name in 3 places: at the top of the new .cs file and in the form's constructor, as well as at the top of the new .designer.cs file.
MusiGenesis
2010-06-08 13:24:53