Closing a database left open after a crash

2007-01-23 Thread Bruce Waters
After a crash, the DmOpenRef pointer for the open database is lost, and there does not appear to be any way using code to recover the DmOpenRef pointer on a subsequent launch using the LocalID of the left-open-database. It's easy to find the open database's LocalID, but that seems to be where th

Re: How to use SDK 5.3?

2007-01-23 Thread Michael Smith
Don't modify the include paths in the header files. Instead: Project --> Properties --> C/C++ Build --> PRC-Tools 68k Compiler --> Includes Then under 'Include paths (-I)' click the yellow +++ button. Add paths like: /PalmDev/PalmSDK/Incs where /PalmDev is 'C:\Program Files\PalmSource\Palm OS

Palm Tx OS 5.4.9(Garnet)

2007-01-23 Thread _vivian
hello everyone: There is something wrong with my infrared keyboard,The keyboard pragram run smoothly on Palm which OS is 5.2.8 ,but when I load the program to a palm of OS 5.4.9 ,I found if I press 'Del' ,the palm reset automatically,what's the problem with my keyboard program?Should I rewrite

HsSndFormatPlay

2007-01-23 Thread Anoop
Hi all, Please go through the following code segment. Am trying to play a midi file in palm treo 650. Am using codewarrior IDE. There is no compilation errors, but the sound doesnt play in device or the emulator. Is there any problem in the loading of the resource(.midi) . I Coudnt fi

Re: Update to codewarrior 9.3

2007-01-23 Thread Jeff Loucks
Someone might send you the updates, but I don't think that's the right way to do it. Did you create an account with Freescale first, then log into the account, and then submit a request for the software? Try an email to Freescale asking what you need to do to get the updates. On 1/23/07, Bismi

Re: Update to codewarrior 9.3

2007-01-23 Thread Bismi
Can u mail me if possible. I got the below message from freescale. Dear arsh sh Thank you for your interest in Freescale software download products. This email is to notify you that your request to download the file listed below has been rejected. Download file: Release Date: 10/01/2003: Palm

Re: How to use SDK 5.3?

2007-01-23 Thread Tenchi
> The latest Palm SDK is screwed up. Instead of doing: > #include > they frequently do > #include Yeah, I can see that. I am using Palm OS Developer Suite 1.2 for Windows. How can I add more directories to the include search path for the compiler? I think it goes to 'C:\Program Files\PalmSour

Why no CtlGetUsable?

2007-01-23 Thread Alan Ingleby
I can't see an API which will allow me to detect the usable state of a control. I know I can go directly to the ControlAttrType structure on only versions of the OS, but what about a correct way? Alan -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see ht

FTP of bitmaps

2007-01-23 Thread Darin Horton
I have downloaded the signature++ sample program that I found on the palm site. We have an existing application written that downloads text information from the palm to a windows server via FTP (this FTP program was also downloaded from a sample found on the palm site). We need to use FTP because s

Re: How to prevent my application from being beamed.

2007-01-23 Thread Douglas Handy
>I do not want it to be beamed to another device. You can set the dmHdrAttrCopyPrevention bit in the database attributes byte, but that merely prevents the default application launcher from beaming the application (it will show with the lock icon). However, that will stop or slow down only the m

Re: How to use SDK 5.3?

2007-01-23 Thread Michael Smith
Also, depending on which files you're using you might have to fix some of the syntax in the header files to get them to compile. I don't remember exactly which files had the problem, just that I had it. On 1/23/07, Doug Reeder <[EMAIL PROTECTED]> wrote: > > And to use it under OS X or Linux, you n

Re: Palm File's structure

2007-01-23 Thread Don Albertson
Aarn Aadiri said (on or about) 01/23/2007 17:29: On 1/23/07, wawa <[EMAIL PROTECTED]> wrote: Excuse me, As said by Aarn Aadiri I forgot ... for the record, is it really hard to get my name spelt right? at least one of them? It looks to me as if there is an auto-spell check going on somepla

Text Field

2007-01-23 Thread pcnihongo
How can text be centered in a text field? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

How to prevent my application from being beamed.

2007-01-23 Thread pcnihongo
I am developing an application for the PalmOS, but after it is installed, I do not want it to be beamed to another device. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Palm File's structure

2007-01-23 Thread Aaron Ardiri
On 1/23/07, wawa <[EMAIL PROTECTED]> wrote: Excuse me, As said by Aarn Aadiri I forgot ... for the record, is it really hard to get my name spelt right? at least one of them? -- // Aaron Ardiri -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http:/

Re: Dynamic scrollbar?

2007-01-23 Thread Aaron Ardiri
On 1/23/07, Waylander <[EMAIL PROTECTED]> wrote: Hi Aaron, My program centers around creating dynamic form controls, so I am unable to predifine where I need the scrollbars. I will how ever use your suggestion in my load page. Thanks you can resize and reposition any object on a form at anytime

Re: Non-exclusive write access

2007-01-23 Thread Jeff Loucks
May I also suggest that should you adopt the partitioning approach, that you: 1. Download to partition #(n) until sufficient data has arrived, or until partition #(n-1) has finished playing. 2. Begin downloading to partition #(n+1), and begin playing partition #(n). 3. Repeat until the entire file

Re: Dynamic scrollbar?

2007-01-23 Thread Waylander
Hi Aaron, My program centers around creating dynamic form controls, so I am unable to predifine where I need the scrollbars. I will how ever use your suggestion in my load page. Thanks On 1/24/07, Aaron Ardiri <[EMAIL PROTECTED]> wrote: > > On 1/23/07, Waylander <[EMAIL PROTECTED]> wrote: > > Than

Re(2): Palm File's structure

2007-01-23 Thread George Henne
Does this help you? George Henne NS BASIC Corporation http://www.nsbasic.com >Excuse me, As said by Aarn Aadiri I forgot t specify that I'm asking >abou desktop side. > >And where can I find the documetat

Re: Non-exclusive write access

2007-01-23 Thread Pinus Alba
Hi Nikhil, I suggest you use an in memory circular buffer. This will allow you to be reading and writing at the same time. If you don't know what a circular buffer is look it up in a software data algorithms book. Regards, On 23/01/07, Nikhil Bhatla <[EMAIL PROTECTED]> wrote: > > > generally v

Re: Non-exclusive write access

2007-01-23 Thread Nikhil Bhatla
> generally vfs is not too happy to do that. filestreaming can do > that, though. perhaps consider using that? Hmm, I looked at the FileStream docs and it doesn't look like you can use them to read/write to expansion cards (e.g. the Treo 650's SD card). So when I download audio files I would be

Looking for simple example for form to form and field updating

2007-01-23 Thread rockie12
Does a simple example exist that shows how to create a palm application that contains two forms. one form has a couple of numberic (decimal fields not integer fields) and a submit button. When the submit button is pressed the values of the two fields on the main form are multiplied together an

Re: How to use SDK 5.3?

2007-01-23 Thread Doug Reeder
And to use it under OS X or Linux, you need to strip the carriage returns from the files, which have carriage return-line feed. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

re: How to use SDK 5.3?

2007-01-23 Thread Alexander R. Pruss
The latest Palm SDK is screwed up. Instead of doing: #include they frequently do #include Find all the missing files on your disk (e.g., in Unix/cygwin go to the top of the tree and run find . -name z.h -print) and add their directories to the include search path for the compiler. If you're

Re: Update to codewarrior 9.3

2007-01-23 Thread Jeff Loucks
Hi Bismi, I just went to the site, logged in (it's free), filled out the project form (told them I was a student needing the upgrade) and it started the download (now I have THREE copies!). Try again. jeff On 1/23/07, Bismi <[EMAIL PROTECTED]> wrote: > > Thanks Jeff Loucks > > But I have gone to

Re: Palm File's structure

2007-01-23 Thread Michal Seliga
sorry, i don't use palm desktop so i have no idea how it works... Aaron Ardiri wrote: > On 1/23/07, Michal Seliga <[EMAIL PROTECTED]> wrote: >> are you sure its palm format? palm uses .pdb and .prc sufixes > > he is asking about the desktop side of things; namely the formats > of the conduit data

Re: Palm File's structure

2007-01-23 Thread wawa
Excuse me, As said by Aarn Aadiri I forgot t specify that I'm asking abou desktop side. And where can I find the documetation of the on-divice file format ? thanx -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums

Re: Palm File's structure

2007-01-23 Thread Aaron Ardiri
On 1/23/07, Michal Seliga <[EMAIL PROTECTED]> wrote: are you sure its palm format? palm uses .pdb and .prc sufixes he is asking about the desktop side of things; namely the formats of the conduit data files (for palm desktop). the answer to his question is that on-device file formats are fully

Re: Palm File's structure

2007-01-23 Thread Michal Seliga
are you sure its palm format? palm uses .pdb and .prc sufixes [EMAIL PROTECTED] wrote: > Hi, > > I'm student in Versailles (France) university. And I'm searching for > Palm File's structure (.dba and .dat). I need it implement my studies project. > > Thanx for reading and fr answers > > >

Palm File's structure

2007-01-23 Thread r_waheb05
Hi, I'm student in Versailles (France) university. And I'm searching for Palm File's structure (.dba and .dat). I need it implement my studies project. Thanx for reading and fr answers -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.pal

Re: How to create a package that installs the Tungsten E2 driver?

2007-01-23 Thread Paladyr
Yea I think you're right. I ended up just calling the msi from my install program with the /passive parameter so it installs with just a progress bar. Works perfectly, although my install went from being 3mb to 40mb because I have to include the MSI and all the other files it needs to install. O

treo680 and setting background to phone application

2007-01-23 Thread Michal Seliga
hi, i am using special launchcode to set custom background to phone application. this works flawlessly on treo650 and treo 700p. howewer nothing happenes on treo 680 does anyone found any other way how to do it? launchcode i am using is phoneAppLaunchCmdSetWallpaper and i was using it such way

Re: Dynamic scrollbar?

2007-01-23 Thread Aaron Ardiri
On 1/23/07, Waylander <[EMAIL PROTECTED]> wrote: Thank you for your replies. I guess I'll just do a simplistic line up/line down with push buttons. you should create your form with a scroll bar, and when it isn't needed; hide it. this is how almost every developer does this. you dont generate i

Re: Dynamic scrollbar?

2007-01-23 Thread Waylander
Thank you for your replies. I guess I'll just do a simplistic line up/line down with push buttons. On 1/23/07, John Jenusaitis <[EMAIL PROTECTED]> wrote: > > There is CtlNewControl but I'm not sure that will work with scrollbars. > If not, there may not yet to be way to create dynamic scroll bars.

Re: How to license and publish cost-free software?

2007-01-23 Thread Rob
My suggestion is to make life much easier for yourself. list the app at palmgear/handango/freeware palm (noone is likely to notice it otherwise) I'm 90% sure they don't require that you have a website. add a readme.txt to the zip file that says. -you may use this, but not sell or disassemble

Re: Update to codewarrior 9.3

2007-01-23 Thread Bismi
Thanks Jeff Loucks But I have gone to that link & registered but they just tell us they have taken our request But no link of direct download comes. I want a direct link. Thanks in Advance. Any Help woud be appriciated -- For information on using the PalmSource Developer Forums, or to unsubscr

How to use SDK 5.3?

2007-01-23 Thread Tenchi
Hi, I have tried to unzip the SDK 5.3 (68K, Common & palmOne_68k.h) to 'C:\Program Files\PalmSource\Palm OS Developer Suite\sdk-5r4\include' and I got many errors when compiling my existing project. It said '.h: No such file or directory'. What is the right way to install the latest SDK? T

Re: palm .net frame work

2007-01-23 Thread Alan Ingleby
It can not be done. There is no .net runtime for the PalmOS. There is currently a project underway to develop one, called upCLeaR. Google for it, and you'll be able to read more about it, but it is only in the early stages of development at the moment, so don't hold your breath. You could also