O
Ofer B.
I had a code that ran on PPC 2002, It is not ranning on PPC 2003
This is the code:
string key = GetDeviceID();
key = key.replace("-", "+");
on the 2002 it works fine, on the 2003 I got this string: "+++++++++++++++"
to solve this problem i use the same fanction but with char and not strings
key = key.replace('-', '+');
this is work fine on both, 2002, 2003.
ofer
This is the code:
string key = GetDeviceID();
key = key.replace("-", "+");
on the 2002 it works fine, on the 2003 I got this string: "+++++++++++++++"
to solve this problem i use the same fanction but with char and not strings
key = key.replace('-', '+');
this is work fine on both, 2002, 2003.
ofer