Einzelnen Beitrag anzeigen

Benutzerbild von nailor
nailor

Registriert seit: 12. Dez 2002
Ort: Karlsruhe
1.989 Beiträge
 
#11

Re: String > 255, oder anderer Datentyp

  Alt 27. Aug 2004, 11:43
hmm. bei mir hat ein ganz normaler string keine "sichtbare" beschränkung:

Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
var
  s: string;
  i: integer;
begin
s := '';
for i := 0 to 10000 do
  s := s + inttostr(i);
Memo1.Text := s;
end;
Michael N.
http://nailor.devzero.de/code/sharpmath/testing/ --- Tests, Feedback, Anregungen, ... aller Art sehr willkommen!
::: don't try so hard - it'll happen for a reason :::
  Mit Zitat antworten Zitat