VB.NET 2008 importing forms from another project?

vb.net

Solution

If you are copying the files outside of Visual Studio (e.g. in Windows Explorer) you need to copy all three.

But working in Visual Studio you only need to copy the base .vb file; the .designer.vb and the .resx will be copied for you automatically. How to do this? Right click on your project file in Solution Explorer and choose Add -> Existing Item.

Problem

I have some form/vb in another project that I want to import to a new one. There are three files with these extensions - .vb, resx, and designer.vb. Which do I copy and how exactly?

Original source