Hi,
Here is my C++ builder problem. I used StrToInt method several times in my project. It was working fine. but when I add Active-X Automation Object to my project. It's started giving 'Can't convert AnsiString to char *' Error. If I use StrToInt64 or StrToIntDef then there is no problem.
Here is my code:
String Number = "234";
int temp = StrToInt(Number);
I appresiate any kind of help.
Thanks