...or I am asking the wrong group of people on this topic?
Hopefully someone other there deals with UNICODE stuff and
will be able to help me...
--
Alex Georgiev
Todd
Alex Georgiev <geor...@flop.ENGR.ORST.EDU> wrote in message
news:slrn7s8vsj....@flop.ENGR.ORST.EDU...
float fVal = 10.1234567899
int cWidth = 10;
int cPrec = 2;
wsprintf( _T( "%*.*f" ), cWidth, cPrec, fVal ); // fails misserably
swprintf( L"%*.*f", cWidth, cPrec, fVal ); // works great
also note the potential differences in the format string.
Todd Osborne wrote in message ...
Todd
Andrew E. Walldorff <an...@rcs-incREMOVE.com> wrote in message
news:37c5...@nebula.superior.net...
--
Alex Georgiev