re: Strange problem maybe relative to segments?

2005-12-28 Thread meffee
the first problem, i mean, in sound playing sub project, the program could read correct content even in the latter part of the database, but when merging into the main project, it failed by read some bytes latter than the correct location -- For information on using the PalmSource Developer Forums

Strange problem maybe relative to segments?

2005-12-28 Thread meffee
for some reason, i build two project, the main project is responsible for user interface, the other decodes mp3 data from a database and plays sound with simple sound API and the database is about 5MB implementing as a file stream database. the two project all work well before merging together. the

Re: Solution regarding PNG image...................

2005-12-28 Thread chinmaya
HI !! I'm Chinmaya from India working as a Mobile applicatin developer. Right now I'm developing one application in Palm OS.I'm newbie for displaying the image from buffer on the "form Bitmap". I use Palm OS Suite IDE and Palm OS Ver 3.x Emulator for Testing. I'm downloading one PNG Image from n

Re: Palm Vx and POL

2005-12-28 Thread Luc Le Blanc
Mark Chauvin wrote: Great; I ran it on an m100 emulator rom file, and I get 194K free. Now I need to find a Palm V ROM image. I looked here: https://www.developerpavilion.com/palmos/page.asp?page_id=365&tool_id=61 and all I can see are a couple of ROM's for PalmOS 4.2. They used to have a lo

database error

2005-12-28 Thread esily
who can tell me what condition can cause a error about "corrupt database (Dm 0209)". thanks in advance! -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: about ExgDBRead

2005-12-28 Thread esily
what did you say,i can't follow you! -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Solution regarding PNG image...................

2005-12-28 Thread Donald C. Kirker
I have used the code from ZBoxZ, but it only seems like it supports 8-bit PNG images (and less I believe, although I am not sure). I cannot remember the result of trying to disply a 24 bit PNG image. -Donald "Logan Shaw" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Henk Jonas wro

Re: Palm Vx and POL

2005-12-28 Thread Mark Chauvin
Great; I ran it on an m100 emulator rom file, and I get 194K free. Now I need to find a Palm V ROM image. I looked here: https://www.developerpavilion.com/palmos/page.asp?page_id=365&tool_id=61 and all I can see are a couple of ROM's for PalmOS 4.2. They used to have a long list - where did i

copying form from one app to other problem

2005-12-28 Thread PalmDev
Having problem copying a form from one app to another. the copying works and i've hex checked both forms and its identical but when i try to load the "copied" form it is blank. any ideas? my code is below. thanks copy_res("app1", "app2", 1000, 2000); Err copy_res(char *dest, char *source, DmRe

Re: Changing the frame style of a button (again)

2005-12-28 Thread Richard Coutts
My code in frmOpenEvent section looks like -- ControlType* ctl = (ControlType*)FrmGetObjectPtr(formP, FrmGetObjectIndex(formP, MainOption1GraphicPushButton)); CtlGlueSetFrameStyle(ctl, noButtonFrame); FrmDrawForm(formP); But, on FrmDrawForm the buttons and their borders are drawn. I've r

how do I use the onboardC examples in pods 1.2?

2005-12-28 Thread degoble
Hi All, I am trying to understand my lifedrive and Palm os developer suite 1.2. I want to examine the onboardc example boxes.c using pods. But my attemps compile, but causes a memory read/write out of RAM/ROM error. -- For information on using the PalmSource Developer Forums, or to unsubscribe,

Re: Solution regarding PNG image...................

2005-12-28 Thread Logan Shaw
Henk Jonas wrote: chinmaya wrote: Hi all, What I am doing is -> I am sending a request to Network to get some ".png" images. After getting I am storing it to a buffer.Now I am trying to display this PNG image on my emulator at runtime. But I am not getting how to display it. Is it require to

Re: C++ exceptions and PODS

2005-12-28 Thread Ben Combee
At 03:47 PM 12/28/2005, you wrote: Hi everyone, Does anyone know what the status is of support for standard C++ exceptions in PODS? Will support for exceptions be added any time soon? I've seen references in old posts to exceptions not working in PODS, but nothing definitive in recent posts

Re: Palm Vx and POL

2005-12-28 Thread Logan Shaw
Mark Chauvin wrote: How do you reduce the size of the heap being used by an app? I've already got cw set to optimize smallest code. Is there a compiler setting or directive for heap usage? Code size isn't related to dynamic heap in a Palm OS app. All your code is stored in resources, and they

re: treo 650 saving camera image to photo album

2005-12-28 Thread Scott Deaton
I have the exact same problem. I have taken the camerav2 source code and added in the Save functionality from the FotoFinishV2 app. When I run it on the device I get a fatal exception error. When I run it on the simulator it crashes the simulator so I can't even debug it. Any insight into ho

Re: Stupid question - quitting my app...

2005-12-28 Thread Henk Jonas
Tinnus wrote: It works, thanks you both! :) Tinnus, go check the source for doom and stuff :-) There is exactly this code snippet inside to end the games in a nicer way as it was done before. Henk -- - Henk Jonas

Re: Solution regarding PNG image...................

2005-12-28 Thread Henk Jonas
chinmaya wrote: Hi all, What I am doing is -> I am sending a request to Network to get some ".png" images. After getting I am storing it to a buffer.Now I am trying to display this PNG image on my emulator at runtime. But I am not getting how to display it. Is it require to convert the PNG to

Re: Palm Vx and POL

2005-12-28 Thread Mark Chauvin
How do you reduce the size of the heap being used by an app? I've already got cw set to optimize smallest code. Is there a compiler setting or directive for heap usage? --- Ben Combee <[EMAIL PROTECTED]> wrote: > OS 3.1 and 3.3 have a smaller dynamic heap than OS > 3.5 on a 2MB > device. > > -

C++ exceptions and PODS

2005-12-28 Thread Michael P. Plezbert
Hi everyone, Does anyone know what the status is of support for standard C++ exceptions in PODS? Will support for exceptions be added any time soon? I've seen references in old posts to exceptions not working in PODS, but nothing definitive in recent posts. (I tried it in my own code, thoug

Re: Bitmaps and painting

2005-12-28 Thread Logan Shaw
[EMAIL PROTECTED] wrote: I have created some bitmaps and i don't know how can i paint into it. I want to create some animation based on generated bitmaps. Can any one help me with this? The easiest way to draw into a bitmap is to call WinCreateBitmapWindow(). That will give you a WinHandle back

Bitmaps and painting

2005-12-28 Thread krzysztof . malinski
Hi All! I have created some bitmaps and i don't know how can i paint into it. I want to create some animation based on generated bitmaps. Can any one help me with this? /Kind regards -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com

Re: Palm Vx and POL

2005-12-28 Thread Ben Combee
OS 3.1 and 3.3 have a smaller dynamic heap than OS 3.5 on a 2MB device. -Original Message- From: "Luc Le Blanc" <[EMAIL PROTECTED]> Subj: Re: Palm Vx and POL Date: Wed Dec 28, 2005 1:15 pm Size: 593 bytes To: "Palm Developer Forum" Mark Chauvin wrote: > Oops, it's a V not a Vx. It

Re: Palm Vx and POL

2005-12-28 Thread Aaron Ardiri
On 12/28/05, Mark Chauvin <[EMAIL PROTECTED]> wrote: > I can try that. Is the Palm V upgradeable? yes, you can upgrade it to 3.3 and then 3.5 :) good luck finding the updates -- // Aaron Ardiri -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://w

Re: Palm Vx and POL

2005-12-28 Thread Mark Chauvin
I can try that. Is the Palm V upgradeable? I thought that POL checked the PalmOS version at runtime so it'd be compatible with older OS's. I guess I'll run it on the emulator & see if it bombs. -Mark --- Tam Hanna <[EMAIL PROTECTED]> wrote: > Hi, > what about having the customer install the

Re: Palm Vx and POL

2005-12-28 Thread Luc Le Blanc
Mark Chauvin wrote: > Oops, it's a V not a Vx. It worked on his m100. The m100 and V > both have a 128K dynamic heap and 2MB of memory, but the V is > running 3.1 and the m100 is running 3.5.1. Could that be causing > a problem? Run it under POSE with a 3.1 ROM and you'll see if POL is using then

Re: debugging in LifeDrive Device

2005-12-28 Thread Erico Franco
Palmman wrote: Hi Erico, You can using serial only if you have the right cable, beaver using USB Thanks, Can you point me to the right cable ? Can I purchase it at PalmOne ? Sorry I don't have one to recommend. I remember that Palm workers told that they uses a Treo 600 serial cable plus

Re: Stupid question - quitting my app...

2005-12-28 Thread Tinnus
It works, thanks you both! :) -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Stupid question - quitting my app...

2005-12-28 Thread Erico Franco
[EMAIL PROTECTED] wrote: I know this is not the 'right' approach--but I want to put a "Quit" button in my app. But I can't figure out the code to actually quit the app and go back to the launcher. I must be missing something VERY obvious. Anyway, any response is appreciated. Thanks in advance

RE: Stupid question - quitting my app...

2005-12-28 Thread Chris Apers
EventType event; event.eType = keyDownEvent; event.data.keyDown.chr = vchrLaunch; event.data.keyDown.modifiers = commandKeyMask; EvtAddUniqueEventToQueue(&event, 0, true); -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de [EMAIL PROTECTED] Envoyé : mercre

Re: Synchronize data through Memory Slot.

2005-12-28 Thread pritam hasabnis
The reason I pursue for this option is, I am unable to retain my Database contents when I perform Hard Reset..hence I loose out my PDB data..Is there any other simpler way to achieve my goal?? -Pritam. --- Richard Coutts <[EMAIL PROTECTED]> wrote: > > Hotsync doesn't back up the expansion card.

Stupid question - quitting my app...

2005-12-28 Thread tinnus
I know this is not the 'right' approach--but I want to put a "Quit" button in my app. But I can't figure out the code to actually quit the app and go back to the launcher. I must be missing something VERY obvious. Anyway, any response is appreciated. Thanks in advance. -- For information on us

Re: Synchronize data through Memory Slot.

2005-12-28 Thread Richard Coutts
Hotsync doesn't back up the expansion card. You need a 3rd party app, such as MissingSync. Rich - Original Message - From: "pritam hasabnis" <[EMAIL PROTECTED]> To: "Palm Developer Forum" Sent: Wednesday, December 28, 2005 9:24 AM Subject: Synchronize data through Memory Slot.

Re: Solution regarding PNG image...................

2005-12-28 Thread Erico Franco
chinmaya wrote: Hi all, What I am doing is -> I am sending a request to Network to get some ".png" images. After getting I am storing it to a buffer.Now I am trying to display this PNG image on my emulator at runtime. But I am not getting how to display it. Is it require to convert the PNG to

Synchronize data through Memory Slot.

2005-12-28 Thread pritam hasabnis
Dear All, Does anybody know I can synchronise my data stored in Expansion Slot memory to desktop. I c option to sync from handheld to desktop & desktop to handheld...I want to do it directly from expansion slot to desktop. Looking forward to quick reply..;) Regards, -Pritam.

Solution regarding PNG image...................

2005-12-28 Thread chinmaya
Hi all, What I am doing is -> I am sending a request to Network to get some ".png" images. After getting I am storing it to a buffer.Now I am trying to display this PNG image on my emulator at runtime. But I am not getting how to display it. Is it require to convert the PNG to BMP? If yes, th

Read sim-card on Treo

2005-12-28 Thread Serge
Is it possible to read entries from sim-card in my application? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Palm Vx and POL

2005-12-28 Thread Tam Hanna
Hi, what about having the customer install the OS4 update onto the v? I can remember that OS 3.5 changed a huge lot of things especially in terms of ui. If POL relies on that... Best regards Tam Hanna Created on the go using Versamail 2.6.1 on a Tungsten T3. Please accept my apologies for form

re: Problem with Dynamic Creation/Deletion of Elements

2005-12-28 Thread Chris Roberts
Thanks for the gentle reminder (offlist) that perhaps "dynamic UI element handling" may not be quite all we might desire... :-D FWIW, I did still pursue an idea of drawing "card" elements... and handling the penup/down events, with an RctPtInRectangle (or few!) thrown in. And that worked quite

Re: about ExgDBRead

2005-12-28 Thread
Hola, gracias por escribirme, te contestaré a la mayor brevedad !!! Jose -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

about ExgDBRead

2005-12-28 Thread esily
i have a function to read data from card, there isn't any problem when it run in zodic1 or NX70 Sim, however, when i try to launch it in TungstenT3 sim,the function can't go out from the circle;who can tell me why ? the callback: static Err ReadDBFromFileFunc (void *dataP, UInt32 *sizeP, vo