Re: USB vs. serial communication on Palms with OS 4?

2002-09-13 Thread Dave Lippincott
Read the chapter on the serial manager in the SDK docs. Its short and should answer you questions. - Original Message - From: "Frantisek Dufka" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Friday, September 13, 2002 8:12 AM Subject:

Re: What (if any) is the Palm commitment to PRC-TOOLS

2002-09-13 Thread Aaron Ardiri
> >> 1. goto http://www.cygwin.org/ > > > > www.cygwin.com > > > > geeze, having a good day today :) > > > > Open note to PalmSource.. > > When Aaron gets through with correcting his seven or eight step > install process (grin), and if someone else can verify the steps > are correct, then

How to access SD/MMC card as a block device?

2002-09-13 Thread Frantisek Dufka
Hello, is there an API in PalmOS for accessing formated or unformated SD/MMC card in my M500 as a block device? I've seen the picture at http://www.palmos.com/dev/support/docs/palmos/ExpAndVFSConcepts.html#1000953 Is there an API for using slot driver or Expansion manager to access the card?

Re: lstSelectEvent

2002-09-13 Thread Joe Malone
--- "Lauren B. Robert" <[EMAIL PROTECTED]> wrote: > Hi All, >I managed to solve the problem. I swapped the placing of > lstSelectEvent with the frmOpenEvent and everything works. Sorry for > the trouble everyone. > If swapping around case blocks in a switch statement affects how your progra

Re: Shuffling records !!!

2002-09-13 Thread Dave Lippincott
Why not leave the records in the DB in the order they were created and just shuffle your access to them? - Original Message - From: "Sebastian from Berlin/Germany" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, September 12, 2002 6:17 PM Subject: Shuffl

Re: What (if any) is the Palm commitment to PRC-TOOLS

2002-09-13 Thread Stringer
>Subject: Re: What (if any) is the Palm commitment to PRC-TOOLS >From: "Aaron Ardiri" <[EMAIL PROTECTED]> >Date: Thu, 12 Sep 2002 09:30:52 +0200 > >> 1. goto http://www.cygwin.org/ > > www.cygwin.com > > geeze, having a good day today :) > Open note to PalmSource.. When Aaron gets through

USB vs. serial communication on Palms with OS 4?

2002-09-13 Thread Frantisek Dufka
Hello, can someone explain how the serial vs. USB communication is done in PalmOS on my M500? When I hotsync I use the same Connection in Preferences called Cradle/Cable. It works via serial and USB. I found out that when i open serial port from Palm side and the palm is in USB cradle, it com

Re: CodeWarrior question

2002-09-13 Thread Ben Combee
At 09:24 PM 9/12/2002 -0700, you wrote: >I have a wierd issue in code warrior. > >I have been extemely spoiled by the all of the color coding that you can >setup in CodeWarrior ( vs. that of Visual Studio ). However, when I build >my app in DEBUG mode vs. Release mode, I lose my color coding! Ha

Re: Link Error

2002-09-13 Thread Ben Combee
At 02:19 PM 9/13/2002 +0800, you wrote: >Hi. > >I'm new to CodeWarrior IDE. There are two forms (MainForm and >SecondForm) and one header file (Starter.h). When doing the >compilation: > >Link Error : Starter.cpp: 'MainFormHandleEvent(EventType*)' >referenced from 'AppHandleEvent(EventType*)' is

Re: Shuffling records !!!

2002-09-13 Thread Sebastian from Berlin/Germany
I thought about this, but didn't dmquicksort compares neigbouring records? Then it needs many many walkthrougs before a record from position 1 is changed to be record number 300. Wouldnt the random here be to random ? (in the middle = 0) Greets Sebastian On 13 Sep 2002 at 9:52, Ludovic Ferrand

Re: lstSelectEvent

2002-09-13 Thread Lauren B. Robert
Hi All, I managed to solve the problem. I swapped the placing of lstSelectEvent with the frmOpenEvent and everything works. Sorry for the trouble everyone. Many Thanks. Regards Lauren _ Play the ElvisĀ® Scratch & Win for your chan

Re[3]: Table Problem

2002-09-13 Thread Dmitry S. Denisov
Hello Vikas, Try to look at nice tutorial about PalmTables: http://www3.sympatico.ca/howlettfamily/palmos/Tables_HOWTO.html Best regards, Dmitrymailto:[EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://w

Bitmap colours

2002-09-13 Thread James Screech
I'm using colour bitmaps in the application I'm currently developing, one particular one contains the different shades of green. On POSE with a m505 PalmOS 4.0 rom it is displayed correctly but on an actual m505 it is displayed as shades of orange! Other similar bitmaps are displayed correctly (gr

Re: Link Error

2002-09-13 Thread Vikas Lakkashetti
Hi Quennie, Check out the following 1.The MainFormHandleEvent and SecondFormHandleEvent have a prototype defined either in the same file or in some .h file. 2.I hope the Project Access Paths are set to appropriate values. The same can be found under Edit->Debug/Build Settings Do lemme know aftet c

Re: RE: Table Problem

2002-09-13 Thread Vikas Lakkashetti
How will the DrawEnterprise function be called when TblSetCustomDrawProcedure is set to DrawNom ?? Vikas -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Shuffling records !!!

2002-09-13 Thread Ludovic Ferrandis
It would not be more simple to simply call DmQuickSort? And in the callback function, you implement something that randomly return -1, 0 or +1 (Something like SysRandom()%3 - 1, but better) Ludovic, from Montpellier/France :) Henk Jonas wrote: > > DmMoveRecord ? > > Henk, from Berlin too > >

Re: RE: Table Problem

2002-09-13 Thread [EMAIL PROTECTED]
No, DrawEntreprise function is not called at all. Helene > Helene, > > is your DrawEntreprise function called at all? > > Henk > > [EMAIL PROTECTED] wrote: > > > Yes it's true, I have changed it but it doesn't work anymore. > > > > > > > >>Since you use a custom draw callback function to draw t

Re: Link Error

2002-09-13 Thread siewti_keng
Yes. I do have the AppHandleEvent(EventType*) function in the Starter.cpp(main cpp). Besides, the MainFormHandleEvent(EventType*) and SecondFormHandleEvent(EventType*) are in MainForm.cpp and SecondForm.cpp respectively (which forms do their functions at form level). I have declared the func