Jun 23, 2004 #1 d00ape Programmer Joined Apr 2, 2003 Messages 171 Location SE How come that this line will compile in VS 6.0 but not in VS 7.0? strOut += strData[iPos] ^ strKey[iKeyPos++]; strOut, strData and strKey are Cstring. IPos and iKeyPos is int. I got the compiler error: C2593: 'operator +=' is ambiguous Thanks
How come that this line will compile in VS 6.0 but not in VS 7.0? strOut += strData[iPos] ^ strKey[iKeyPos++]; strOut, strData and strKey are Cstring. IPos and iKeyPos is int. I got the compiler error: C2593: 'operator +=' is ambiguous Thanks
Jun 23, 2004 1 #2 Cagliostro Programmer Joined Sep 13, 2000 Messages 4,226 Location GB try strOut += (char)strData[iPos] ^ strKey[iKeyPos++]; Ion Filipski Upvote 0 Downvote
Jun 24, 2004 Thread starter #3 d00ape Programmer Joined Apr 2, 2003 Messages 171 Location SE Really thanks (again) Ion!! Upvote 0 Downvote