Hallo
ich habe eine Form (Form1) mit einem Stringgrid.
Daneben eine Form (Form9) welche mit dem Stringrid von Form1 interagiert z.b:
Code:
Form9.FotoAnzeigen(fileliste[Form1.stringGrid1.row].Quellpfadfilename);
Jetzt möchte ich eine neue Form (Form2) erstellen, welche dann auch mit Form9 interagiert.
Dann möchte ich variabel switchen können zwischen Form1.StringGrid1 und Form2.StringGrid1.
Ungefähr so:
Code:
if form1.active then FormX:=Findcomponent('Form1') end;
if form2.active then FormX:=Findcomponent('Form2') end;
Form9.FotoAnzeigen(fileliste[FormX.stringGrid1.row].Quellpfadfilename);
Gibt es eine Möglichkeit dies dynamisch bei Form9.open zu machen? Und was wäre der richtige Befehl.
Danke für einen Tipp.
Markus