Hi there,
Take a look at the code that Visual Studio has generated for you. You'll see that it just sets a bunch of properties for the form in code. You'll see stuff like this for example:
Code:
Me.Button1.Text = "This is button text"
Me.Text = "This is the Form's Caption"
This code sets the text for a button on the form, and for the caption on the form.
You can do the exact same thing at run-time.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.