I want to create large number of textboxes with loop. lets say I want to create one textbox and I tried this code ;
UserForm1.Controls.Add "Forms.TextBox.1", "Txt", True
with this code I can create textbox but I can't reach the properties of textbox .For example When I try this ;
UserForm1.Controls.Add "Forms.TextBox.1", "Txt", True
UserForm1.txt.Text = "asdasd"
It gives "compile error. Method or Data member not found". How can I reach the properties of this textbox?