Hallo Leute
ich habe ein Paar types deklariert:
Delphi-Quellcode:
type TModActionWhat=(mawinsertafter,mawinsertbefore,mawreplace,mawmessage,mawnewfile);
type TModAction=record
action: TModActionWhat;
cstr1:string;
cstr2:string;
insreturn:boolean;
datei:string;
end;
type TMod=record
modname:string;
moddesc:string;
modbemerkungen:string;
modversion:string[200];
modforversion:string;
author:string[200];
authormail:string;
authorpage:string;
actions:array of TModAction;
end;
Jetzt würde ich gerne genau ein TMod in eine Datei speichern und herausladen. Das Problem dabei ist, dass dynamische Array. Leider weiß ich nicht, wie groß es ist. Deshalb streikt Delphi auch bei
Wie kann ich das Problem lösen?
Danke
TO