Reputation: 165
I use delphi xe8.
I get an error when compile my programm on step
CyrStr = type AnsiString(1251)
"Undeclared identifier ansistring"
What library I need to use?
Upvotes: 0
Views: 3257
Reputation: 47819
You are probably compiling for a target that doesn't support AnsiString. The mobile compilers don't support AnsiString while the desktop compilers do.
Upvotes: 4