Size.width etc is for reporting on those variables not setting them. You have to just use me.width = "" etc.
Printable View
Size.width etc is for reporting on those variables not setting them. You have to just use me.width = "" etc.
when you call the child form, try this:
Dim ChildFormHandle As New ChildForm()
ChildFormHandle.Width = 300
ChildFormHandle.Height = 300
ChildFormHandle.Text = "Modified!"
ChildFormHandle.Show()