Hallo,
damit geht es unabhängig vom Namen der eingefügten Komponenten:
Delphi-Quellcode:
for z := 0 to GroupBox1.ControlCount-1 do
begin
if GroupBox1.Controls[z] is TEdit then
showmessage(TEdit(GroupBox1.Controls[z]).Text);
if GroupBox1.Controls[z] is TCheckBox then
if TCheckBox(GroupBox1.Controls[z]).Checked then
showmessage(TCheckBox(GroupBox1.Controls[z]).Name+' ist aktiviert');
//was sonst noch enthalten sein kann
end;