When I iterate of the controls on my form, I see those which I placed there at design time or run time. They are all of type TEdit, Tmemo, TComboBox, etc ...
However, there are always exactly eight which I do not recognize. I can skip over them, since they are not of a type which interests me, but I am curios.
I am guessing system controls like min/max/close. Their Name property is empty. Is there any way I can determine what type they are (without explicitly testing for every standard component derived from TWinControl) ?
I am curious - but not yellow ;-)
for i := 0 to Form1.ControlCount -1 do ...
Answer: use ClassName
to find out. And i got TGrabHandle
for all of them.
Thanks for all the help. +! all round