Disferente
Programmer
How can I unload a control created at runtime using Controls.Add?
Code:
Dim TxtArr() As Object
Private Sub Form_Load()
Dim a As Integer
ReDim TxtArr(5)
For a = 0 To 5
Set TxtArr(a) = Controls.Add("VB.TextBox", "txtBox" & Format(a, "000"))
TxtArr(a).Visible = True
TxtArr(a).Width = 1000
TxtArr(a).Height = 285
TxtArr(a).Left = 200
TxtArr(a).Top = 285 * a
Next a
End Sub
Private Sub Form_Click()
Unload TxtArr(UBound(TxtArr())) 'Gives runtime error 361 (Can't load or unload this object.)
Unload Form1("txtBox005") 'Gives runtime error 361 as well
End Sub