Aug 19, 2002 #1 ivoestg Programmer Mar 21, 2001 77 PT Hi, I need to put about 2480 characthers in a string... is this possible... i have tried .. AnsiString, and WideString... but no success. Thanks thanks... I'm in ivoestg@yahoo.com
Hi, I need to put about 2480 characthers in a string... is this possible... i have tried .. AnsiString, and WideString... but no success. Thanks thanks... I'm in ivoestg@yahoo.com
Aug 19, 2002 #2 DVFS Programmer Sep 21, 2000 44 US To my knowledge a Ansi Long string should be able to hold an unlimited number of charachters up to your available memory. Upvote 0 Downvote
To my knowledge a Ansi Long string should be able to hold an unlimited number of charachters up to your available memory.
Aug 19, 2002 #3 McMerfy Programmer Apr 18, 2002 186 RU From Delphi help: "AnsiString ~2^31 characters (4 bytes to 2GB); WideString ~2^30 characters (4 bytes to 2GB)" --- markus Upvote 0 Downvote
From Delphi help: "AnsiString ~2^31 characters (4 bytes to 2GB); WideString ~2^30 characters (4 bytes to 2GB)" --- markus
Aug 19, 2002 #4 cvgalante MIS Jun 27, 2002 18 US Check to make sure you don't have compiler directive {$H-} which turns s : string; into a 255 character string declaration. Default is {$H+} which makes it an AnsiString as McMerfy shows above. Upvote 0 Downvote
Check to make sure you don't have compiler directive {$H-} which turns s : string; into a 255 character string declaration. Default is {$H+} which makes it an AnsiString as McMerfy shows above.