RE: Palm Economy

2005-04-04 Thread Fernando Israel
Hi Jon, Many thanks for pointing this out. Fernando -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Palm Economy

2005-04-04 Thread Fernando Israel
Hi there, I am exploring the possibility of developing commercial Palm applications. I have read the information on PalmSource website regarding Palm's support on this area. Although the information is quite clear, I still have some questions and also I thought that people in this forum are pro

Re: Table drawing callback function

2005-02-25 Thread Fernando Israel
Hi Greg, Thank you for your reply. And it helps indeed ! The books are on the way. I've order them a week ago. I must apologise because the issue I had turned up to be just the wrong counter in a loop (I mistakely took the number of columns instead of rows). But is helpful what you say and be

Table drawing callback function

2005-02-25 Thread Fernando Israel
Hi there, I have a 2 column table in a form. The table displays a record in a database in each row (which consists in two elements, so the 2 columns). The cell items are of the custom type. The issue I have is that the drawing function callback associated with the cells is only called for the f

Re: DmSet function

2005-02-22 Thread Fernando Israel
Thanks for your replay. Okay, but what if the variable/object you want to write to the record is a struct (as in C struct) ?. Cheers, Fernando -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

DmSet function

2005-02-22 Thread Fernando Israel
Hi there, I am not sure I understand what is the 'value' argument in the DmSet function below. Specifically, say that I am using the function to write into a record the value of a variable that is a struct, say struct A {...}. So in the call to DmSet bytes would be sizeof(A), but what the value

Re: Editing in-place in-memory

2005-02-19 Thread Fernando Israel
I missed that one, but now it makes sense. Thank you very much Terry. Fernando -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Editing in-place in-memory

2005-02-19 Thread Fernando Israel
Thank you for the reply Cory. I understand from what you say that the association between the field's string and the database record is done somewhere explicitly. Could you provide a code example (a coupe of lines) of how to association between them is expressed in terms of the API?. Also, wha

Editing in-place in-memory

2005-02-19 Thread Fernando Israel
Hi there, I have been looking at the Memo app source code that comes with the SDK in order to learn the API and experiment with a small app that is similar to the memo in that I capture the text in a field (in a form) in a record of a database. Following the thread starting at the end-user cli

Re: dmOpenDatabaseByTypeCreator arguments

2005-02-18 Thread Fernando Israel
Thanks for all the replies. Fernando -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

dmOpenDatabaseByTypeCreator arguments

2005-02-18 Thread Fernando Israel
Hi there, The data manager function dmOpenDatabaseByTypeCreator takes three arguments: type, creator, and mode. Are the first two, type and creator, based on some enum ?; following some samples I see them defined as 'Data' and 'Form', are these coming from somewhere ? Thanks, Fernando -- For

Re: Display pics on Palm OS

2005-02-16 Thread Fernando Israel
Hi Regis, Thank you very much for the pointer. This is very useful. Cheers, Fernando -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Display pics on Palm OS

2005-02-16 Thread Fernando Israel
Hi there, I understand that the Palm OS uses it's own bitmap format. Is there any library support to decode standard formats such as jpg, gif, etc. into the Palm OS format so they can be displayed on a Palm ? Thanks, Fernando -- For information on using the Palm Developer Forums, or to unsubsc

Read into Text Field

2005-02-15 Thread Fernando Israel
Hi there, A bit of a newby question. I have a text field in a form, editable, usable, etc.. I am trapping keyDownEvent in the form's event handler as follows: // deal with input to the text field case keyDownEvent: fldPtr = F