I have created a new project and created a new form Form1 on which i need a LARGE number of controls
I am trying to avoid having to manually add all the controls !!!!
Using code i have generated all the controls and the form loads and works fine
eg...
'add a textbox
Set ctlText = Controls.Add("VB.TextBox", "ctlText1", Form1)
ctlText.Move (ctlDynamic.Left + ctlDynamic.Width + 50), _
1, 2500, 100
ctlText.BackColor = vbYellow
----
BUT
How do i SAVE the form with the detail i have generated for future use
Appreciate any help
Regards Trob