Re: threads in palm os

2005-09-23 Thread Logan Shaw
[EMAIL PROTECTED] wrote: I would like to create some threads for my palm application on palm os 5. Well, then you're going to be disappointed. I could not find any help on this. There's a reason for that: Palm OS does not support threaded applications. - Logan -- For information on

Re: threads in palm os

2005-09-23 Thread kiranp
Hi Logan, Is there any other option for Threads in Palm? Like Asynchronous operations? Thanks in Advance. .. KiraN Puranik -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: netErrNoInterfaces Error

2005-09-23 Thread kiranp
Hi Logan, Thank you very much .. your solution solved my problem. Now I can send some data through sockets. Now I am facing a problem in receiving a data thrg sockets. When I try to call the fallowing function it gives me 4625 netErrInternal code for receiving: void *dataToRead;

Re: netErrNoInterfaces Error

2005-09-23 Thread Logan Shaw
[EMAIL PROTECTED] wrote: When I try to call the fallowing function it gives me 4625 netErrInternal code for receiving: void *dataToRead; char* gotdata; result = NetLibReceive(AppNetRefnum, socket, dataToRead, 10, 0, NULL, NULL, -1, error ); This code doesn't show that you're

Re: threads in palm os

2005-09-23 Thread Henk Jonas
[EMAIL PROTECTED] wrote: Hi Logan, Is there any other option for Threads in Palm? Like Asynchronous operations? Thanks in Advance. .. KiraN Puranik Alarms, notifications, you even can reuse the sound callback. --

RE: threads in palm os

2005-09-23 Thread David Birdsall
You could implement something yourself, like a collection of 'Runnable' Tasks in C++ or function pointers in C, and call them from a nilEvent handler? You'd probably have to have some code to manage priorities also and you'd have to make sure your tasks didn't block - perhaps model the tasks as

Textual Resource definition

2005-09-23 Thread Smitha V. Babu
hi, Does anyone knows how to write textual resource definition for palmos resources. Is there any document related to this topic. We are planning to use XML files as resource definition. regds smitha ___ Novo Yahoo! Messenger

Re: netErrNoInterfaces Error

2005-09-23 Thread kiranp
Hi Logan, Thanks for your reply. Yup, that was a mistake. Now I can also receive the data. thanks again. .. KiraN Puranik -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: threads in palm os

2005-09-23 Thread kiranp
Thanks all, Now I got some hints .. .. Thanks again. .. KiraN Puranik -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Rules on using FtrPtrNew

2005-09-23 Thread Sinisa Marovic (AC/EDD)
Yes but what about my question about registering it? How is it done? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Rules on using FtrPtrNew

2005-09-23 Thread Hynek Sladky
http://www.palmos.com/creatoriddown.html Hynek Sladky Sinisa Marovic (AC/EDD) wrote: Yes but what about my question about registering it? How is it done? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Rules on using FtrPtrNew

2005-09-23 Thread Sinisa Marovic (AC/EDD)
Thanks. It took me half an hour to find a non-reserved creator ID. * -Original Message- * From: [EMAIL PROTECTED] * [mailto:[EMAIL PROTECTED] * Sent: Friday, 23 September, 2005 12:44 * To: Palm Developer Forum * Subject: Re: Rules on using FtrPtrNew * * *

RE: Rules on using FtrPtrNew

2005-09-23 Thread David Birdsall
the quickest way is to choose a meaningless random one that is most likely not reserved. it's only a random number anyway -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Sinisa Marovic (AC/EDD) Sent: 23 September 2005 12:05 To: Palm Developer Forum Subject:

RE: Rules on using FtrPtrNew

2005-09-23 Thread Sinisa Marovic (AC/EDD)
Don't you think I trid that? I only found it when I introduced numbers. * -Original Message- * From: [EMAIL PROTECTED] * [mailto:[EMAIL PROTECTED] * Sent: Friday, 23 September, 2005 13:18 * To: Palm Developer Forum * Subject: RE: Rules on using FtrPtrNew * * * the quickest way is to

Re: After Resolving Segmentation Problem ,Float Value Error

2005-09-23 Thread Jeetu
Hi jeff, I have Resolved the Segmentation issue but now i m having Problem with my Float Values ,my Function is not able to store Float values.It is giving me Invalid Ptr error. What i have Done, I have defined 2 segments,out of which Some One Database Fn's are in Segment1 and Second

Re: After Resolving Segmentation Problem ,Float Value Error

2005-09-23 Thread Ton van Overbeek
On 2005-09-23, Jeetu [EMAIL PROTECTED] wrote: snip I debugged it and ifound it is showing me the error in this Fn at FlpBufferAToF(result,0); Global declaration:- FlpDouble *result; I m Totally Confused any guesses what might could be the problem ? Your result pointer has to point to

Re: wither art DropInCompilerLinker.h

2005-09-23 Thread cbruner
I've found the Extra's directory on the CD, but I'm afraid of installing it incorrectly. I can't find any docs about installing it locally (or otherwise). Could you point me to a reference, or let me know what directorys the ide expects to find them in, (and anything else about installing that

Re: Filestreams seen by HotSync Manager?

2005-09-23 Thread David Thacker
Luc, All you need to do is set the backup bit on the filestream, and the Backup conduit will handle it like other databases. In my experience, it is better to set the backup bit on the filestream immediately after closing it, using regular Dm* calls, as opposed to the option of setting it

Re: wither art DropInCompilerLinker.h

2005-09-23 Thread Ben Combee
At 10:31 AM 9/23/2005, you wrote: I've found the Extra's directory on the CD, but I'm afraid of installing it incorrectly. I can't find any docs about installing it locally (or otherwise). Could you point me to a reference, or let me know what directorys the ide expects to find them in, (and

RE: File Save dialog for VFS?

2005-09-23 Thread Tam Hanna
Hi Luc, I asked a similar question some time ago and didn't find anything suitable. Thus, I am right now developing a file opening selection dialog that is simple, but should work well nevertheless. I can already show you screenshots of it working, but I cannot give it to you because of: a)It is

Re: threads in palm os

2005-09-23 Thread Logan Shaw
David Birdsall wrote: You could implement something yourself, like a collection of 'Runnable' Tasks in C++ or function pointers in C, and call them from a nilEvent handler? You'd probably have to have some code to manage priorities also and you'd have to make sure your tasks didn't block -

Re: File Save dialog for VFS?

2005-09-23 Thread Henk Jonas
In order to reassure my users about the safety of their tediously acquired cave survey data, who worry about a crash or power failure or breaking the device, I would like to offer a menu item to save the current database to a memory card. Is there such a thing as a file save dialog for VFS,

RE: Device Debugging: Connection Attempt Failed Error:

2005-09-23 Thread David Dionne
Hey guys...in order for this to work you have to MOVE not copy the USBPort.dll file. I am successfully debugging with 8 650's on 15 different machines running xp or server 2003, on dell branded desktops, servers and laptops, sony branded desktops and laptops, homemade amd 64bit fx on abit mobo,

Re: After Resolving Segmentation Problem ,Float Value Error

2005-09-23 Thread Jeetu
Thats the same thing i m doing with that Function initializing *result,with this Fn. FlpBufferAToF(result,0); Indeed this use to work previously. Any other Possibilities. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see