S
ssylee
This is what I want to do with the line:
fullmsg += ": " + GetLastError();
fullmsg is a string object. I'm trying to concatenated GetLastError(),
which is type int, to the string. Would an integer be printed or a
character with the code that is equal to GetLastError() that would be
printed?
Thanks in advance.
fullmsg += ": " + GetLastError();
fullmsg is a string object. I'm trying to concatenated GetLastError(),
which is type int, to the string. Would an integer be printed or a
character with the code that is equal to GetLastError() that would be
printed?
Thanks in advance.