Google Summer of Code and Palm related idea

2006-05-04 Thread ABX
Hi all! As part of wxWidgets list of ideas for this year edition of Google Summer of Code initiative, I have added one Palm related item. If you are student with some free time this summer, then you can be one of many who will be selected to work for 4500 USD on open source projects. For more

name of palm program

2006-05-04 Thread Klemen Dovrtel
I have a problem. Every program I make and install, it replaces preveous one i installed on palm. Seems to me that they have the same ID. The problem is that i don't know what should i set or change, when i create a new project. I already changed all settings in Target settings menu, but i

Re: name of palm program

2006-05-04 Thread Tinnus
There's the place somewhere in the target settings (can't look right now 'cause I'm not home) where there's a field caled Creator ID, PRC file settings IIRC. That's the one you must change. But REGISTER IT WITH PALMSOURCE BEFORE DISTRIBUTING YOUR PROGRAM -- For information on using the

VFSFileWrite - .txt file - new line

2006-05-04 Thread Klemen Dovrtel
I would like to write text in a new line. What character should i add into a text string? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Field functions cause reset when in Calendar/Contacts/Tasks

2006-05-04 Thread _david_n_
Hi, Whenever I try to use the field functions, e.g. FldGetSelection(), FldGetInsPtPosition(), whilst viewing Calendar, Contacts or Tasks, the device has a fatal alert: Field68k.c, Form object (field) not found. The same functions work fine in other apps such as Memo, Messaging, etc. I am

RE: WinXP now sees my Treo 650 as an MTP Media Player and won't HotSync

2006-05-04 Thread John Sutton
Thanks for that Jeff, I had a friend with the what sounds like the same problem - I'll pass it on. Re:yisdersomenimororsisasisdenderisorsis? Is the difference in number related to the number of Lawyers currently practicing? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Programatically disabling Write Anywhere on-screen?

2006-05-04 Thread Jerome Chapdelaine
Here's another one: on the Tungsten-W, how to change the Automatically let the network update the time setting in the Date Time panel? I must keep this one disabled because a cell network provider here sometimes sends the wrong timezone, Thanks! Jerome Luc Le Blanc wrote: [EMAIL

How to update status icon when disabling Graffiti Anywhere via GoLcdSetStatus

2006-05-04 Thread Luc Le Blanc
Following the thread on programmatically disabling Graffiti Anywhere (or Graffiti on LCD as called by Palm) where I provided a recipe, how can I update the status icon so that it corresponds to the internal state? On my T3, calling GoLcdSetStatus has no effect on the GoLCD status icon. --

Re: help transfering data from Palm to desktop

2006-05-04 Thread Terence Sambo
Hello Suzan,As far as I know, if the database you created has the same creator ID as the application which created it, they will show up as 'one' in the application info. Your database is still a seperate pdb on the device and you could write a conduit to HotSync it to the desktop if you so chose.

Re: VFSFileWrite - .txt file - new line

2006-05-04 Thread Terence Sambo
The newline character on Palm devices is ASCII 10 and is encoded as \nOn 5/4/06, Klemen Dovrtel [EMAIL PROTECTED] wrote:I would like to write text in a new line. What character should i add into a text string? --For information on using the PalmSource Developer Forums, or to unsubscribe, please

Re: help transfering data from Palm to desktop

2006-05-04 Thread odeleon
Hi, Terence is rigth, but I have seen java applications that in some way store the data within the application and then it could not be seen as separated PRC/PDB files. Is this your case? If you plan to convert the PDB using an external tool, then it could be simple as taking the PDB file from

Re: help transfering data from Palm to desktop

2006-05-04 Thread Paulo Raffaelli
Hi,you can change the creator type and/or ID of a database by using DmDatabaseInfo() and DmSetDatabaseInfo(), but the database probably needs to be closed for the call to DmSetDatabaseInfo() to work.Another possibility is to export your data into an Office To Go spreadsheet - there's an API for

re: Field functions cause reset when in Calendar/Contacts/Tasks

2006-05-04 Thread _david_n_
I've investigated this further, and found a probable reason why this is happening. I still can't get it to do what I want it to though! When you attempt to get the element currently in focus (using FrmGetActiveField), the framework is sometimes returning the incorrect item. The attached

Missing Address Book source code in SDK5-R4

2006-05-04 Thread C G W
Hi, The 68K documentation for PdiLibrary refers to the file AddressTransfer.c in the source code for the Address Book. Does any one know where I can find this for SDK5-R4? It doesn't appear to be in the PODS 1.2 developer suite. Thanx! -- For information on using the PalmSource Developer

Re: name of palm program

2006-05-04 Thread Aaron Ardiri
On 5/4/06, Klemen Dovrtel [EMAIL PROTECTED] wrote: I have a problem. Every program I make and install, it replaces preveous one i installed on palm. Seems to me that they have the same ID. The problem is that i don't know what should i set or change, when i create a new project. I already

Weird Problem with FlpAToF

2006-05-04 Thread fhickman3
Hi group, I am getting an Access Violation reading address 0x when trying to convert a string to a FlpDouble type. Here is a snippet of code causing the problem... hTxt= FldGetTextHandle( GetObjectPtr( pForm, fldAlbumin ) ); FldSetTextHandle( GetObjectPtr( pForm, fldAlbumin ), NULL );

Re: Weird Problem with FlpAToF

2006-05-04 Thread Jeff Summers
Two things to try. First, in the problem line, try dblAlbumin = FlpAToF(pszAlbumin); Second, try using FlpBufferAToF instead of FlpAToF. I had weird problems with the plain version as well, buffer version works nicely. /js In your message regarding Weird Problem with FlpAToF dated Thu, 4 May

Re: Weird Problem with FlpAToF

2006-05-04 Thread fhickman3
Hi, Thanks for the suggestions. I have already tried the first one however and it also failed. I will look at the FlpBufferAToF to see if that works for me. Thanks again. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: Weird Problem with FlpAToF

2006-05-04 Thread fhickman3
Yep, the FlpBufferAToF works great. Thank you for taking the time to respond. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

SubLaunchFlag doesn't work on Treo650

2006-05-04 Thread Diana
I tried to add an email to the outbox of treo650 but i wanted to do it with a subcall command. The example that was provided with the SDK doesn't work. Does anyone know how else i can go around it? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: help transfering data from Palm to desktop

2006-05-04 Thread scarranza
Thanks Terence, Oscar and Paulo for the responses. They pointed me in the right direction. I am posting what I figured out, in case someone has a similar problem in the future. My file was not transferring to the PC as prc only. Then I tried to assign a separate creator ID, just to see if

Palm font on windows

2006-05-04 Thread Mike Margerum
We have a windows app that needs to represent the palm screen completely in terms of font. I know there used to be a windows font that came with Code Warrior 5. Does anyone have that font? If not, can anyone recommend a font that is available for use that is very close to the size of the

Re: Palm font on windows

2006-05-04 Thread Mike Margerum
I see there was a recent thread on this exact subject. Is anyone still using code warrior 5 and if so, can they please send me the font. I'm not using it for commercial purposes and I did purchase code warrior 5 many times. I just cannot find the cd. thx Mike Margerum wrote: We have a

Re: Palm font on windows

2006-05-04 Thread Mike Margerum
What about the resource editor that ships with pods? What does that use? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Palm font on windows

2006-05-04 Thread Mike Margerum
I found them in the code warrior 9 distro c:\Program Files\Metrowerks\CodeWarrior\CW for Palm OS Tools\Handspring Tools\RscEdit\Font just rename the extension to fon and drag them into the fonts folder. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please