hi
i have an Array of TextBox object. i want to add a new textbox to this array at run time.
can i do it ?
how do i do it ??
thanx
asaf
Printable View
hi
i have an Array of TextBox object. i want to add a new textbox to this array at run time.
can i do it ?
how do i do it ??
thanx
asaf
Do you mean you have a control array on your form? if so then you use the load function to add controls to that form.
use something likeQuote:
Originally Posted by asaf123456
and to remove them useCode:Load TextBox_A(TextBox_A.Ubound + 1)
TextBox_A.Top = [Top Position]
TextBox_A.Left = [Left Position]
TextBox_A.Visible = True
Gremmy...Code:Unload TextBox_A(TextBox_A.Ubound)