Jun 23, 2004 #1 d00ape Programmer Apr 2, 2003 171 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 Sep 13, 2000 4,226 GB try strOut += (char)strData[iPos] ^ strKey[iKeyPos++]; Ion Filipski Upvote 0 Downvote
Jun 24, 2004 Thread starter #3 d00ape Programmer Apr 2, 2003 171 SE Really thanks (again) Ion!! Upvote 0 Downvote