|
Posted by Matt on November 11, 2005, 5:38 am
Please log in for more thread options
Manish Raj,
I have seen this before, but this was about a year ago when I was doing
the same thing, where I ported a Smartphone 2002 application to
Smartphone 2003. I think this had something to do with cases and
setting variables to different cases. I think I saw this before when I
tried to do the following:
CString ctTemp;
TCHAR buf[50];
ctTemp = buf;
What I needed to do to fix this was:
ctTemp = &buf[0];
I am not 100% sure why this works, but I do know that it works. You
might be casing something incorrectly causing this error.
Matt
|