Moin moin,
wie spreche ich ein Control an,
dass ich dynamisch erzeugt habe und in einem Frame
(in diesem Fall ein Panel) anzeige.
Delphi-Quellcode:
Application.CreateForm(Tma_planung_detailform, ma_planung_detailform);
ma_planung_detailform.Parent := Panel1;
ma_planung_detailform.ma_id := Ma_ID;
ma_planung_detailform.JahresZahl := Jahr;
ma_planung_detailform.BorderStyle := bsNone;
ma_planung_detailform.Left := ((Counter+1)*ma_planung_detailform.Width);
ma_planung_detailform.Name := 'ma_detail'+IntToStr(Counter);
ma_planung_detailform.Show;
ma_planung_detailform.Align := alLeft;
In diesem Formular gibt es eine
Query, die ich halt
gern jetzt aus meinem übergeordneten Formular ansprechen würde.
Ich steh da momentan 'n wenig auf dem Schlauch.
Moin