Re: How to copy data to PC?

2005-08-10 Thread Klemen Dovrtel
Is it possible to open the database with excel? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Automatic Luanch of Palm Application After its Installation

2005-08-10 Thread Moshe Buhboot
Dear Greg, Is it possible to install using PSI to an SD card on a T5? Here is a code sample: HandheldFile Title=Eran 4/22 Filename=4ausf.udr InstallToCard=Required OutputDirectory=/UDRIVE/AUDIO/ On T3 it works fine (installs to SD) but on T5 it installs to the internal drive. Is there a

PODS on linux

2005-08-10 Thread David Birdsall
Does anyone know if PODS will be available for linux? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to translate timezone to text (like PCT, EAST...) ?

2005-08-10 Thread Shimon Shnitzer
Hi, Thanks. TimeZoneToAscii() returns a verval description like NewYork... which is too long for my display, plus is different than the text the built-in calendar shows (PCT, EAST...) -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

TblSetCustomDrawProcedure

2005-08-10 Thread Klemen Dovrtel
I don't understand how to fill the table with TblSetCustomDrawProcedure. I was looking at diferent customdrawprocedures, bud i don't understand which part o code actually fills the table. typedef struct { UInt16 number; char text1[5]; char text2[20]; } DBRecordType; static void Record(void

Re: TblSetCustomDrawProcedure

2005-08-10 Thread Juergen Wind
Klemen Dovrtel wrote: I don't understand how to fill the table with TblSetCustomDrawProcedure. I was looking at diferent customdrawprocedures, bud i don't understand which part o code actually fills the table. typedef struct { UInt16 number; char text1[5]; char text2[20]; } DBRecordType;

Re: TblSetCustomDrawProcedure

2005-08-10 Thread Klemen Dovrtel
ok, and which part of the code draws the corresponding table entry? Can you tell me what should i do to write the number on table? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: TblSetCustomDrawProcedure

2005-08-10 Thread Henk Jonas
Klemen Dovrtel wrote: ok, and which part of the code draws the corresponding table entry? Can you tell me what should i do to write the number on table? Record does it. You get the bounds and just uses WinDrawChars to write the number inside the bounds on the display. Record will be called

Adjusting the application to work with Palm OS 5.4

2005-08-10 Thread Luke Iwanicki
Hi all, I have a custom made application that worked totally fine on Palm OS 4.x up to 5.2. I noticed that on devices with Palm OS 5.4 my application causes Fatal Errors in certain places. Generally it works fine in 90% of its functionality. I was trying to find any document or information

Re: Adjusting the application to work with Palm OS 5.4

2005-08-10 Thread Scott Erickson
http://www.palmos.com/dev/support/docs/palmos/PalmOSReference/CompatibilityApdx.html#992643 the above link is to the compatibility section of the API. It lists all changes made to the API for each version of the OS. -- Scott Erickson Software Engineer, FB-4, Inc. [EMAIL PROTECTED] Luke

Re: How to copy data to PC?

2005-08-10 Thread Robert Moynihan
Klemen Dovrtel wrote: Is it possible to open the database with excel? No. An Excel database has a specific format, which is definitely not the same as a Palm database. The Palm database has a special header, which is useless to Excel, and each record in the Palm database has a stucture

Re: How to copy data to PC?

2005-08-10 Thread Atiq rahman
Dear Mr.Klemen, It will be kind of you if you send me the application. Regards, Atiq On 8/10/05, Klemen Dovrtel [EMAIL PROTECTED] wrote: I would like to copy a database from palm to pc and read the records. How can i do that? -- For information on using the

FrmNewForm, FrmDoDialog, and FrmSetNavState

2005-08-10 Thread Eric Potter
In my application, I create a new form with FrmNewForm, setting the modal flage to true. I display it with FrmDoDialog. But when I run it on the T5, the focus ring is not drawn. I though all Modal forms had the focus ring on by default. Is this a bug/loop-hole in the OS? As a work around, I

Re: Installing PODS--gives error and quits

2005-08-10 Thread Marcelo van Kampen
Try to Re-Download the package, maybe it´s corrupt. Marcelo van Kampen On 8/9/05, Don I [EMAIL PROTECTED] wrote: Hello all, I downloaded PODS last night and tried to install it tonight. It gets part way through the installation and tells me that it can't because a file doesn't match the

Re: How to copy data to PC?

2005-08-10 Thread Katie A. (Moor) Siek
I'm doing a standard hack - 1. I copy my database records to the memopad (there is a recipe on Palm Source Knowledge Base to transfer data to the memopad using streams) 2. I hotsync and all contents from the memopad are moved to my computer 3. I use a php page to put the

Re: PODS on linux

2005-08-10 Thread Roger Stringer
Subject: PODS on linux From: David Birdsall [EMAIL PROTECTED] Date: Wed, 10 Aug 2005 08:05:34 - Does anyone know if PODS will be available for linux? At PalmSource DevCon they indicated they are going to have PODS for both Mac and Linux, but I don't remember the details (or perhaps

Re: Adjusting the application to work with Palm OS 5.4

2005-08-10 Thread Ben Combee
At 04:13 AM 8/10/2005, you wrote: Hi all, I have a custom made application that worked totally fine on Palm OS 4.x up to 5.2. I noticed that on devices with Palm OS 5.4 my application causes Fatal Errors in certain places. Generally it works fine in 90% of its functionality. I was trying to

Database: memory reading error

2005-08-10 Thread Stephan
Hi all! I am implementing a database with a list and edit tables similar to the address example. My problem is after entering text in the second field in my dataColumn I receive an error (also attached) that my program is reading from a location in the memory manager’s data structures. Any help

Re: Database: memory reading error

2005-08-10 Thread Chris Tutty
From: Stephan [EMAIL PROTECTED] Hi all! I am implementing a database with a list and edit tables similar to the address example. My problem is after entering text in the second field in my dataColumn I receive an error (also attached) that my program is reading from a location in the memory

Need some help determing what might be crashing this code

2005-08-10 Thread druid
Run it twice in a row and it will crash Does the record index change do to this routine The rest of the DmWrite variables are global and loaded from the read to the record EditRecord() { UInt16 size = 0; UInt16 Offset = 0; Err err; Char *ptr; err = Open(); h =

re: FrmNewForm, FrmDoDialog, and FrmSetNavState

2005-08-10 Thread mguo
set focus first, then draw the form. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

re: Need some help determing what might be crashing this code

2005-08-10 Thread druid
Here is the error msg I can not figure how this routine is causing this message all works well first time, does save the record, click it a second time and I get this -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: Need some help determing what might be crashing this code

2005-08-10 Thread Chris Tutty
From: druid [EMAIL PROTECTED] Run it twice in a row and it will crash EditRecord() { (snip) err = Open(); h = DmGetRecord(dbPtr, nRecordIndex); (snip) MemHandleUnlock(h); DmReleaseRecord(dbPtr, nRecordIndex, true); err = DmCloseDatabase(dbPtr); return 0; } You're

Re: Need some help determing what might be crashing this code

2005-08-10 Thread druid
Here is the open routine static Err Open(void) { // Open the database or create it if it doesn't exist: if(dbPtr == NULL) { // First see if we can find it: LocalID dbID = DmFindDatabase(DB_CARDNO, DB_NAME); if(!dbID)

Re: Need some help determing what might be crashing this code

2005-08-10 Thread druid
If I comment out the DmWrites I can click it all I want and no crash -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Need some help determing what might be crashing this code

2005-08-10 Thread Jeffry Loucks
You are not setting dbPtr back to NULL after closing the database, so the second time through your Open() routine, the database is not reopened, dpPtr remains pointing to garbage and Open() returns no error. Jeff Loucks Work 425-284-1128 [EMAIL PROTECTED] Home 253-851-8908

re: Need some help determing what might be crashing this code

2005-08-10 Thread druid
changed err = DmCloseDatabase(dbPtr); To err CloseDB(); and then Err CloseDB(void) { // Close the database if it has been opened: if(dbPtr) { Err err = DmCloseDatabase(dbPtr); dbPtr = NULL; if(err) return err; }

Re: Need some help determing what might be crashing this code

2005-08-10 Thread Logan Shaw
druid wrote: Run it twice in a row and it will crash Does the record index change do to this routine The rest of the DmWrite variables are global and loaded from the read to the record EditRecord() { UInt16 size = 0; UInt16 Offset = 0; Err err; Char *ptr; err = Open(); h =