Re: [OT, kind of] Best way to convert Palm app to Pocket PC

2006-01-09 Thread Russell Cagle
I'm interested in this topic too and would like to hear from developers working in both platforms. I'm interested, too. I'd just like to hear what other people are doing. I have a couple of specific questions. Jeffrey Siegel wrote: 1. It is better to start on Palm and move to the other pl

Multi-Segment w/ the Split-By-File Argument?

2005-12-12 Thread Russell Cagle
Hey all, I've written a multi-segment application, I think I've even answered a multi-segment question or two on this mailing list, but it's a confusing subject and now I have a multi-segment question of my own: has anyone had any success with the --split-by-file argument to the GCC linker? I

Re: Palm OS Development is a mess

2005-11-22 Thread Russell Cagle
I agree that Palm OS development is a mess. However, it's interesting to note that, for our organization at least, Palm was the easiest mobile platform to develop for several years ago, mostly because of its Linux support. Windows Mobile development is pretty much impossible under Linux, for

Re: deleting a program currenty on the palm

2005-11-08 Thread Russell Cagle
Instead of my application deleting itself while running, my application renames itself to MyCoolApp_deleteme and then launches the version on the card. After being launched from the card, my application always checks for and deletes MyCoolApp_deleteme. Here's the code. Although it won't comp

Re: ANN: Palm OS Ports of type1lib + freetypelib

2005-11-02 Thread Russell Cagle
Nice! It worked on a T5 and a Tapwave, although the T5 didn't have enough memory to render in color. Any tips on using these libraries with GCC and Peal? Henk Jonas wrote: Hi, during my ongoing Palm OS port of Xpdf (PalmPDF) I've also ported type1lib and freetypelib to Palm OS. Both are mad

Re: I hate to ask

2005-11-01 Thread Russell Cagle
I think you said you're using an array of characters: struct Record { char Ground[1]; }; If so, you also need to compare 'u' to the first character in the array, like this: if (aRecord->Ground[0] == 'u') { } Robert Moynihan wrote: Del Ventruella wrote: This

Re: Garmin GPS underflow crash

2005-09-29 Thread Russell Cagle
Dustin Litchfield wrote: I am using the Que functions QueCreatePoint, QueClosePoint, QueRouteToPoint, and QueViewPointDetails. Here is the weird thing: when I first put the program on the iQue, it would crash every 2nd second time I used any of the above functions. I would reset the device and t

Re: Garmin GPS underflow crash

2005-09-29 Thread Russell Cagle
I use the Garmin SDK. Can you describe the problem in more detail? Russell Cagle Handheld Developer, Partner Software Dustin Litchfield wrote: Has anyone programmed with the Garmin GPS SDK? I am getting an underflow crash in the file GPS_API2eng.c. Dusty Litchfield [EMAIL PROTECTED

Re: DisplayMessage

2005-09-26 Thread Russell Cagle
FldInsert() only works on editable fields. For your situation, call FldSetTextPtr() instead. Also, I noticed your text field has scrollbars, so you're probably displaying lots of text, but if your text would fit on a single screen then you could use FrmCustomAlert(): ALERT ID InformationAle

Re: Displaying Float Values in simple format

2005-09-20 Thread Russell Cagle
http://www.lispme.de/lispme/gcc/tech.html#fpio Jeetu wrote: Hi Folks, I have a problem regarding Float Values,i m storing float value into Database and Displaying it in the text Field,but it is showing me in exponential Format.I dont want to display it in exponential format. I have

Re: Successful projects with very large (>30MB) PDB files?

2005-08-29 Thread Russell Cagle
One thing that wasn't clear from your email: do you have the option of using a card reader instead of HotSync? A 30MB file would copy to the card in less than a minute. Russell Cagle Handheld Developer, Partner Software David Prothero wrote: Those are helpful comments, thanks David.

Re: creating small fonts on the fly?

2005-08-05 Thread Russell Cagle
e you work on a more complicated solution. Russell Cagle Handheld Developer, Partner Software Frantisek Dufka wrote: Thanks for your insight. So it is not possible to have a character in a hires font which has odd number of pixels due to the width table being always in in standard lores coordi

Re: E2 rs232 connection option

2005-07-26 Thread Russell Cagle
Jeff, I've used a Socket Cordless Serial Adapter (http://www.socketcom.com/product/CS0400-479.asp) to connect a T5 to a serial GPS using Bluetooth. Russell Cagle Handheld Developer, Partner Software One of our customers uses a Socket Bluetooth adapter Jeff Ervin wrote: I am trying t

Re: Multisegment trouble

2005-07-14 Thread Russell Cagle
You have to pass your .def file to build-prc, like so: build-prc -o $@ MapApp.def $< res/*.bin MapViewer-res/*.bin Russell Cagle Handheld Developer, Partner Software Gnadinger, David wrote: I am making my first attempt at splitting a program in more than one section. I get the follow

Re: PRC that autoupdates iteself

2005-06-23 Thread Russell Cagle
none of these solutions work for you. Google "PRC file format". Russell Cagle Handheld Developer, Partner Software Larry wrote: how does the newly downloaded PRC get imported/inserted into the device's application storage? Can the downloaded PRC file be directly inserted into a

Re: PRC that autoupdates iteself

2005-06-23 Thread Russell Cagle
tabaseInfo() to rename it. Import your new PRC. Call SysUIAppSwitch(). To delete the old copy of your application, check for "My App Backup" at startup and delete it. This works for me, but YMMV. Russell Cagle Handheld Developer, Partner Software Larry wrote: Does anyone know h

Re: Using Math Library in PNO

2005-06-20 Thread Russell Cagle
math library (libm.a). For a copy of FDLIBM, please see http://www.netlib.org/fdlibm/ or http://www.validlab.com/software/ Russell Cagle Handheld Developer, Partner Software Leandro Jekimim Goulart wrote: Hi, I'm using CodeWarrior 9.3 and I would like

Re: Native ARM apps, again

2005-06-08 Thread Russell Cagle
message archive for the pno-forum. The people on that list know a lot more than I know, and you're more likely to get a response than on the general Palm dev forum. Russell Cagle Handheld Developer, Partner Software Mark Tigges wrote: So, as I've learned more about PODS, and prc-to

Re: Lies ?

2005-04-05 Thread Russell Cagle
Well, I wouldn't call Palm press releases 'lies', but I am disappointed by the delay in OS 6. My biggest problems with the Palm right now: * ARM development is a pain. * I'd like to lose both 64k limits, both the number of records in a database and the maximum size of an individual reco

Re: How to remember the opened form between application switches?

2005-04-04 Thread Russell Cagle
I treat modal forms as transient, and that seems to fit with the Palm UI guidelines. Although popup forms aren't strictly modal, I'd treat them the same way. In other words, only return to the last full-screen form. Dr. Vesselin Bontchev wrote: Hello folks, When my application is started, the

Re: how to create my own CustomFont

2005-04-02 Thread Russell Cagle
Read this: http://rumkin.com/reference/palm/advanced.php The font stuff is a few pages down. versha wrote: I have made a txt file for MyCustom Font ? i am using Codewarrior8.0, how do i add this txt file and link it to my application so that i can use the Font. Kindly help Thanks versha -- For in

Re: How to hide and to show the command bar in T3/T5?

2005-03-25 Thread Russell Cagle
Read DynamicInputAreas.pdf in Palm OS 5 SDK. Under the section "Hiding and Showing the Control Bar", it mentions StatHide() and StatShow(). You can also catch the keyDownEvent that the home icon generates. A.Kazantsev wrote: OK, there must be a confusion. I'm asking about the command bar shown a

Re: Immediate Help needed.

2005-03-22 Thread Russell Cagle
http://www.palmos.com/dev/support/docs/palmos/PalmOSCompanion/UserInterface.html#1009521 Under the section 'Checking Menu Visibility', the Palm OS docs have some example code to check if another form has popped up over your application's form. 'Note that this technique is not specific to menusây

Read Graffiti on the Main Screen

2005-03-14 Thread Russell Cagle
r any alternatives. Does anyone out there have any suggestions? I need to read Graffiti on the main screen. I need the letter written and the bounds of the stroke. http://www.palmos.com/dev/support/docs/protein_books/Porting_Apps_to_Cobalt/Graffiti.html Russell Cagle Partner Software -- For informati

Re: Problems handling user input in a text field per character

2005-02-18 Thread Russell Cagle
You can pass the keyDownEvent to FldHandleEvent(): fieldIndex = FrmGetObjectIndex(frmP, LookUpFieldID); fieldPtr = reinterpret_cast(FrmGetObjectPtr(frmP, fieldIndex)); FldHandleEvent(fieldPtr, eventP); Marvin Bellamy wrote: I'm trying to make dynamic changes within my application based on each cha