Child form add tekst
Hvordan tilføjer jeg noget tekst til en memo der ligger på childform som er lavet af programmet ved hjælp af den her kode:procedure TForm1.CreateChildForm(const childName : string);
var Child: TForm2;
begin
Child := TForm2.Create(Application);
Child.Caption := childName;
end;
CreateChildForm('Child');
