1. would it be possible to create objects and or forms in code?
2. if 1 = yes then is it possible to create a form with objects like another one, with a few changed things?
i think thats all :)
Printable View
1. would it be possible to create objects and or forms in code?
2. if 1 = yes then is it possible to create a form with objects like another one, with a few changed things?
i think thats all :)
Code:Set AnyName = New Form1
load AnyName
AnyName.Show
simple... I am not sure how to change stuff on it...
Code:Private Sub Command1_Click()
Set fff = New Form1
Load fff
fff.Show
fff.Command1.Visible = False
End Sub
ok, dont put this in the form load thing
stole about half of my ram..Code:Private Sub Command1_Click()
Set fff = New Form1
Load fff
fff.Show
because each one will try to load a new one, loops forever, till no more memory is left