Re: controls overlapping on other form

2003-03-11 Thread Aaron Ardiri
> Like Aaron said, the problem is that you end up returning "true" > after handling the frmCloseEvent -- you need to return "false" to > allow the OS to finish closing the form (or you can read the OS > source and find everything the OS does, and duplicate the work > yourself, and keep your app

Re: Help with global find service in POL

2003-03-11 Thread Aaron Ardiri
> I finally found the problem. I had a ::FrmCloseAllForms( ) in > ExitInstance() function, it didn't occur to me that ExitInstance() would > be called. If this is the case, where would be a safe place for me to > call FrmCloseAllForms() before exiting my app? after your event loop has termina

Localized Applications?

2003-03-11 Thread George VS
Hi group, Can anyone give me advice on localizing applications. I've read the articles on localizing applications in palmos documentation and as far as I understand the procedure is as follow run PRC2OVL tool for the requested prc (that would generate overlay database) change resources in overlay

Re: Help with global find service in POL

2003-03-11 Thread htn
I finally found the problem. I had a ::FrmCloseAllForms( ) in ExitInstance() function, it didn't occur to me that ExitInstance() would be called. If this is the case, where would be a safe place for me to call FrmCloseAllForms() before exiting my app? Thanks for your helps, htn Maks Pyatkovsk

Re: controls overlapping on other form

2003-03-11 Thread Chris Antos
Like Aaron said, the problem is that you end up returning "true" after handling the frmCloseEvent -- you need to return "false" to allow the OS to finish closing the form (or you can read the OS source and find everything the OS does, and duplicate the work yourself, and keep your app updated for a

Notification Question

2003-03-11 Thread Brad Figler
Is it legal to broadcast a user defined notification and handle it in the same application? I assume the answer is yes! However, I tried this one time when broadcasting from an interrupt and handling the notification in the same application and it did bad things to my application. The reason I a

Re: controls overlapping on other form

2003-03-11 Thread Rahul Shukla
Hi Aaron, I am sorry for using this word "Urgent" You are very correct in guessing the code which i have wriiten since only those forms are giving me problems where i am handling frmCloseEvent. Actually what i am doing is in frmCloseEvent i have used many MemPtrFree() and also saving few things i

Re: Phone in Tungsten W

2003-03-11 Thread Steve Mann
I want to know how to connect Tungsten W to a telephone network using a C/C++ application. Voice or data connection? Regards, Steve Mann -- SLO Revo, Inc. 1315 Palm Street, San Luis Obispo, CA 93401-3117 --- 805.784.9461, 805.784.9462 (fax) http://www.slor

Re: Simulator

2003-03-11 Thread Alan Ingleby
Chris, it sounds like your if statement only has ONE = sign not TWO ==. Alan "Keith Rollin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] To me, it sounds more like a direct access to the clippingBounds field, which I think is 18 bytes into the WindowType structure. -- Keith > --

RE: Simulator

2003-03-11 Thread Keith Rollin
To me, it sounds more like a direct access to the clippingBounds field, which I think is 18 bytes into the WindowType structure. -- Keith > -Original Message- > From: Alan Ingleby [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 11, 2003 5:28 PM > To: Palm Developer Forum > Subject: Re:

Re: Simulator

2003-03-11 Thread Alan Ingleby
Sounds like a buffer overrun. Check that you're not writing past the end of any allocated memory shortly before the crash occurs. "Chris APERS" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have the following error while debugging with simulator : > > I:\Ripple\ARM\Core\Emul68K\

Phone in Tungsten W

2003-03-11 Thread Mario Alberto Blancas Saldaña
Hi!!! I want to know how to connect Tungsten W to a telephone network using a C/C++ application. Thanks in advance -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: $%@$% ROM image files!!!

2003-03-11 Thread Calamity Jane
Thanks everybody for your "moral support" ;-) Got my official approval from Palm last night and downloaded the ROM image files I needed. Then I found out I needed "StuffIt" to open them. Being that StuffIt is over 8MB and my dialup runs about 38K, I decided to download at work (multiple GB connec

RE: Help with global find service in POL

2003-03-11 Thread Maks Pyatkovskiy
Can you send project archive with the problem to [EMAIL PROTECTED] __ Best regards, Maks Pyatkovskiy > -Original Message- > From: [EMAIL PROTECTED] [mailto:bounce-palm-dev- > [EMAIL PROTECTED] On Behalf Of htn > Sent: Wednesday, March 12, 2003

Re: Help with global find service in POL

2003-03-11 Thread htn
Maks Pyatkovskiy wrote: But the tutorial works. So, there is some difference between two projects... You have to check: a) project settings (especially expanded mode option, POL tutorial doesn't use expanded mode). no, I don't use expanded mode. b) location of particular files in segments. it's

RE: Help with global find service in POL

2003-03-11 Thread Maks Pyatkovskiy
But the tutorial works. So, there is some difference between two projects... You have to check: a) project settings (especially expanded mode option, POL tutorial doesn't use expanded mode). b) location of particular files in segments. c) source code (do you use some globals or call virtual functio

Re: Conduits on Linux

2003-03-11 Thread Dwight Tovey
On Tue, 2003-03-11 at 10:22, Adam McDaniel wrote: > On Mon, Mar 10, 2003 at 03:36:32PM -0700, Dwight Tovey wrote: > > I'm finally at the point where I'm ready to start working on a conduit > > for my app. However, it looks like both the Bible and the O'Reilly > > books (at least the First editions

SysFatalAlert on FrmGetNumberOfObjects and dynamic labels

2003-03-11 Thread Brian Preston
I have a forum in which I'm creating several new Labels dynamically. The form is basically displaying a table with data from a global array. It's really quite simple, except that when it tries to Draw the form, after loading the form with the dynamically created labels, I'm getting this error: Sys

Re: How do currency string conversions?

2003-03-11 Thread Oliver
> easiest way is to handle them as integers > (specifically as 'long long int') by converting > the prices by a factor of 100. > So far well. That assumes that every currency has 'pennies', like the US Dollar or the Euro. AFAIK, that's not true (e.g., One Japanese Yen is the smallest monetary un

Re: Help with global find service in POL

2003-03-11 Thread htn
that was exactly what I did, using example from POL tutorial. And I did change parent class to CPalmStApp. I am sure (at least best of my knowledge) I don't use any global in that function because it's an empty function. Hopelessly yours, htn Maks Pyatkovskiy wrote: There are several steps to

How do currency string conversions?

2003-03-11 Thread Michel.P
I've sifted through the archives about the best way to handle currencies; the consensus seems to be that the easiest way is to handle them as integers (specifically as 'long long int') by converting the prices by a factor of 100. So far well. My doubt is: what's the best/easiest way of converting

Re:Stopping a Sound Stream using Sound Streaming API (PalmOS 5)

2003-03-11 Thread ThuNguyet Nguyen
Stopping a Sound Stream using Sound Streaming API (PalmOS 5) > The problem which I am facing is - I have a stop >button in the application which when pressed should >stop the playing of sound.Basically when the stop >button is pressed, I am calling an API of mp3 library >which stops the playing of

Simulator

2003-03-11 Thread Chris APERS
Hi, I have the following error while debugging with simulator : I:\Ripple\ARM\Core\Emul68K\Src\Error68K.c, Line 1543, Write to WindowType (id 65535) off: 18, size: 4 The debugger stop on a if condition Do you know why ? thanks ___

A Problem

2003-03-11 Thread Silvain Jewoh
I want do some field who call the keyboard( numeric)that when the user tap on the field.I don't know how i can do it. Thanks in advance = Silvain Jewoh Zekeyo Berg Am Laim Strasse 95/2-3-12 81675 München Tel: +49 89 18911537 +49 162 7432527

RE: Help with global find service in POL

2003-03-11 Thread Maks Pyatkovskiy
There are several steps to implement global launch using POL. 1st of all you have to check if you've derived your application class from CPalmStApp. Please go through the latest step of POL tutorial. There you can find more detailed info and working example. _

Re: Conduits on Linux

2003-03-11 Thread Adam McDaniel
On Mon, Mar 10, 2003 at 03:36:32PM -0700, Dwight Tovey wrote: > I'm finally at the point where I'm ready to start working on a conduit > for my app. However, it looks like both the Bible and the O'Reilly > books (at least the First editions that I have) only talk about conduits > on Windows, and I

RE: Help with global find service in POL

2003-03-11 Thread Kevin OKeefe
Without POL (which I have never used), these errors usually indicate that you have used globals during the find launch code - you cannot use globals during find. Kevin -Original Message- From: htn [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 10:03 PM To: Palm Developer Forum Su

Serial comm delays in OS 5 (m550) (was: Re: Palm OS Developer Membership Upgrade)

2003-03-11 Thread Craig Curry
I am setting in a loop monitoring srmReceiveCheck for any incoming bytes. Also I am monitoring TimGetTicks. If the value returned from TimGetTicks is different from the previous read of TimGetTicks, then I jump out of the loop and process all queued events. After processing all queued events I

Virtual characters

2003-03-11 Thread Brad Figler
All, I am using the function EvtEnqueueKey to put a virtual character in the queue. I am also registered for the sysNotifyVirtualCharHandlingEvent (palm OS version 5.0+ only). I was wondering if anyone knows if the OS allocates a user defined range of virtual keys? I looked in the header c

Re: Database Problem

2003-03-11 Thread Stringer
>Subject: Re: Database Problem >From: [EMAIL PROTECTED] (Daniel Garfield Gurdan) > >Tim McCarthy wrote: > >>hello >>When u turn off you PalmPilot, and you have data saved to a database, and >>when you turn it back on it has dissappeared, is there any way of preventing >>this happening >> >>Thank y

Re: $%@$% ROM image files!!!

2003-03-11 Thread Dave Lippincott
Not to mention there are parts of the ROM Palm licenses and I'm sure their agreement with these 3rd parties requires some control over distribution. - Original Message - From: "Chris Tutty" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Tuesday, March 11, 2003 12:

Re: MemPtrSize freezes

2003-03-11 Thread Jan Slodicka
Because I got offline questions, here is the final summary. First the problem statement: 1. The bitmap returned from BmpCreate() may not be a chunk, i.e. it can be a pointer to the middle of the chunk. 2. On the ARM machine due to alignment issues the bitmap header has different length. Therefore

Re: controls overlapping on other form

2003-03-11 Thread Aaron Ardiri
> I need few urgent help. urgent = not a good word to use here. > I have quite a big application. Now one problem which > i am facing with few forms is when i call > FrmGoToForm() > to switch to another forms previous forms controls > does not disappear. This too does not happen when i am > doing

Re: screenshots on tungsten T

2003-03-11 Thread YAMADA Tatsushi
I also recommend ScrShot from Fatal Error World. ( http://www.fatal-error.com ) It's great screen shot utiliy and supports T|T. At 09:29 03/03/11 +0100, Linke, Andreas wrote: > Create a database. > Create record(s) in the database. (depends on the amount of > data you want to dump) > Dump the cont

controls overlapping on other form

2003-03-11 Thread Rahul Shukla
Hello, I need few urgent help. I have quite a big application. Now one problem which i am facing with few forms is when i call FrmGoToForm() to switch to another forms previous forms controls does not disappear. This too does not happen when i am doing first time. Infact after performing certain o

Re: screenshots on tungsten T

2003-03-11 Thread Linke, Andreas
> Create a database. > Create record(s) in the database. (depends on the amount of > data you want to dump) > Dump the content of the screen in the record(s) of the > database. (f.e. after > pushing a specific button) > Hotsync. > Write a reader/converter on your host machine. Or, save yoursel