Zitat von
Teekeks:
Wenn ich das richtig sehe machst du das hier:
apchar:=@astring;
richtig wäre:
apchar:=PChar(astring[1]);
Edit:
Also mach das hier:
sourceStrPtr := PChar(sourceStrPtr[max,1]);
Hat
fast gefluppt, aber jetzt kommt
[Fehler] RichView.pas(857): Array-Typ erforderlich
// sourceStrPtr := @(sourceStrPtr[max]);
sourceStrPtr := PChar(sourceStrPtr[max,1])
?