Is it possible to embed a windows form within another windows form?
I have created a windows form in Visual Studio along with all its associated behaviour.
I
Not directly. You can create a usercontrol, move all of the code from your form to the usercontrol and use this in both forms. You might need to change some of the code from your form but probably not much.