Very long string

2004-08-05 Thread Patrick Lucas
Guys I have a very long #define in C. #define XYZ (a lot of text) Is there a way of writing it on several lines? Regards Patrick -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Printing from the Dana

2004-08-05 Thread Ads Para
Hi, Has anyone ever used the ASUSBPrint.h file to do USB printing from the Alphasmart Dana? __ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! http://promotions.yahoo.com/new_mail -- For information on using the Palm Developer

tutorial / programming examples web pages ?

2004-08-05 Thread Lotfi
Hi where to find tutorial / programming examples web pages ? for palm OS 4 and + appli / games thanks in advance -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Very long string

2004-08-05 Thread Luc Le Blanc
Patrick Lucas a écrit : I have a very long #define in C. #define XYZ (a lot of text) Is there a way of writing it on several lines? const Char *XYZ = (a lot of text); sounds more appropriate. Your long string would only appear once in the compiled code. Using a define will have the

Re: Very long string

2004-08-05 Thread Ben Combee
At 03:44 AM 8/5/2004, you wrote: Guys I have a very long #define in C. #define XYZ (a lot of text) Is there a way of writing it on several lines? #define XYT \ This is a very long \ string that I've put across \ several lines. C and C++ let you specify a string in parts -- it will

Re: Subject: Assembly code in Shared Library not working in GCC

2004-08-05 Thread Ben Combee
At 07:34 AM 8/5/2004, you wrote: When i try to compile an assembly code, seems the compiler doesn't recognize the keyword asm. PRC-Tools uses a different syntax for inline assembly code than CodeWarrior for Palm OS. Please review the documentation at http://prc-tools.sourceforge.net for

RE: Error on cleanup after installation, OS 5...

2004-08-05 Thread Ornstein, Adam
I got it. Thanks! - Sent: Thursday, August 05, 2004 9:22 AM To: Palm Developer Forum Subject: RE: Error on cleanup after installation, OS 5... Can you expand on that please? How would I make the globals declared after launch commands...? --- You may have used globals before

Re: Palm OS Developer Suite 1.0 is released!

2004-08-05 Thread Arrow
great ! ...now if we could get a framework (hint hint ...i know PODS is just getting up and running, but i'm greedy :P ) ...be great if POL ( http://www.pollib.com/ ) would do a port Ben Combee [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] (this is also posted to tools-forum and

re: Simple DB tutorial

2004-08-05 Thread Brandon Prater
you might try here... This guy set up some good looking easy tutorials. I haven't actually tried them, but did read them and such. There is one specifically on a database. http://mobile.eric-poncet.com/palm/tutorial.html check Advanced:section 5 -- For information on using the Palm Developer

DIA, T3 and Blue Line

2004-08-05 Thread Mike McCollister
I have a small cosmetic bug in my programs that uses the Tungsten T3 DIA. When I minimize the DIA I see that a blue line is quickly drawn before it is resized. I have found that on the T3 simulator if I put a SysFatalAlert(here i am); right after case winDisplayChangedEvent: that I freeze the

serial help request

2004-08-05 Thread Danielle O'Hallisey
I note that the serial manager allows the declaration of an “available IR port” as a serial device. Is this really as simple as declaring, for example: CSerialStream ser(0x8001, 9600, 1 * SysTicksPerSecond(),5); /*initialize the port to use 0x8001, which is IR port, as serial. Note that I am

Re: Palm OS Developer Suite 1.0 is released!

2004-08-05 Thread Vincent Coetzee
When are we gonna see support for the Mac ? On 04 Aug 2004, at 10:02 PM, Ben Combee wrote: (this is also posted to tools-forum and protein-forum) Hey, everyone! The PalmSource tools team has released Palm OS Developer Suite 1.0! After a glitch this morning, we now have all of the 1.0 release

Re: Palm OS Developer Suite 1.0 is released!

2004-08-05 Thread Helmut A. Bender
And for Linux? Am Donnerstag, 5. August 2004 18:07 schrieb Vincent Coetzee: When are we gonna see support for the Mac ? On 04 Aug 2004, at 10:02 PM, Ben Combee wrote: (this is also posted to tools-forum and protein-forum) Hey, everyone! The PalmSource tools team has released Palm OS

Re: Palm OS Developer Suite 1.0 is released!

2004-08-05 Thread Ben Combee
At 11:07 AM 8/5/2004, you wrote: When are we gonna see support for the Mac ? It is a project on which we are doing investigation work, but in order to get CDT working on Mac OS X, we first need to update to Eclipse 3.0 and CDT 2, so that's our priority right now. -- Ben Combee, DTS technical

Re: Palm App .... CODER and GRAPHICS person needed!

2004-08-05 Thread Robert Hildinger
Dan Jordan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] P.S. I do know my market. I have have been living it for 20 years. And my numbers are low. I can learn to program but you can't live my life! Jordan : Dan, I didn't mean to imply that you didn't know your market; obviously

Re: Palm OS Developer Suite 1.0 is released!

2004-08-05 Thread Edan
what's the build for the new release? I am using 1.0 but I am not sure if its the latest version. my build is: 40E_100B if its not the latest, is there any major difference between my build and the current build? thanks -- For information on using the Palm Developer Forums, or to

un-freed chunk error

2004-08-05 Thread Abid Velshi
I am trying to create an app that opens an SSL socket, sends a message to the server, and in turn the server sends a messge back to the palm. I have a bug in the program that will not let me start up my app. When I click on the icon to get into the program, all I see is a blank screen. I have

Re: Palm OS Developer Suite 1.0 is released!

2004-08-05 Thread Ben Combee
At 11:37 AM 8/5/2004, you wrote: what's the build for the new release? I am using 1.0 but I am not sure if its the latest version. my build is: 40E_100B if its not the latest, is there any major difference between my build and the current build? Build 46E_100B is the final release of 1.0.

Re: un-freed chunk error

2004-08-05 Thread Ben Combee
At 11:44 AM 8/5/2004, you wrote: I am trying to create an app that opens an SSL socket, sends a message to the server, and in turn the server sends a messge back to the palm. I have a bug in the program that will not let me start up my app. When I click on the icon to get into the program, all I

RE: un-freed chunk error

2004-08-05 Thread Abid Velshi
Thanks for the quick response. That must explain the error produced in the simulator, however I dont think it explains the reason why the app won't start up on the device. I do not open any SSL connections until I press a button within the application. On startup, I only attempt to make a tcp

Limits on Locking and Unlocking a memory chunk?

2004-08-05 Thread Saurabh Agarwal
Hi, I am trying to lock/unlock a memory chunk. But after some no of iterations, it gives error MemoryMgr.c, Line:3061, Chunk over-locked. Can anybody tell me where I have done mistake. I have used MemHandleLock and MemHandleUnlock in pairs only i.e first called MemHandleLock and then

Re: Limits on Locking and Unlocking a memory chunk?

2004-08-05 Thread Aaron Ardiri
I am trying to lock/unlock a memory chunk. But after some no of iterations, it gives error MemoryMgr.c, Line:3061, Chunk over-locked. Can anybody tell me where I have done mistake. I have used MemHandleLock and MemHandleUnlock in pairs only i.e first called MemHandleLock and then

Re: Limits on Locking and Unlocking a memory chunk?

2004-08-05 Thread Saurabh Agarwal
sorry i could not understand ur reply. u mean to say that MemHandleLock increases the count and then MemHandleUnlock decreases the same count. and so the net affect on this count remained zero. Is this waht u mean?? Or Lock and Unlcok increases a count by one. So I can lock-unlock that chunk at

Re: Sending an e-mail from an app

2004-08-05 Thread Robert Williams
I do this from my Clinical WebLog (CWebLog)(TM) Palm client. Students enter their data into CWebLog and when they tap Submit the data is written into the Palm MailDB outbox database. The code for this comes from the freely available source for Palm Mail. The student can then synchronize as

Re: Sending an e-mail from an app

2004-08-05 Thread Robert Williams
Where would one find information about the name and structure of the Mobile Mail database, enough information to write to that applications outbox database? Bob Williams -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Sending an e-mail from an app

2004-08-05 Thread Ben Combee
At 02:39 PM 8/5/2004, you wrote: Where would one find information about the name and structure of the Mobile Mail database, enough information to write to that applications outbox database? In general, PalmSource discourages developers from writing to other applications' databases. The preferred

Re: Limits on Locking and Unlocking a memory chunk?

2004-08-05 Thread Aaron Ardiri
sorry i could not understand ur reply. u mean to say that MemHandleLock increases the count and then MemHandleUnlock decreases the same count. and so the net affect on this count remained zero. Is this waht u mean?? if the lock count is greater than 16, it'll barf. end of story. so, you

Re: Sending an e-mail from an app

2004-08-05 Thread Robert Williams
Dear Ben, Where would one find such a documented launch code, (would this actually launch the mail app?) or a discussion about how to use the Exchange Manager. I don't want to see any mail applications opened; this is not useful. I just want my message, automatically generated, to appear in the

Re: Sending an e-mail from an app

2004-08-05 Thread Ben Combee
At 03:27 PM 8/5/2004, you wrote: Where would one find such a documented launch code, (would this actually launch the mail app?) or a discussion about how to use the Exchange Manager. I don't want to see any mail applications opened; this is not useful. I just want my message, automatically

Installing Apps on to Tungsten E Simulator

2004-08-05 Thread Krish
I am trying to install and run the Palm Photos application, which came with my Tungsten E CD onto Tungsten E Simulator. When I try to run the Photos application on the Simulator I get a Failed to prepare x86 code resource for execution - Could not load 'C:\..\Palm OS Simulator (Tungsten

Re: Installing Apps on to Tungsten E Simulator

2004-08-05 Thread Ben Combee
At 04:19 PM 8/5/2004, you wrote: I am trying to install and run the Palm Photos application, which came with my Tungsten E CD onto Tungsten E Simulator. When I try to run the Photos application on the Simulator I get a Failed to prepare x86 code resource for execution - Could not load

Re: Installing Apps on to Tungsten E Simulator

2004-08-05 Thread Krish
Thanks Ben. I am using Zire 72 Simulator too. Just wanetd to test on different Simulators. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Stray PenUpEvent

2004-08-05 Thread Timothy Dean
I have an event handler for a form that has a table on it. When a tblSelectEvent happens I execute a FrmGotoForm to open a second form. The second form has a handler that traps PenUpEvents. The first thing that happens in the second form is that it catches the PenUpEvent from the user selecting

DMWriteCheckFailed

2004-08-05 Thread Dave Mottorn
I have a big application that was getting unwieldy so I divided it into two programs. I removed unneeded routines and variables from it and recompiled it and that part seems to be running fine. I set up a new application using the wizard in CodeWarrior and copied the routines and

Re: DMWriteCheckFailed

2004-08-05 Thread Ben Combee
At 06:32 PM 8/5/2004, you wrote: I have a big application that was getting unwieldy so I divided it into two programs. I removed unneeded routines and variables from it and recompiled it and that part seems to be running fine. I set up a new application using the wizard in CodeWarrior

Re: DMWriteCheckFailed

2004-08-05 Thread Alan Ingleby
Dave Mottorn [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I have a big application that was getting unwieldy so I divided it into two programs. I removed unneeded routines and variables from it and recompiled it and that part seems to be running fine. I set up a new application

Re: Limits on Locking and Unlocking a memory chunk?

2004-08-05 Thread Chris Tutty
From: Saurabh Agarwal [EMAIL PROTECTED] sorry i could not understand ur reply. u mean to say that MemHandleLock increases the count and then MemHandleUnlock decreases the same count. and so the net affect on this count remained zero. Is this waht u mean?? Yes, if your code is correct. What

Re: Limits on Locking and Unlocking a memory chunk?

2004-08-05 Thread Alan Ingleby
Aaron Ardiri [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] sorry i could not understand ur reply. u mean to say that MemHandleLock increases the count and then MemHandleUnlock decreases the same count. and so the net affect on this count remained zero. Is this waht u mean??

Re: Stray PenUpEvent

2004-08-05 Thread Chris Tutty
From: Timothy Dean [EMAIL PROTECTED] I have an event handler for a form that has a table on it. When a tblSelectEvent happens I execute a FrmGotoForm to open a second form. The second form has a handler that traps PenUpEvents. The first thing that happens in the second form is that it

Cobalt simulator?

2004-08-05 Thread Gary Olmstead
So, where is the Cobalt simulator really hiding? I can get to the screen that says you asked for it, here it is... but where exactly IS it? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Cobalt simulator?

2004-08-05 Thread Ben Combee
At 07:17 PM 8/5/2004, you wrote: So, where is the Cobalt simulator really hiding? I can get to the screen that says you asked for it, here it is... but where exactly IS it? In the PODS 1.0 installation, it's in the sdk-6 folder under the tools directory. To download it separately, you need to

RE: DMWriteCheckFailed

2004-08-05 Thread Dave Mottorn
I am using expanded mode. I have version CW 8 with the latest updates. I've just used the one version of the runtime library. I'll look into the debug version. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ben Combee Sent: Thursday, August 05, 2004

RE: DMWriteCheckFailed

2004-08-05 Thread Ben Combee
At 07:24 PM 8/5/2004, you wrote: I am using expanded mode. I have version CW 8 with the latest updates. I've just used the one version of the runtime library. I'll look into the debug version. The fix for this problem was in the V9 linker, and the bug existed in V8 as well, so the only fix