i would like to import an existing form from visual studio 2010 into visual studio 2008.
all i want to do is create a new project in 2008
import form1 from 2010 and replace the existing one
what is the proper way to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just copy the
YourForm.csandYourForm.designer.csinto your 2008 project, and choose File->Add Existing Item. Choose theYourForm.csfile.It should come up automatically.
Be aware, however, that you may run into issues if you’ve used any code in your form that is specific to .NET 4.0. Otherwise, it should work fine.