Re: [Q] Why is this difficult???

2008-05-28 Thread Miguel Oyarzun
handle the case where rounding propagates into the integral portion of the result. I also modified it so that it returns a pointer to the internal buffer that holds the result, rather than copying the result into a buffer provided as an arg. If you find a better solution, please let us all know..

Re: Display a float on screen

2008-05-28 Thread Miguel Oyarzun
Yup, look at the day-old thread titled "[Q] Why is this difficult???" for yet-another-post of the FloatToString function. There is also this link http://www.duckpond.mv.com/Ftp/Pilot/fp.c to another solution. "Dave Lippincott" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > You wi

Re: detect emulator

2008-05-28 Thread Miguel Oyarzun
Try something like this... Err err; UInt32 value; Boolean emulator; err = FtrGet('pose', 0, &value); if (err) { emulator = false; } else { emulator = true; } -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/d

Re: detect emulator

2000-10-30 Thread Miguel Oyarzun
Try something like this... Err err; UInt32 value; Boolean emulator; err = FtrGet('pose', 0, &value); if (err) { emulator = false; } else { emulator = true; } -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/sup

Re: Display a float on screen

2000-10-26 Thread Miguel Oyarzun
Yup, look at the day-old thread titled "[Q] Why is this difficult???" for yet-another-post of the FloatToString function. There is also this link http://www.duckpond.mv.com/Ftp/Pilot/fp.c to another solution. "Dave Lippincott" <[EMAIL PROTECTED]> wrote in message news:28175@palm-dev-forum... > >

Re: [Q] Why is this difficult???

2000-10-25 Thread Miguel Oyarzun
handle the case where rounding propagates into the integral portion of the result. I also modified it so that it returns a pointer to the internal buffer that holds the result, rather than copying the result into a buffer provided as an arg. If you find a better solution, please let us all know..