Re: how to read the address book db?

2007-11-05 Thread victorp king
i am enjoying tero680 ,which one u test on? there is anothing i want to know , dose GODS have this 'PIM' sdk ? 2007/11/6, Michal Seliga <[EMAIL PROTECTED]>: > > go to pdn.palm.com, register yourself and download pim sdk. everything is > there > alternatively you may use contacts library, but it ne

Problem on Tungsten E2

2007-11-05 Thread Baxter
When I try to sync, I get the error SYNCERR_LOST_CONNECTION (0x10006410) when the code hits SyncDeleteDB. On the Palm itself, it says 'Out of storage space' -- it has 25.2M out of 29.7M free, and 84% free, As near as I can determine, this happens only on the Palm Tungsten E2 (I have 2 cases).

Re: non-standard font alignment

2007-11-05 Thread Lionscribe
Just call the following function to center the object. You will have to call FrmDrawForm when done. void CenterObject(FormType * formP, UInt16 objectID) { RectangleType rect, rectForm; UInt16 objIndex = FrmGetObjectIndex(formP, objectID); FrmGetObjectBounds(formP, objIndex, &rect); FrmGetFormBoun

Re: multi-segment shared library

2007-11-05 Thread Lionscribe
See http://www.mail-archive.com/palm-dev-forum@news.palmos.com/msg99330.html -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: non-standard font alignment

2007-11-05 Thread Lionscribe
Just call this function to center the object. You will have to call FrmDrawForm when done. void CenterObject(FormType * formP, UInt16 objectID) { RectangleType rect, rectForm; UInt16 objIndex = FrmGetObjectIndex(formP, objectID); FrmGetObjectBounds(formP, objIndex, &rect);

re: multi-segment shared library

2007-11-05 Thread Jeremy Brown
I guess it depends on what bug you are talking about. Glib only releases the first code segment when your application quits, so you get errors that way. You have to release the other code segments yourself. Code like this should be put in your first code segment and called before you exit the

Re: non-standard font alignment

2007-11-05 Thread JSeb
Thank you for your answer, Michal. So what you say is, build the forms programmaticaly? That's what I was afraid of. I guess that's one reason why most static forms I can find seem to be left-aligned. -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http

Re: non-standard font alignment

2007-11-05 Thread Michal Seliga
you can patch pilrc from sources and set correct char widths with it. thats only way i am aware of. problem is that pilrc doesn't store RIGHT, CENTER etc. in resources (palm doesn't know such things) but it calculates dimensions and coordinates from text and used font. idf later font is changed its

Re: how to read the address book db?

2007-11-05 Thread Michal Seliga
go to pdn.palm.com, register yourself and download pim sdk. everything is there alternatively you may use contacts library, but it never worked for me maybe you will be more lucky. its part of sdk downloadable from pdn.palm.com victorp king wrote: > hi, guys: >who knows how to read

non-standard font alignment

2007-11-05 Thread JSeb
Hi Palm developpers and gurus. I’m pretty sure this has already been answered somewhere, but I couldn’t find it. I’m using PilRC to construct my forms. I noticed that when I don’t use the standard font set on my palm (e.g., through fontsmoother), the font alignment on my forms is broken (speci

how to read the address book db?

2007-11-05 Thread victorp king
hi, guys: who knows how to read address db of palm PIM , and what's the structure like ? 3x! -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

multi-segment shared library

2007-11-05 Thread Sasha Trukhny
Hi all, Somebody knows how to create multi-segment shared library? Glib has bug with multi-segments. Classical Palm OS shared library can have only one code section. Is there some way to create multi-segment shared library? Thanks. Sasha Trukhny. -- For information on using the ACCESS Developer