vote up 0 vote down star

This is probably a stupid question, but my brain is just cooked enough I think I'm going to use one of my "lifelines" to see if I can get some help from my stack overflow friends. ;)

I need to delete all occurrences of a particular component type on my main form (some of them are inside panels or tabsheets, but all on and owned by the same form). Here's what I have now:

for i := 0 to frmMain.ComponentCount - 1 do  
  begin  
    if frmMain.Components[i] is TMyClass then frmMain.Components[i].Destroy;  
  end;

The problem is (and I knew it would be before I compiled it) that once I destroy the component, the form's component list re-indexes and I end up out of bounds.

What's the best way to solve this? I thought about adding the "found" components to a standalone array, and then walk through that after this loop to delete them, which I think will work.... but is that the best approach?

TIA


UPDATE:

You guys rock. Thanks. : )

flag

41% accept rate

4 Answers

vote up 9 vote down check

You're nearly right. Your loop should look like

for i := frmMain.ComponentCount - 1 downto 0 do
begin
  if frmMain.Components[i] is TMyClass then
    frmMain.Components[i].Free;
end;

This way the call to the function "frmMain.ComponentCount" gets done at the beginning and not again.

You should also call Free as above, not Destroy - I can't remember why at the moment. Bri

link|flag
Destroy is virtual. If the object has been destroyed already then it would fail. Free checks to see if it has a valid reference before calling Destroy. Not likely to be a problem here, but a good practice in general. – Jim McKeeth Feb 11 at 23:27
In this case, it is safe to just call Destroy. Because of the way VCL manages this list, there is not likely to be an invalid reference in that list. Even if there were, Free wouldn't protect you because it relies on the instance being nil. – Allen Bauer Feb 12 at 0:34
Note also that the loop goes from high to zero, to ensure all items are considered, otherwise the loop can skip items next to the deleted one. Important not to miss that. – mj2008 Feb 12 at 8:47
vote up 5 vote down

Start at the top and work backwards.

viz:

for i := frmMain.ComponentCount - 1 downto 0 do
begin
  if frmMain.Components[i] is TMyClass then frmMain.Components[i].Free;
end;

Call free instead of Destroy. Free calls Destroy after checking for a valid reference.

link|flag
1  
He should also call Free and not Destroy. One should never call Destroy, and always call Free. – Nick Hodges Feb 11 at 23:16
vote up 0 vote down

The same solution with a while-loop:

i := 0;
while i < frmMain.ComponentCount do
begin
  if frmMain.Components[i] is TMyClass then
    frmMain.Components[i].Free 
  else
    inc(i);
end;
link|flag
this will not work - (i) is going up and (frmMain.ComponentCount) is comming down – Charles Faiga Feb 12 at 16:58
1  
If you take a second look, you will see that i want come up if componentcount goes down. If every single component is of class TMyClass, i would remain at zero, and the while-loop would terminate, because 0 < 0 is false – Vegar Feb 12 at 17:11
vote up 1 vote down

It may not happen in your case, but the "if frmMain.Components[i] is TMyClass" check will also return true for descendant classes of TMyClass. If you are really looking for the removal of one specific class, you may need to add an extra check of the ClassName.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.