Hello
I've a variable of the following type:Additionally, I've the following variable:Code:TReal32 iTestVariable;Now, I'd like to append the "iTestVariable" to "aInfo" withCode:TBuf<KBufSize256> aInfo;
But: I get a compiler warning: "passing `TReal32' for converting 1 of `void TDes16::AppendNum(TInt64)'".Code:aInfo.AppendNum( iTestVariable );
How can I convert that correctly? Any suggestions?

Reply With Quote


