Hallo,
ich möchte zur Laufzeit einige Formulare erzeugen. Darin sollen dann mal PDFs angezeigt werden.
dazu habe ich ein Vorlage Formular erstellt, das auch im Projekt ist.
Und in diesem Vorlage formular gibt es die Procedure show_pdf, die als public deklariert ist..
Allerdings weiss ich nicht wie, ich diese public procedure aufrufe.
Delphi-Quellcode:
procedure TFForm1.create_newforms;
var myform:array of TForm;
i: integer;
begin
setlength(myform,3);
for i := 0 to 2 do
begin
myform[i] := TFMyFormVorlage.Create(self);
myform[i].caption := 'Formular ' + inttostr(i + 1);
myform[i].Left := 20 + (5 *i);
myform[i].Top := 5 + (5 * i);
// bis hierher geht
myform[i].show_my_pdf; //Aufruf der Procedure geht nicht
end;
end;
Danke euch im Voraus für Eure Hilfe