Aug 19, 2002 #1 ivoestg Programmer Joined Mar 21, 2001 Messages 77 Location 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 Joined Sep 21, 2000 Messages 44 Location 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 Joined Apr 18, 2002 Messages 186 Location 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 Joined Jun 27, 2002 Messages 18 Location 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.