What s the equivalent of:
int variable;
variable == 1;
when you re using strings?
That is what should be the second line here:
string variable;
(variable == ("New content"); ) <-------- ?
I am not RTFM'ing you, but....
StrCopy
StrCopy (string str1, string str2)
Copies the contents of STR2 into STR1, overwriting STR1's original contents. Use this instead of the assignment STR1=STR2 .
Example:
string message;
StrCopy(message,"This is a message");
will result a string message that will be "This is a message"
Thanks, I did read that section in the manual but didn t see the relevance.