Hi all,

How can I go about importing into a new project a form that exists in another project?

What I have is a textbox that allows people to change their information and I would like to 're-use' this form and it's functionality in a new project that I am creating.

I have tried adding a reference to the existing project and then creating an instance of the form but the form name does not appear in the intellisense..

Example is

Project 2 (NewProject) references Project 1(OldProject)

VB Code:
  1. ' Then I tried in the new project
  2. Dim oProj as new OldProject.ExistingForm

I was hoping that I could do the above and then when a user clicked a button display the form from the old project and therefore re-use the form..

Can this be done and if so, how do I go about doing it??

Thanks
MarkusJ