Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unload controls created at runtime.

Status
Not open for further replies.

Disferente

Programmer
Jun 23, 2008
112
US
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
 
You cant unload controls that you didnt load in the first place.
In a control collection the loaded ones usually have a control number after the ones that were there at design time.
so something like :-

Before adding controls you count the original controls
OriginalCount=Controls.Count

Then when unloading:-
For a = Controls.Count to OriginalNumber to step -1
Unload Controls(a)
next
 
If I can't use unload to remove the controls I create with Controls.Add, is there any other way to remove them?
 
Controls is a Collection it may/ should have a .Remove Method; it may be worth a try.
 
Controls.Remove TxtArr(UBound(TxtArr())).Name
Works wonders, seems to be exactly what I was looking for.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top