Re: Generating MIDI signal from craddle

2003-03-27 Thread Dennis Leas
information can be found at: http://www.crudites.org/soundventures/handheld-music/ though some of the links are out-of-date. Dennis Leas --- [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support

Re: What is faster ?

2003-03-13 Thread Dennis Leas
an hour. Just an idea... Dennis Leas --- [EMAIL PROTECTED] - Original Message - From: Chris Apers [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 9:42 AM Subject: What is faster ? Hi, I'd like to know what function is faster

Re: A quite complicated problem

2003-03-04 Thread Dennis Leas
Good advice. Also, I don't see you checking the return value or error code of: SavedRegion = WinSaveBits(wholeScreenRect, rectErr); so my guess is that SavedRegion is NULL, hence WinRestoreBits() fails. Dennis Leas --- [EMAIL PROTECTED] - Original Message

free advice

2003-02-19 Thread Dennis Leas
expressed (and this posting is ALL opinion) is my own. Best wishes, Dennis Leas --- [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: free advice

2003-02-19 Thread Dennis Leas
because a program seems to produce the expected result, doesn't mean that it is working correctly. Looking inside the program via a debugger or some other method is essential. And so is reasoning. (Hey, wait! I seem to be standing on a soapbox of a sudden!) Dennis Leas --- [EMAIL

Re(2): free advice

2003-02-19 Thread Dennis Leas
From: George Henne [EMAIL PROTECTED] My favorite doc to refer people to is Eric Raymonds How to ask questions the smart way. You can find it here: http://www.catb.org/%7Eesr/faqs/smart-questions.html Good link! Thanks! Dennis Leas --- [EMAIL PROTECTED

Re free advice

2003-02-19 Thread Dennis Leas
Whadda'ya mean, all of a sudden? Weren't you standing on one before? ;-) Mark Peters Uhmm, yes! But I hadn't noticed (...fallible human mind, mine). :D - Dennis Leas Dennis Leas [EMAIL PROTECTED] wrote in message news:114212@palm-dev-forum... [...] Yes, indeed! the human mind

Re: Opinions on Expectation of problems with a known invalid global data access.

2003-02-12 Thread Dennis Leas
Doesn't this amount to reading a value from an ill-defined location then taking an action based on the value? Sounds like trouble brewing... Dennis Leas --- [EMAIL PROTECTED] - Original Message - From: Kevin OKeefe [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL

Re: Palm VII RS232 Situation

2003-01-29 Thread Dennis Leas
with this situation. Any suggestions? I have an app that sends/receives MIDI to/from the serial port. It sends/receives a *lot* of data w/o problems. I've tested it on III's, a Vx and a VIIx with no observable problems or differences. What kind of problems are you seeing on the VII? Dennis Leas

Setting text to a Field

2003-01-27 Thread Dennis Leas
Have you looked at FldSetText()? -- Dennis Leas --- [EMAIL PROTECTED] RĂ©gis Daniel de Oliveira [EMAIL PROTECTED] wrote in message news:LYRIS-59060-153819-2003.01.27-10.50.27--dennis#greenteasoftware.com@new s.palmos.com... Hy! How can i set the text of a field at runtime

Re: Palm OS Programming Bible, 2nd Ed. ?

2003-01-24 Thread Dennis Leas
your book, thank you very much.) Hence I was suspicious of Palm OS Programming Bible due to its size. I was pleasantly surprised. Highly recommended. Hope this helps. Dennis Leas --- [EMAIL PROTECTED] - Original Message - From: Ron Nicholson [EMAIL PROTECTED] To: Palm

Re: Free memory

2003-01-24 Thread Dennis Leas
This code should do it: UInt16 hId = MemHeapID( 0, 0 ) ; UInt32 nFree, maxChunk ; MemHeapFreeBytes( hId, nFree, maxChunk ) ; Doesn't that return just the number of free bytes in the dynamic heap? I.e., it doesn't include free bytes in the storage heap? Dennis Leas

Re: Codewarrior 8 Palm Problem in double multiplication !?

2003-01-24 Thread Dennis Leas
is mistaken? (BTW: Emulated FP is not intrinsically less accurate/precise than hardware FP.) Dennis Leas --- [EMAIL PROTECTED] - Original Message - From: Dave Lippincott [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Friday, January 24, 2003 3:45 PM

code splitting help

2003-01-16 Thread Dennis Leas
information on how to do this? Any help is much appreciated. Sincerely, Dennis Leas --- [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: illegan implicit convertion from unsigned long * to unsigned long

2003-01-16 Thread Dennis Leas
Looks to me like it's probably the third arg. bytes is a UInt32 * and the Palm OS Ref says it should be a UInt32: Prototype UInt32 ExgSend (ExgSocketType *socketP, const void *bufP, UInt32 bufLen, Err * err) Dennis Leas --- [EMAIL PROTECTED] - Original Message - From