i am using winforms with visual studio 2008.
i would to create an EXACT replica of my form with controls and all events, and all the same code as i have.
is this possible to do at runtime? how would i do it?
shouldnt there be some kind of class solution like:
Form form2 = new Form();
form2 = form1 ???
Just create another instance of the same class. Use the actual name of the class instead of the base class
Form.