Handle auto-repeating hard button

2008-02-20 Thread Oleg Ignatov
Hello All, User can hold some hard button (for example side button on T3). I want to handle this event. I subscribe to appropriate notification sysNotifyVirtualCharHandlingEvent. And once I receive it I do simple checking of the hard button pressing: SysNotifyVirtualCharHandlingTag* tag = (Sys

Re: Blank screen with reset button

2008-02-20 Thread Ryan Rix
Try playing with the debug prefs tool in the palm, inc sdk or crashpro (79bmedia.com iirc). Should help you get the real text of the crash dialog... ~ryan Dmitry Grinberg wrote on 2/20/08 10:59 pm >68k serial handler? >those aren't too stable in os5 > >On 2/20/08, Viswanathan ><[EMAIL PROTECT

Re: Blank screen with reset button

2008-02-20 Thread Dmitry Grinberg
68k serial handler? those aren't too stable in os5 On 2/20/08, Viswanathan <[EMAIL PROTECTED]> wrote: > Dear All, > I am using Z22. > I have an application(Product) which will interact with my hardware using > serial port. > The product is fine and application also running smoothly. > But in

Blank screen with reset button

2008-02-20 Thread Viswanathan
Dear All, I am using Z22. I have an application(Product) which will interact with my hardware using serial port. The product is fine and application also running smoothly. But in very rare cases the palm is getting hanged and a blank screen appears with reset button. I can not hit the reset but

RE: Any free XML parser for Palm OS?

2008-02-20 Thread Hudo Rodrigues de Almeida
Ok. Thank you very much. At first glance, I thought it was a charged XML parser, but after your mail I saw it has a free license. Thanks for the warning. Rgds, Hudo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Ardiri Sent: Wednesday, February 2

Re: Any free XML parser for Palm OS?

2008-02-20 Thread Aaron Ardiri
your not looking hard enough... http://www.llamagraphics.com/LlamaXML/index.php On Wed, Feb 20, 2008 at 7:20 PM, Hudo Rodrigues de Almeida <[EMAIL PROTECTED]> wrote: > Hi, Aaron and all the others… > > The links mentioned by Aaron at Google did not serve to me, because my code > is C++. If it w

RE: Any free XML parser for Palm OS?

2008-02-20 Thread Hudo Rodrigues de Almeida
Hi, Aaron and all the others... The links mentioned by Aaron at Google did not serve to me, because my code is C++. If it were Java, things would be easier. I could find out this XML parser here: http://cytheric.net/ Currently, I am trying to build the project on PODS. Rgds, H

RE: Any free XML parser for Palm OS?

2008-02-20 Thread Hudo Rodrigues de Almeida
Hi, Aaron... Thanks for answering. I will try this. Rgds, Hudo There is some stuff out there. I worked on a project a long time ago that I believe used DOM. If you google the phrase: Palm XML parser, you will find what you are looking for. -Aaron Hansen ___

Re: Any free XML parser for Palm OS?

2008-02-20 Thread Aaron . Hansen
There is some stuff out there. I worked on a project a long time ago that I believe used DOM. If you google the phrase: Palm XML parser, you will find what you are looking for. -Aaron Hansen [EMAIL PROTECTED] wrote on 02/20/2008 06:00:39 AM: > Hi, > > I would like to know whether there is

Re: Debugging and finding memory leaks

2008-02-20 Thread Aaron . Hansen
Hello, I would suggest going to the palm developers site and reading some data there: https://pdn.palm.com/regac/pdn/index.jsp If you aren't registered then register and check out the knowledge base there for an article on how to debug Palm apps. I don't use the PODS myself, so I can't give

Re: Detect hard button pressing

2008-02-20 Thread Ryan Rix
Hi, If you go that way, please please please, use a callback and not a launch code!!! ~Ryan On 2/20/08, Hynek Sladky <[EMAIL PROTECTED]> wrote: > > What about sysNotifyEventDequeuedEvent and keyDown event? > > Hynek Sladky > > > Oleg Ignatov wrote: > > I have registered for notification sysNoti

Re: netErrParamErr

2008-02-20 Thread SRAVAN SAINEDI
or it can be malfaromed client packet. On 2/20/08, Ekra <[EMAIL PROTECTED]> wrote: > > The problem might be at server side > -- > For information on using the ACCESS Developer Forums, or to unsubscribe, > please see http://www.access-company.com/developers/forums/ > -- For information on using t

Any free XML parser for Palm OS?

2008-02-20 Thread Hudo Rodrigues de Almeida
Hi, I would like to know whether there is some free XML parser for Palm OS. I could find out some few XML parsers but with charge. Actually, I would prefer to have Xerces/DOM for Palm OS, since I have already developed a solution for this parser (but for Windows :-( ). Developing a XML

Re: Detect hard button pressing

2008-02-20 Thread Hynek Sladky
What about sysNotifyEventDequeuedEvent and keyDown event? Hynek Sladky Oleg Ignatov wrote: I have registered for notification sysNotifyVirtualCharHandlingEvent. Once some hard button is pressed I receive notification and launch my application with SysUIAppSwitch(cardNo, dbID, sysAppLaunchCmd

Re: Detect hard button pressing

2008-02-20 Thread Oleg Ignatov
I have registered for notification sysNotifyVirtualCharHandlingEvent. Once some hard button is pressed I receive notification and launch my application with SysUIAppSwitch(cardNo, dbID, sysAppLaunchCmdNormalLaunch, NULL); But before starting my application Palm handle this event itself. So after