Could you tell me which handheld supports SD 4-bit mode?

2004-09-21 Thread Luo Xiangang
Hi, Palm m500 only supports SPI mode and CMD52. Could you tell me which one supports SD 1 and 4-bit mode and CMD53? Thanks! -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: FrmDrawForm and double buffering

2004-09-21 Thread Benoit Cerrina
Thanks for your answer, this is actually what I was doing but it didn't work your e-mail made me look more carefully about it and it appears that the screen erazure occurs BEFORE the call to winscreenlock. Using the debugger I found that the blanking occurs in frmCloseEvent handling in FrmDispatc

No reset

2004-09-21 Thread Eka Gauranga Das
When i upload a file to the aplm (trhu my own sync app) i see that i need to soft reset to appear in the app manager , is there any way (via api) so i dont need to soft reset tnx in advance eka -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.pa

re: Any TTS product for Palm? pSpeak by pSpeak, LLC?

2004-09-21 Thread Daniel Gonzalez
There is a Tungsten T3 Text To Speech Synthesizer on Handango called HipTalk. Danny -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Draw Bitmap Offscreen

2004-09-21 Thread Terry
Robert Moynihan at [EMAIL PROTECTED] wrote: > Terry, you didn't mention trying 'nativeFormat'? Bob. > > Terry wrote: > >> I have a bitmap that is 4 bit with a color table. It draws perfectly into >> the main screen. But, when I try to draw it to an offscreen window (and copy >> it back to the m

RE: static library with C++ POL

2004-09-21 Thread Kenneth Albanowski
Note that it is better form to place extern "C" guards within each header file, so it can be included from both C and C++ code without effort: -- contents of whatever.h -- #ifdef __cplusplus extern "C" { #endif extern int my_func(float f); #ifdef __cplusplus } #endif It is gene

Re: 480 screen on T3

2004-09-21 Thread Henk Jonas
Frédéric DESSALLIEN wrote: Hi, As anyone have sample to tap fullscreen event or link to documentation i don't find. Thanks Please have a look into PalmSource's Knowledge base: dynamic input area. Regards Henk -- - Henk Jonas P

Re: Draw Bitmap Offscreen

2004-09-21 Thread Robert Moynihan
Terry, you didn't mention trying 'nativeFormat'? Bob. Terry wrote: I have a bitmap that is 4 bit with a color table. It draws perfectly into the main screen. But, when I try to draw it to an offscreen window (and copy it back to the main screen) it converts it to a grayscale image. Why? I tried cr

Draw Bitmap Offscreen

2004-09-21 Thread Terry
I have a bitmap that is 4 bit with a color table. It draws perfectly into the main screen. But, when I try to draw it to an offscreen window (and copy it back to the main screen) it converts it to a grayscale image. Why? I tried creating the image with screenFormat and genericFormat and they both

Re: static library with C++ POL

2004-09-21 Thread Jim Duffy
That did the trick.. Thanks a bunch ;) Jim "Eka Gauranga Das" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > try extern "C" > { > #include > } > > > On Tue, 21 Sep 2004 11:13:20 -0700, Jim Duffy <[EMAIL PROTECTED]> wrote: > > > > Does anyone know if it is possible to use a stat

Any TTS product for Palm? pSpeak by pSpeak, LLC?

2004-09-21 Thread Jennifer Fell
Hello, I saw a reference to a Text-to-Speech tool, pSpeak (by pSpeak, LLC) at PalmSource website, but there is no link to the product or the company. I even searched on google, but didn't get anything for them as well. Can anybody tell me anything about that product or give me reference to any

Re: static library with C++ POL

2004-09-21 Thread Eka Gauranga Das
try extern "C" { #include } On Tue, 21 Sep 2004 11:13:20 -0700, Jim Duffy <[EMAIL PROTECTED]> wrote: > > Does anyone know if it is possible to use a static library writen in C in a > POL C++ project? > > It works fine if I create a standard Code Warrior project but if I try in > with a POL C+

static library with C++ POL

2004-09-21 Thread Jim Duffy
Does anyone know if it is possible to use a static library writen in C in a POL C++ project? It works fine if I create a standard Code Warrior project but if I try in with a POL C++ project, I get 'function undefined' errors for the public API's I'm trying to call in the library.. Thanks, Jim

Re: Palm OS4.1 and use of vchrEnterDebugger

2004-09-21 Thread Ben Combee
At 12:00 PM 9/21/2004, you wrote: I am porting a Palm OS 3.5.2 application over to the Palm OS 4.1. In 3.5.2, I could enter the debug/download mode programmatically by putting the vchrEnterDebugger key into the event queue. However, this does not work with OS 4.1. It acts like it works but will

Palm OS4.1 and use of vchrEnterDebugger

2004-09-21 Thread Marshall M. Parker
Hello, I am porting a Palm OS 3.5.2 application over to the Palm OS 4.1. In 3.5.2, I could enter the debug/download mode programmatically by putting the vchrEnterDebugger key into the event queue. However, this does not work with OS 4.1. It acts like it works but will not let my multiloader app

Re: Launching from Sd Card

2004-09-21 Thread Rob
On Tue, 21 Sep 2004 09:00:35 -0400, Greg Sepesi <[EMAIL PROTECTED]> wrote: My implementation was to detect sysAppLaunchCmdCardLaunch launch code. Then in the processing of the sysAppLaunchCmdNormalLaunch launch code, if the sysAppLaunchCmdCardLaunch had been detected, give an alert message about t

Re: FrmDrawForm and double buffering

2004-09-21 Thread P & C Soldan
What was the user looking at before the winscreenlock command? If you were showing them something then simply using the winlockcopy option will solve the problem. Otherwise you may consider showing them something first and then winscreenlock(winlockcopy). peter -- For information on using the

SyncML

2004-09-21 Thread Scott Schmitz
I am looking for other software developers interested in SyncML for Palm. There is an open-source project at SourceForge which is exactly that - a SyncML client for palm. http://sourceforge.net/projects/syncml-ctoolkit/ However, it is rather old and needs updating. If anyone is interested in he

Re: Launching from Sd Card

2004-09-21 Thread Greg Sepesi
Hi Rob, I also wanted my application and databases to stay in main memory after being launched from an SD card: I didn't want to lose the changes to the read/write databases upon the application's exit. My implementation was to detect sysAppLaunchCmdCardLaunch launch code. Then in the processing

Re: AutoStart Apps

2004-09-21 Thread Eka Gauranga Das
sysAppLaunchCmdSystemReset tells about resets, what about On and Off? tnx in advance On Tue, 21 Sep 2004 10:32:54 +0100, Neil Whitworth <[EMAIL PROTECTED]> wrote: > Look at the sysAppLaunchCmdSystemReset Launch Code, and SysUIAppSwitch() > function. > > > > Eka Gauranga Das wrote: > > Hi ever

Re: AutoStart Apps

2004-09-21 Thread Neil Whitworth
Look at the sysAppLaunchCmdSystemReset Launch Code, and SysUIAppSwitch() function. Eka Gauranga Das wrote: Hi everyone Is there any way to start my app when Palm powers ON? tnx Eka -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/supp

SSL-Lib on Tungsten-T

2004-09-21 Thread Thomas Damme
Hello all, as I realised the Tungsten-T is not delivered with the SSL-Library. Is there a way to get it running on the T-T and where can I get it? Thanks, Thomas -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Launching from Sd Card

2004-09-21 Thread Rob
Hi, I want my launcher to launch apps from the sd card properly - I think I have the basics - but a couple of gaps remain. What I think I have to do: 1) copy the app to memory 2) copy the app and any apps that have the same creator and the bundled bit set 3) send SysAppLaunchCmdCardType (using SysA

Re: How do you test to see if the Phone Application is in use on a Treo 600?

2004-09-21 Thread Rob
On Tue, 21 Sep 2004 01:26:14 -, Jeff Gibson <[EMAIL PROTECTED]> wrote: I am in the middle of developing a utility and part of what I need to do is test to see if the phone has an active connection. IE an active voice call (inbound or outbound). Is there an API call that will return t