The ansistring tag has no wiki summary.
1
vote
1answer
232 views
Delphi AnsiString Manipulation - PAnsiChar becomes corrupt?
I use the following approach to move through and manipulate an AnsiString. It works most of the time, but sometimes the pointer into the string quits functioning. Given the following code:
var
s: ...
2
votes
2answers
182 views
Delphi (2009) - Converting AnsiString reading or preserving line breaks?
Using this (test) code to read a tEXt chunk from a PNG:
procedure TForm1.Button1Click(Sender: TObject);
var
PngVar: TPngImage;
n: Integer;
begin
PngVar := TPNGImage.Create;
...
0
votes
1answer
56 views
Strange issue when using AnsiString as key in map
I have a map
map<AnsiString, Foo*>
When I try to look up values in the map I use a string I have received from a TMemoryStream and send it to a Foo* GetFoo(AnsiString) function that in turn ...
0
votes
2answers
355 views
Diffence with AnsiString and AnsiString transfered from UnicodeString in C++ builder
I am using C++ Builder XE3 and I have met a weird problem with AnsiString.
Just look at below code
//Code 1: first time
AnsiString temp1 = "test" ;
funcA(temp1,temp1);
//Code 2: second time
...
1
vote
1answer
157 views
NHibenate. How to set IType in Projections.Constant?
I have a project using NHibernate 2.1.2.4000 with .Net OracleClient, to connect to an old Oracle 8i production database.
I have implemented an ICriteria, that is generating the correct query, but the ...
0
votes
1answer
151 views
Should DbType.AnsiString or DbType.String be used?
I am looking at code written by someone else.
Everywhere it uses DbType.AnsiString instead of DbType.String. Why?
0
votes
1answer
197 views
Setting type as AnsiString for NHibernate Queries using Oracle
After some digging I found that the reason the following NHibernate query
IList<User> users = session.QueryOver<User>()
.WhereRestrictionOn(user ...
0
votes
2answers
293 views
Porting a Delphi 2006 app to XE
I am wanting to port several large apps from Delphi 2006 to XE. The reasons are not so much to do with Unicode, but to take advantage of (hopefully) better IDE stability, native PNG support, more ...
3
votes
2answers
1k views
AnsiString To Stream
I created the following code:
Function AnsiStringToStream(Const AString: AnsiString): TStream;
Begin
Result := TStringStream.Create(AString, TEncoding.ANSI);
End;
But I'm "W1057 Implicit string ...
1
vote
1answer
460 views
Definitions of: AnsiString, WideString, String, char[], char*, BSTR,
This is a followup to this question
AnsiString is a class, too? And string? It is a class? And a char[]?
Can we say a WideString is a wrapper over double-byte characters, AnsiString is a wrapper ...
1
vote
2answers
3k views
Delphi: How to encode TIdBytes to Base64 string?
How to encode TIdBytes to Base64 string (not AnsiString) ?
ASocket.IOHandler.CheckForDataOnSource(5);
if not ASocket.Socket.InputBufferIsEmpty then
begin
...
5
votes
2answers
2k views
Delphi XE2 AnsiFormat() and ANSI String constants
Is there a handy Format() function that works only on Ansi strings? Because everytime I use an AnsiString with Format() I get a warning. And no, I don't want Delphi to convert my AnsiStrings back and ...
2
votes
1answer
1k views
Delphi: Unicode->AnsiString, language for non-unicode programs
I have Delphi 2010.
XXX-component uses File_Path:AnsiString. A path can be written in XXX-language. If I set to use XXX-language for non-unicode programs in Windows settings then XXX-component ...
1
vote
2answers
2k views
Delphi Ansistrings
I have a case here, I am going to migrate over to delphi 2011 XE from Delphi 7, and to my surprise many components will have problems due to ansistrings, in delphi xe they look like japanese / chinese ...
1
vote
2answers
4k views
Converting UnicodeString to PAnsiChar in Delphi XE
In Delphi XE I am using the BASS audio library, which contains this function:
function BASS_StreamCreateURL(url: PAnsiChar; offset: DWORD; flags: DWORD;
proc: DOWNLOADPROC; user: ...
2
votes
3answers
570 views
Dll built in Delphi 2010/2009 not compatible to Delphi 7 when an Exception is raised
I've built a dll in Delphi 2010 and it's consumed in my delphi 7 application.
I'm aware of the unicode AnsiString / string matter and according to my tests everything works fine up to the moment ...
4
votes
6answers
2k views
AnsiString return values from a Delphi 2007 DLL in a Delphi 2009 application
I have a DLL compiled with D2007 that has functions that return AnsiStrings.
My application is compiled in D2009. When it calls the AnsiString functions, it gets back garbage.
I created a little ...
7
votes
4answers
926 views
Transition to Unicode for an application that handles text files
My Win32 Delphi app analyzes text files produced by other applications that do not support Unicode. Thus, my apps needs to read and write ansi strings, but I would like to provide a better-localized ...
2
votes
2answers
3k views
Converting Integer value into AnsiString in Delphi 2009
IntToStr() function returns string which is Unicode now. I want to convert to AnsiString.
Can I use AnsiString(IntToStr(I)) safely?