I want to create tabpages at runtime and copy the data from the first tabpage to the newly generated ones. Currently I am doing at a button click, generation of a new tab and saying Panel1.Parent=tab(current) "
I have a User Control with ComboBox controls that get populated from a database in a background thread. Now I want to make a copy of the user control to add to a form. Merely assigning it to a new object retains the reference to the original, so that adding the new object to a ...