Print Photos.

2005-08-15 Thread pritam hasabnis
Hello All, Does anybody know a method to print Photos taken on Palm(Zire 72) to printer directly(I have HP Printer which is compatible with Palm Zire 72 Ver)? Regards, -Pritam. __ Yahoo! Mail Stay connected, organized, and protected. Ta

Re: More than one database

2005-08-15 Thread Roger Stringer
Subject: Re: More than one database From: Henk Jonas <[EMAIL PROTECTED]> Date: Sun, 14 Aug 2005 21:43:28 +0200 Klemen Dovrtel wrote: > This is just one database, i don't see the second one. Is this code diferent than mine? > DB names must be unique. Furthermore they must be globally uniqu

Question about

2005-08-15 Thread druid
I use this to adjust the attributes of controls However the ListAttrType, and ListType structs are there but not the set and get functions as in the controls IE this.. FieldType *field; FieldAttrType attr; field = FrmGetObjectPtr (form, FrmGetObjectIndex (form, levelFLD)); FldGetAttributes(f

Ok this works

2005-08-15 Thread druid
Thanks to all who helped in many various ways I used a little of mine and a lot of yours to get this to work Thanks again Char letter[256]; Char *p; Char **strArray = NULL; //empty array Char* strLines = NULL; Err err; UInt16 recordindex = 0; pForm = FrmGetActiveForm(); // get active form

Re: Read about it in the SDK.

2005-08-15 Thread Baxter
Sure you can - simply use the tblEnterEvent instead of the tblSelectEvent. -- - DataGet & Pocketlog - www.dataget.com Data Collectors - www.baxcode.com -

Re: PODS

2005-08-15 Thread Jeff Summers
To give directions, you need to know not only where you are going, but also where you are starting. You've given us the destination but not your background. You will need: An understanding of basic programming concepts - loops, conditions, memory use, variables, etc. An understanding of object or

RE: Read about it in the SDK.

2005-08-15 Thread Jeffry Loucks
First, you increment 'recordindex' before using, so you skip strArray[0] and potentially write past the allocated array. Second, since you skipped strArray[0], LstDrawList() tells the list draw code to dereference a string pointer that is garbage and probably crashes doing so. --

Re: Read about it in the SDK.

2005-08-15 Thread druid
well I tried to incorporate your ideas intot he snippet but it still crashes with the same error Char letter[256]; Char *p; Char **strArray = NULL; //empty array Char* strLines = NULL; Err err; UInt16 recordindex = 0; StrCopy( letter, "A" );

PODS

2005-08-15 Thread victor
hi, i'm from brazil and i'd like to start developing por PALM OS with pods, i wanna make a software that add information to a database in the computer and also get the data and bring to the palm ... i want to know how does that works, what do i need, and where can i get a how to ... i went to th

Re: Read about it in the SDK.

2005-08-15 Thread druid
Also the length of the string is not know because it is a field read from a database StrCopy( letter, "A" ); err = Open(); // routine to open database pForm = FrmGetActiveForm(); // get active form lsp1 = FrmGetObjectPtr(pForm, FrmGetObjectIndex(pForm, frmList1)); // get id of list control

Re: Read about it in the SDK.

2005-08-15 Thread druid
You need: * The number of strings in your list, this is your record count. > Because we are filtering as we load the list the number of records is known, but the number going into the list is not known * The strings in a string array. A string array is a memory block from type (Char **). Eve

Re: Could use some direction on how to proceed

2005-08-15 Thread Henk Jonas
druid wrote: SysFormPointerArrayToStrings >> Form an array of pointers to strings in a block. Useful for setting the items of a list. Does only work if you have the strings already in the memory, one after one only with a 0-byte seperated. That's not what you have. See my other post for a d

Re: Could use some direction on how to proceed

2005-08-15 Thread druid
In answer to your question You didn't like my code snippet, right? Never mind, but how shall this work? ghStringArray = SysFormPointerArrayToStrings(p, 1); strArray = (Char**) MemHandleLock(ghStringArray); MemHandleUnlock(h); // unlock each record SysFormPointerArrayToStrings >> Form an array o

Re: Could use some direction on how to proceed

2005-08-15 Thread druid
Nah Mr Jonas, it's not that I did not like it. It's that it is a large departure from what I was reading and trying to get to function, and I was unable to follow it until you expanded on your meaning Thanks -- For information on using the PalmSource Developer Forums, or to unsubscribe, please s

Re: print screen

2005-08-15 Thread Klemen Dovrtel
I found one myself, this one is free. http://www.shareup.com/Snap_for_Palm-download-34547.html -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Read about it in the SDK.

2005-08-15 Thread Henk Jonas
Henk Jonas wrote: druid wrote: Simply put, I can't follow his code or where he was going with that so I guess I will try another method. Then ask about :-) Ok, being a bit more specific... You need: * The number of strings in your list, this is your record count. * The strings in a stri

Re: How to create a personal control...?

2005-08-15 Thread Henk Jonas
Anakym kerberos-hotmail wrote: i have a question, I need a advanced field control with complex events and properties... some idea..? i believe can create a personal form control, but dont find a good tutorial to answer this question.. i want to use the codewarrior 9 and not the palm os develop

Re: Read about it in the SDK.

2005-08-15 Thread Henk Jonas
druid wrote: Simply put, I can't follow his code or where he was going with that so I guess I will try another method. Then ask about :-) -- - Henk Jonas[EMAIL PROTECTED] P

Re: Could use some direction on how to proceed

2005-08-15 Thread Henk Jonas
You didn't like my code snippet, right? Never mind, but how shall this work? ghStringArray = SysFormPointerArrayToStrings(p, 1); strArray = (Char**) MemHandleLock(ghStringArray); MemHandleUnlock(h); // unlock each record Regards Henk druid wrote: Ok on my own I got

RE: Read about it in the SDK.

2005-08-15 Thread druid
Simply put, I can't follow his code or where he was going with that so I guess I will try another method. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: print screen

2005-08-15 Thread Scott Erickson
I also use ScreenShot and have been very happy with it. -- Scott Erickson Software Engineer, FB-4, Inc. [EMAIL PROTECTED] "Klemen Dovrtel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is there a siftware that can be used the same way like print screen on PC? > I would like to

Re: print screen

2005-08-15 Thread Katie A. (Moor) Siek
Yes, I use ScreenShot - www.linkesoft.com On Aug 15, 2005, at 11:44 AM, Klemen Dovrtel wrote: Is there a siftware that can be used the same way like print screen on PC? I would like to get a screen photo of my handheld on my computer. -- For information on using the PalmSource Developer Forums,

print screen

2005-08-15 Thread Klemen Dovrtel
Is there a siftware that can be used the same way like print screen on PC? I would like to get a screen photo of my handheld on my computer. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Notifications buggy on NVFS as well?

2005-08-15 Thread Igor Nesterov
Ben, what is the proper record locking sequence: for lock: protect->open->get->lock->release->close for unlock: open->get->unlock->release->close->unprotect or for lock: protect->open->get->lock->close for unlock: open->unlock->release->close->unprotect or for lock: protect->open->get->loc

re: Dynamic Input Area opens on FrmDrawForm()

2005-08-15 Thread roguek
in your form event handler, handle winEnterEvent, set: handled = true; => OS won't open/close DIA Raf -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Simple question about how to increase stack size

2005-08-15 Thread Stanislav Borisov
Thanks guys, Finaly I think I was able to fix tha problem- with your help of course:). The problem was that my application crashes not on the place where realy is a problem. The problem was that I'm not freeng at all some pointers, and I don't check some other pointers when I'm freeng them- th

Re: PODS on linux

2005-08-15 Thread Michal Seliga
i am interested too, can you provide link there? so far i found only windows version on http://www.palmos.com/dev/tools/dev_suite.html btw today i can't check it, when i try to load download page i always get 'the connection was refused when attempting to contact www.developerpavilion.com' :-( --

How to create a personal control...?

2005-08-15 Thread Anakym kerberos-hotmail
i have a question, I need a advanced field control with complex events and properties... some idea..? i believe can create a personal form control, but dont find a good tutorial to answer this question.. i want to use the codewarrior 9 and not the palm os developer suite... please help me. :'(

RE: Read about it in the SDK.

2005-08-15 Thread Jonathan King
That is not going to work. Use the example provided by Henk Jonas. > -Original Message- > From: [EMAIL PROTECTED] [mailto:bounce-454210- > [EMAIL PROTECTED] On Behalf Of druid > Sent: Monday, August 15, 2005 12:03 AM > To: Palm Developer Forum > Subject: re: Read about it in the SDK. > >

RE: Database: memory reading error

2005-08-15 Thread Stephan van der Merwe
Thanks for the reply Chris! I still don't seem to find the error. I attached some of my functions please see if you can spot the error in my code. THANKS TO ANY REPLY -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Tutty Sent: 11 August 2005 01:06