Zitat von
PASST:
Letztendlich habe ich das jetzt mit StrPCopy(txtChar, txtString) gemacht.
StrLCopy wäre wohl besser. Wenn txtString größer als txtChar ist, hast du ein Problem.
Delphi-Quellcode:
txtString := 'Dieser Text wird vom Compiler nicht akzeptiert!';
StrLCopy(txtChar, PChar(txtString), SizeOf(txtChar) - 1);