I have a control on my form.. lets say a textbox. I programically create another textbox and want to copy all of the properties of the drawn textbox. Is there a simplier way to do this other than doing:
Visual Basic:
mytextbox.text = drawntextbox.text
mytextbox.font = drawntextbox.font
...