Andy Birtman
Andy Birtman

Reputation: 165

Delphi Undeclared identifier ansistring

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

Answers (1)

Uwe Raabe
Uwe Raabe

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

Related Questions