Re: mathlib question

2004-03-07 Thread KEN
"Ben Combee" <[EMAIL PROTECTED]> ??? news:[EMAIL PROTECTED] ???... > At 03:21 AM 3/7/2004, you wrote: > > > >"Ben Combee" <[EMAIL PROTECTED]> ??? news:[EMAIL PROTECTED] ???... > > > At 02:26 AM 3/7/2004, you wrote: > > > >I am using Simulator OS 5.3 debug > > > >how to use the debugger? i'm using

Re: mathlib question

2004-03-07 Thread Ben Combee
At 03:21 AM 3/7/2004, you wrote: "Ben Combee" <[EMAIL PROTECTED]> ??? news:[EMAIL PROTECTED] ???... > At 02:26 AM 3/7/2004, you wrote: > >I am using Simulator OS 5.3 debug > >how to use the debugger? i'm using CW > > There's a whole chapter on debugging your application in the Targeting Palm > O

Re: mathlib question

2004-03-07 Thread KEN
"Ben Combee" <[EMAIL PROTECTED]> ??? news:[EMAIL PROTECTED] ???... > At 02:26 AM 3/7/2004, you wrote: > >I am using Simulator OS 5.3 debug > >how to use the debugger? i'm using CW > > There's a whole chapter on debugging your application in the Targeting Palm > OS manual PDF file included with C

Re: mathlib question

2004-03-07 Thread Ben Combee
At 02:26 AM 3/7/2004, you wrote: I am using Simulator OS 5.3 debug how to use the debugger? i'm using CW There's a whole chapter on debugging your application in the Targeting Palm OS manual PDF file included with CodeWarrior. BTW, I tried my test with the debug version of the OS 5.3 PalmSim, an

Re: mathlib question

2004-03-07 Thread KEN
"Ben Combee" <[EMAIL PROTECTED]> ??? news:[EMAIL PROTECTED] ???... > At 02:03 AM 3/7/2004, you wrote: > >hi, i have problem when using functions like sin, cos, tan : > > > >-- > >include "MathLib.h" > > > >doublevalue; > >FlpCompDoubletem

Re: mathlib question

2004-03-07 Thread Ben Combee
At 02:03 AM 3/7/2004, you wrote: hi, i have problem when using functions like sin, cos, tan : -- include "MathLib.h" doublevalue; FlpCompDoubletemp; Char str[10]; value = cos(0.5); temp.d=value; FlpFToA(temp.fd, str); WinDrawChars(str

mathlib question

2004-03-07 Thread KEN
hi, i have problem when using functions like sin, cos, tan : -- include "MathLib.h" doublevalue; FlpCompDoubletemp; Char str[10]; value = cos(0.5); temp.d=value; FlpFToA(temp.fd, str); WinDrawChars(str, StrLen(str), 80, 80); ---