Hi. Perhaps you can set your existing controls (textboxes, radiobuttons etc) to disappear, you can set their property. For instance, if have a TextBox on your form, txtbox2, you can: txtbox2.Visible = false; and it will then not be seen by the user. That way you can make some or all of the controls disappear and then create new ones if need be. I don´t know if I fully understand your problem but I hope this helps. F