Tablr remove label focus

2007-02-07 Thread Rabbi
I have a table in which first field label is automatically selected I want to remove that selection. i have never work with tables. thats why i dont know much about tables. TblReleaseFocus doesnt works for that. Any Help would be highly appriciated -- For information on using the PalmSourc

Re: beaming pdb

2007-02-07 Thread Sriram V
thanks Jeff. this is precisely what i wanted. On 2/8/07, Jeff Loucks <[EMAIL PROTECTED]> wrote: All kinds of utilities to do that. An example is FileZ. Google around and check out the various download sites. On 2/7/07, V. Sriram <[EMAIL PROTECTED]> wrote: > hi all, > please help me out on this

Re: beaming pdb

2007-02-07 Thread Jeff Loucks
All kinds of utilities to do that. An example is FileZ. Google around and check out the various download sites. On 2/7/07, V. Sriram <[EMAIL PROTECTED]> wrote: > > hi all, > please help me out on this one. how can i beam any database from a palm > device. when i select beam option from the menu,

beaming pdb

2007-02-07 Thread V. Sriram
hi all, please help me out on this one. how can i beam any database from a palm device. when i select beam option from the menu, it only lists all the prc files. even send or copy to expansion card options list only the prc files. thanks and regards, sriram -- For information on using the PalmSo

Re: Reasonable Use of a Form?

2007-02-07 Thread Alan Ingleby
I have a library function which draws a bitmap over the middle of the screen, and updates a progress bar on it. I use this for lengthy calculations etc. It also does a save behind, so the original screen content it blocked. Alan On 2/8/07, Lionscribe <[EMAIL PROTECTED]> wrote: > > I do it all t

Re: Checksums in Overlays

2007-02-07 Thread Alexander R. Pruss
You can do chain checksumming by feeding each checksum as a seed to the next call to the checksum routine (and starting at zero). -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Reasonable Use of a Form?

2007-02-07 Thread Lionscribe
I do it all the time for short computations. The functions FrmInitForm, FrmDrawForm, FrmEraseForm, FrmDeleteForm do not cause events. But in long computations it is only fair to let user cancel in middle, especially on a Treo where a Phone Call may be coming in. Either use a separate event loop,

Re: Checksums in Overlays

2007-02-07 Thread Lionscribe
Thnaks for the info. But how do I calculate the following value, which is declared as UInt32baseChecksum; // Checksum of all overlays[].checksum How do I put all the overlays[].checksum together Lionscribe -- For information on using the PalmSource Developer Forums, or to unsubscribe, pleas

Re: Reasonable Use of a Form?

2007-02-07 Thread Hal Mueller
I don't think you can guarantee that no other events occur (and are intercepted by the system or other apps). I believe the following sequence is possible: --WaltApp learns that long computation is needed. --WaltApp calls FrmInitForm --datebook appointment alarm is triggered, system switches to

Re: Email account application in PALM OS.

2007-02-07 Thread P. Douglas Reeder
On Feb 7, 2007, at 12:10 PM, Tushar wrote: 1. Is their any free email client available for Palm environment? http://www.eudora.com/download/eudora/eis/palm/2.0/ -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/fo

Re: novice developer tools

2007-02-07 Thread John Jenusaitis
Something like that won't teach you programming. Try downloading the PalmOS Developer Suite and looking at some of their samples. There are a handful of good Palm OS programming books out there as well. Dina Aronson wrote: Greetings, I am just starting to learn about developing for the Palm

novice developer tools

2007-02-07 Thread Dina Aronson
Greetings, I am just starting to learn about developing for the Palm OS, and am seeking the best route to learn programming. Until then... I need a bridge to doing it all myself. Does anyone have an opinion on this product? http://www.pdatoolbox.com/ It says, "If you have a Palm OS organizer, an

Re: Email account application in PALM OS.

2007-02-07 Thread Michal Seliga
i found that code which works with versamail also works with snappermail and chattermail. sometimes you have to test which application is set as default one (using helper api) if more of them is installed on device. i never tried any other mailer, these are all which i know Borszczuk wrote: > Tus

Re: Email account application in PALM OS.

2007-02-07 Thread Neil Whitworth
Tushar wrote: Hi All, I have few questions in Palm OS application development, 1. Is their any free email client available for Palm environment? Versamail is shipped on most modern palm devices. There are several other e-mail apps. Don't know if any are free. 2. What are the exposed inter

RE: Palm OS Developer Suite

2007-02-07 Thread Alexander R. Pruss
I learned PalmOS programming essentially by finding an open source project that interested me, and then improving it piece by piece. This is a good learning strategy if one doesn't right now have a particular app one really wants to develop from scratch. -- For information on using the PalmSou

Re: Email account application in PALM OS.

2007-02-07 Thread Borszczuk
Borszczuk wrote: > expect you take the control over MTA. MUA of course, not MTA. Both shall remain immune anyway ;) Regards, -- "Daddy, what "Formatting drive C:" means?"... Marcin http://wfmh.org.pl/carlos/ -- For information on using the PalmSource Developer Forums,

Re: Email account application in PALM OS.

2007-02-07 Thread Borszczuk
Tushar wrote: > 1. Is their any free email client available for Palm environment? Never heard of any free and useable (neither of any free). freewarepalm.com lists none in that subjects too. > 2. What are the exposed interfaces for the same? > 3. If their are interfaces available then how do i a

Email account application in PALM OS.

2007-02-07 Thread Tushar
Hi All, I have few questions in Palm OS application development, 1. Is their any free email client available for Palm environment? 2. What are the exposed interfaces for the same? 3. If their are interfaces available then how do i access these interfaces in my application? Please help me out...

Re: Error Loading Net.lib

2007-02-07 Thread Dmitry Grinberg
error 0xFFE1 i think is system telling you no more free lib slots. make sure you unload the library correctly and completely. On 2/7/07, JamesSturdevant <[EMAIL PROTECTED]> wrote: I don't think that's it. I only have one socket open at a time and the failure is on the SysLibLoad at the start of

Re: Error Loading Net.lib

2007-02-07 Thread JamesSturdevant
I don't think that's it. I only have one socket open at a time and the failure is on the SysLibLoad at the start of the program. There is an error code for out of sockets. The sequence is: Open connection: User cancels connection (appStop) Connection is closed Net.lib is unloaded Program start

Re: Reasonable Use of a Form?

2007-02-07 Thread Walt Bilofsky
Borszczuk <[EMAIL PROTECTED]> wrote: >Walt Bilofsky wrote: >> My app needs to put up a message while it is doing a possibly long >> operation, within one event. >> Is it possible to just call FrmInitForm and then FrmDrawForm to draw > >Maybe you shall consider using Progress Manager for? > Thanks

Re: Reasonable Use of a Form?

2007-02-07 Thread Alexander R. Pruss
Or you can just draw a box, save what's behind it, and put text in it. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Problem with AlmSetProcAlarm

2007-02-07 Thread Alexander R. Pruss
Do you actually want the scheduled alarms to be going off with the device sleeping? If yes, then I wonder if you're registering for early or late wakeup? Since proc alarms aren't supposed to wake up the device, I am guessing that at least late wakeup ('lazy'--someone has a sense of humor) shou

re: Checksums in Overlays

2007-02-07 Thread Alexander R. Pruss
Standard CRC-16, with 0 seed, stored big endian (if memory serves, it's stored in a UInt32 which kind of confused me at first as I thought it was a CRC-32, but it's just a CRC-16 with the two high bytes zero in the UInt32). The Palm's CRC functions work just fine for this. Yes, you can just ge

rebuilding ContactsDBIndex-PAdd.pdb

2007-02-07 Thread Borszczuk
Hi, Anyone aware of ContactsDBIndex-PAdd rebuilding tool? Calendar crashes nicely if it's gone, neither Contacts rebuild it. Regards, -- "Daddy, what "Formatting drive C:" means?"... Marcin http://wfmh.org.pl/carlos/ -- For information on using the PalmSource Developer

Re: Reasonable Use of a Form?

2007-02-07 Thread Borszczuk
Walt Bilofsky wrote: > My app needs to put up a message while it is doing a possibly long > operation, within one event. > Is it possible to just call FrmInitForm and then FrmDrawForm to draw Maybe you shall consider using Progress Manager for? Regards, -- "Daddy, what "Formatting drive C:" mean