Thema: Delphi String in Array of Char

Einzelnen Beitrag anzeigen

Benutzerbild von Sprint
Sprint

Registriert seit: 18. Aug 2004
Ort: Edewecht
712 Beiträge
 
Delphi 5 Professional
 
#7

Re: String in Array of Char

  Alt 12. Sep 2005, 14:49
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);
Ciao, Sprint.

"I don't know what I am doing, but I am sure I am having fun!"
  Mit Zitat antworten Zitat