Question
IDCS3 PMString to WideString
CS3 requires us to use WideString for any string objects not getting used in the User Interface. Unfortunately, WideString is nowhere near as capable as PMString. For example, it lacks a GetAsNumber()function, and it also lacks an AppendNumber function. I have gotten around the former by simply doing this:
WideString a("300");
int32 a = (PMString(a)).GetAsNumber();
Can anyone think of a workaround for the AppendNumber() functionality?
TIA!
John
WideString a("300");
int32 a = (PMString(a)).GetAsNumber();
Can anyone think of a workaround for the AppendNumber() functionality?
TIA!
John