nilEvent not generated when I have focus to my field

2005-11-08 Thread kiranp
Hi All, I want to process someting( some task ) whenever there is free time .. i.e. nilEvent. But when I have a focus to my Field on my form ( cursor keeps blinking ) at that time no nilEvent gets generated. Is this behaviour is normal? How can I get rid of this? I want my task to be complet

Re: Is there StrToUpper like StrToLower?

2005-11-08 Thread kiranp
Hi Henk, No CW .. I am using PODS. I added a lib in Windows>>Preference>>Palm OS Development>>Protein>>Libraries>> but I cannt see a option for a Garnet or Cobalt platform. there is a other option for path also, how can I give a path of lib? Sorry for newbies questions ... thanks. .. Kira

RE: Reading AppInfo block in DB

2005-11-08 Thread Jeffry Loucks
Errr.. I meant originally locked and later unlocked. Jeff Loucks Mobile 253-691-8812 -Original Message- From: Jeffry Loucks [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 4:05 PM To: Palm Developer Forum Subject: RE: Reading AppInfo block in DB You hav

RE: Reading AppInfo block in DB

2005-11-08 Thread Jeffry Loucks
You have incremented appInfoP, so it no longer points to the originally allocated memory. Save the pointer someplace to use in free(). Jeff Loucks Mobile 253-691-8812 -Original Message- From: Jim Duffy [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 3:57

Reading AppInfo block in DB

2005-11-08 Thread Jim Duffy
Hi All, I'm having trouble reading the app info block in my DB. I've written this kind of code before and it works fine when the AppInfo block is of a known size that can be directly assigned to a C struct. However, in this particular database, the app info block can be of an arbitrary size..

RE: Creating a database for my Palm application

2005-11-08 Thread Del Ventruella
There are. You may wish to consider whether you wish to pay a fee for each Palm device running the database software that you develop, then use that to decide which platform you use. The Palm developers web site has information on various tools, but a search of the web should provide even more

Re: deleting a program currenty on the palm

2005-11-08 Thread cbruner
Wow, I fell asleep this afternoon and when I woke up there was a dozen thoughtful answers. Very cool. I'm going to have to experiment with some of these solutions, (and any more that might popup). Thank you all for your time and thoughts. Chris Bruner Compulife Software Inc.

RE: How to find out if the network is connected

2005-11-08 Thread Jeffry Loucks
Title: Message Try the following:   1. Call NetLibOpenCount() to determine if NetLib is already open. 2. If not, call NetLibOpenIfCloseWait() to see if NetLib was recently closed and may not have already disconnected. 3. If not already open and not in close-wait state, the network is PROBA

Re: POL Gone?

2005-11-08 Thread Erico Franco
Jim Duffy wrote: Hi All, Does anyone know the status of the POL C++ library? The link to the website seems to be down.. http://www.pollib.com/ Jim A long time ago I heard that POL C++ lib would not be supported anymore. So I think that yes, it definitely gone. About the site content, Y

POL Gone?

2005-11-08 Thread Jim Duffy
Hi All, Does anyone know the status of the POL C++ library? The link to the website seems to be down.. http://www.pollib.com/ Jim -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Creating a database for my Palm application

2005-11-08 Thread dub_three
For my Senior project I decided to do a project with a GPS enabled Palm device (iQue 3600). This is my first attempt at a Palm application, plus my actual programming background is limited. I have my project about 85% done and the last real part (except for tweaks and improvements) is a databas

How to find out if the network is connected

2005-11-08 Thread Benjamin Bloomfield
Is there a way to find out on the Treo if it currently connected to the data network?  For example, when it is connected it shows two arrows above the bars symbolizing signal strength.  Also, if it is not connected and you go to the web browser, it will start connecting.  I need to know if it is go

Re: deleting a program currenty on the palm

2005-11-08 Thread Robert Moynihan
John Sutton wrote: Bob said... Using the recyclable bit would clean it up as soon as the user switches to another app, or upon reset, right? Just out of curiousity, if you did find a version mismatch and set this recyclable bit, would it clean it up and get the fresh version back from

RE: deleting a program currenty on the palm

2005-11-08 Thread John Sutton
Bob said... > Using the recyclable bit would clean it up as soon as the user > switches to another app, or upon reset, right? Just out of curiousity, if you did find a version mismatch and set this recyclable bit, would it clean it up and get the fresh version back from the sdcard if you were to r

Re: I need some functions

2005-11-08 Thread Eduardo Orea
Jagat.   Maybe the message attached, that was posted by you sometime ago can help you to consider to be more helpful in this forum. Keep in mind that the things that you've asked, can be basic questions to a senior palmos programmer.   Everyone needs helps from others.   Regards.   Eduardo Or

Re: deleting a program currenty on the palm

2005-11-08 Thread Frank Ableson
fwiw, we were presented with this "replace myself" challenge, and eventually settled upon using Nutshell installer...when you know the installer prc is on the device (which contains your new app and perhaps other required pdb's, etc...), launch the nutshell with a sysappuiswitch() and let it instal

PhoneNumberLookupCustom - Return string is null

2005-11-08 Thread Troy Lokitz
The code below works perfectly except that it doesn't return a return string and it automatically pastes the return to the field. I wan't to be able to get the return string and update the field on my own. It looks like the only way to do this is send a dummy fld and after the phone lookup, ge

Re: I need some functions

2005-11-08 Thread Eduardo Orea
What is wrong in helping others? not every one has such an experience programming C/C++ on palmos, this forum will be better if everyone can respond and point a much closer answer, this forum was made to share our knowledge. I also consider this question as one of the basics, Sanjib you should

Re: deleting a program currenty on the palm

2005-11-08 Thread Russell Cagle
Instead of my application deleting itself while running, my application renames itself to MyCoolApp_deleteme and then launches the version on the card. After being launched from the card, my application always checks for and deletes MyCoolApp_deleteme. Here's the code. Although it won't comp

Re: deleting a program currenty on the palm

2005-11-08 Thread Robert Moynihan
Ben Combee wrote: At 09:12 PM 11/7/2005, you wrote: Yes there is a reset when someone pulls the card and the program can no longer access the files it needs, so what you are describing is what I'm seeing. So back to the original question, I guess the answer is that if it is not deleted from

Re: deleting a program currenty on the palm

2005-11-08 Thread Ben Combee
At 09:12 PM 11/7/2005, you wrote: Yes there is a reset when someone pulls the card and the program can no longer access the files it needs, so what you are describing is what I'm seeing. So back to the original question, I guess the answer is that if it is not deleted from system memory then I

Re: deleting a program currenty on the palm

2005-11-08 Thread Eduardo Orea
Why don't you try to catch the event when the card is pulled out and simply enqueue an AppStopEvent so that your app exits at the time that the card was pulled out, this way you can get over the most cases where the user doesn't soft reset the device and your app will be deleted from the RAM, fo

Re: Replacement for Zire 72

2005-11-08 Thread Krish
Thanks for the info. But I am looking for a disconnected Palm PDA with integrated camera. Smartphone will be an overkill for our clients. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Is there StrToUpper like StrToLower?

2005-11-08 Thread Henk Jonas
[EMAIL PROTECTED] wrote: Hi Henk, Thanks for yr quick reply. Can you plz tell me how can I link that Library, coz I am getting linking error for that function. the path suggested in the documentation .. its already there in project "includes" path. i.e. Incs\Libraries\PalmOSGlue How can I

Re: DmSet

2005-11-08 Thread Del Ventruella
It took this, and it works: err = DmWrite(p, OffsetOf(TransStructType, BasekVA),&Record->BasekVA, sizeof(Record->BasekVA)); - Original Message - From: "Del Ventruella" <[EMAIL PROTECTED]> To: "Palm Developer Forum" Sent: Tuesday, November 08, 2005 8:51 AM Subject: Re: DmSet > Thanks

Re: Doubt on using HardKeys(vchHard1,..) in Treo 600 & 650.

2005-11-08 Thread babbu cathy
Thats right or not, that was my doubt. Now Its clear. Thanks. - cathy --- Robert Moynihan <[EMAIL PROTECTED]> wrote: > babbu cathy wrote: > > >Hi all, > > > >Can anyone clarify my doubts please.. > > > >In my project, "vchrHard1" for Treo 600 & 650 > device > >takes for "Phone" button. > >And "

Re: Drawing BitMap from Jpeg

2005-11-08 Thread Stefan Stolz
Doug Gordon wrote: I have not done much direct work with bitmaps and drawing in general, so pardon me if this is a basic question. I will be using pnoJpegLib to extract some JPEGs that were compressed on the PC and synced within a database. I have figured this out as far as extracting them out

Re: Is there StrToUpper like StrToLower?

2005-11-08 Thread kiranp
Hi Henk, Thanks for yr quick reply. Can you plz tell me how can I link that Library, coz I am getting linking error for that function. the path suggested in the documentation .. its already there in project "includes" path. i.e. Incs\Libraries\PalmOSGlue How can I link that Library? I tried

Re: DmSet

2005-11-08 Thread Del Ventruella
Thanks for the recommendation. I tried: err = DmWrite(p, OffsetOf(TransStructType, BasekVA),Record->BasekVA, sizeof(Record->BasekVA)); and the compliler is not pleased. The error generated asserts a conversion from an unsigned short to a constant void pointer. - Original Message - Fr

up to date device/os version matrix

2005-11-08 Thread Frank Ableson
Can anyone point me to an up to date matrix of palm os capable devices and their respective os level?  I have seen these floating around from time to time, but haven't noticed one lately.   thanks for any guidance.     Frank AblesonOffice Phone : 973 448 0070 x 304Cell Phone: 973 713 3690Fax:

RE: I need some functions

2005-11-08 Thread Tam Hanna
Hi, I would love to tell you STFU-but maybe, you just don't know about the resources. Google up the Palm OS Reference and the two Palm OS Companions from PalmSource. Then, look in the String manager section. Alternatively, email me and I can send you an old version I have on my Palm handheld for p

Re: Doubt on using HardKeys(vchHard1,..) in Treo 600 & 650.

2005-11-08 Thread Robert Moynihan
babbu cathy wrote: Hi all, Can anyone clarify my doubts please.. In my project, "vchrHard1" for Treo 600 & 650 device takes for "Phone" button. And "vchrHard2" takes for "Calendar". Is this correct? Or wrong? That sounds right. What are your doubts? Bob -- For information on using the

Re: deleting a program currenty on the palm

2005-11-08 Thread Robert Moynihan
cbruner wrote: Yes there is a reset when someone pulls the card and the program can no longer access the files it needs, so what you are describing is what I'm seeing. So back to the original question, I guess the answer is that if it is not deleted from system memory then I must assume that

Re: Drawing BitMap from Jpeg

2005-11-08 Thread Erico Franco
Doug Gordon wrote: For one thing, is there anything special required to get the bitmap drawn in dbl-density mode on a device with a 320x320 screen? yes you need to convert it to a bmpV3: Just after you convert your jpeg->bmp you may convert it bmp->bmpV3 using: err = pnoJpeg2Bmp2DoubleD

Doubt on using HardKeys(vchHard1,..) in Treo 600 & 650.

2005-11-08 Thread babbu cathy
Hi all, Can anyone clarify my doubts please.. In my project, "vchrHard1" for Treo 600 & 650 device takes for "Phone" button. And "vchrHard2" takes for "Calendar". Is this correct? Or wrong? - cathy. __ Enjoy this Diwali

Re: Is there StrToUpper like StrToLower?

2005-11-08 Thread Henk Jonas
[EMAIL PROTECTED] wrote: I cannt find any function to conver lower to upper case? is there any like StrToLower? thanks in advance. .. KiraN Puranik TxtGlueUpperStr in the Glue lib. -- - Henk Jonas

Re: A5 register

2005-11-08 Thread Henk Jonas
[EMAIL PROTECTED] wrote: Hi All, This is sangita.I just want to know what is A5 register.Because i am unable to solve this error and the error is global varibale EPBill is accessed using A5 register. Regards Sangita A5 register is one of the processor registers of the m68k. It it mostly u

Is there StrToUpper like StrToLower?

2005-11-08 Thread kiranp
I cannt find any function to conver lower to upper case? is there any like StrToLower? 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/

A5 register

2005-11-08 Thread sangitad
Hi All, This is sangita.I just want to know what is A5 register.Because i am unable to solve this error and the error is global varibale EPBill is accessed using A5 register. Regards Sangita -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.p

Re: what is correct way of detecting poweroff?

2005-11-08 Thread Michal Seliga
sysNotifySleepNotifyEvent has comment in header that 'Note that this event is NOT guaranteed to be broadcast.' but i will give it a try thanks Hynek Sladky wrote: > In one application I use sysNotifySleepNotifyEvent and > sysNotifyEarlyWakeupEvent: > > if (params->notifyType==sysNotifySleepNot

Problem with SoundStream callback

2005-11-08 Thread G. Kalyana Sundaram
Hi all,   I am using a sampled sound playback routine (8kbps, Mono) in my program. The callback is a 68k callback (not ARM).   The callback usually comes with two bufferP values (these values are alternated as explained in the Documentation – double buffered)   When I print the callba

RE: About "webBrowser.h"

2005-11-08 Thread David Birdsall
Chinmaya; There's an O'Reilly book on Palm OS networking called "Palm OS Network Programming" and it goes into detail about using the NetLib API, which you can use to communicate to a web server. This is the most direct route. There are other APIs (such as the HTTP API) available for Treos but