Re: use .rcp and .rsrc together

2005-08-25 Thread Ben Combee
At 12:40 AM 8/25/2005, you wrote: I am using codewarrior 8.3. Can I use .rcp and .rsrc resource files at the same time in one project? If so, should I stick with MacOS 68K Linker (not use PalmOS 68K linker)? If you use the RCP-to-Rez plugin (the one from Neil's site), it will play nicely

Re: Creating Apps that runs on 320x480 screens

2005-08-25 Thread Michal Seliga
Benoit Cerrina wrote: Thomas Omilian wrote: That would depend on your target population, you may not necessarily be able to ignore the sony users who are numerous. but as far as i know sony clie users have some hack which allows them to use applications written only for PalmOne API

Multisegment Debug Problem w/PRC-Tools, Simulator, multilink

2005-08-25 Thread David Ghandehari
Hello, everyone! So, my situation: I'm working with a large C++ app, right now entirely 68k. I'm using Multilink (http://www.djw.org/product/palm/multilink/), which splits my app into 5 sections, because splitting code into sections seems like something humans shouldn't be doing. So,

Compiling my Whole Dang OS5 App Into ARM using prc-tools

2005-08-25 Thread David Ghandehari
Hi again, folks, So, I noticed that prc-tools comes with an arm-palmos compiler as well as the expected m68k-palmos. I have a large multi-section C++ 68k application, and I'd really like to just compile the whole thing into ARM and just have a 68k stub that checks to see if the platform

Re: Creating Apps that runs on 320x480 screens

2005-08-25 Thread Erico Franco
Michal Seliga wrote: but as far as i know sony clie users have some hack which allows them to use applications written only for PalmOne API (application Landscape for Sony Clie). This is interesting, do you know the name/link for this hack? For Mr. Regis Daniel (who started this thread) if

Regarding PODS (ARM)

2005-08-25 Thread Ritu
Hi, Please suggest me the right way to resolve the following issues. 1. How to create a dll project in PODS 6 (ARM) 2. Steps for porting the shared library source of 64k in to PODS 6. Thanks Regards Ritu Chawla. -- For information on using the PalmSource Developer Forums, or to

Re: Wireless Application slow on Treo 600/650

2005-08-25 Thread pmotdev
Hi Patrick, No on simulator. I didn't see it on the website...? On Tue, 23 Aug 2005, Patrick Vuichard wrote: [EMAIL PROTECTED] a écrit, le 23/08/2005 14:29 : Hello Patrick, Do you know anyway around this? I fact, I can see that you're using the port 80, so my hypothesis is

Re[2]: Wireless Application slow on Treo 600/650

2005-08-25 Thread pmotdev
Hi, You mean in the tomcat servlet/apache server? I don't send data on the PDA, I receive.. On Tue, 23 Aug 2005, A.Kazantsev wrote: Try to send data in small chunks (I used to send in chunks of 536 bytes) and to hold on between the chunks for period of time necessary to push the previous

Re: Creating Apps that runs on 320x480 screens

2005-08-25 Thread Michal Seliga
Erico Franco wrote: Michal Seliga wrote: but as far as i know sony clie users have some hack which allows them to use applications written only for PalmOne API (application Landscape for Sony Clie). This is interesting, do you know the name/link for this hack?

Re: Creating Apps that runs on 320x480 screens

2005-08-25 Thread Erico Franco
Michal Seliga wrote: Erico Franco wrote: Michal Seliga wrote: but as far as i know sony clie users have some hack which allows them to use applications written only for PalmOne API (application Landscape for Sony Clie). This is interesting, do you know the name/link for this hack?

Multiple keypress issue with LifeDrive

2005-08-25 Thread Marek Wyszynski
There is a known issue with LifeDrive that it's not possible to detect two keys pressed at the same time using KeyCurrentState. It seems to return 0 when 2 keys are pressed. Does anyone have a solution for that? There is a utility that fixes that problems (it's called LifeKeys) so it means

How to build Palm 5.4 ROM from QDA700 Smartphone image.bin file

2005-08-25 Thread Barry
I recieved a 12 megabyte image.bin file from Qoollabs, manufacturer of the Qool QDA700 smartphone. Can anyone provide step-by-step instructions on how to build the appropriate ROM for use in the Garnet5.4 simulator? Or can this bin file be used as is?? If so, please let me know where to install

Re: Background operation on PalmOS

2005-08-25 Thread Jeffry Loucks
Good suggestion. People have attempted to use real AMX tasks in pre-OS5, which is neither supported nor recommended. I would like to point out right up front that my work does not involve any additional OS 'tasks' of any kind. And yes, it is possible to do background-like stuff with

MemMove doesn't work

2005-08-25 Thread Miguel Angel Sotomayor Hernandez
I'm facing this problem: I get a record from a database, then unpack it and copy (using MemMove) into a pointer I receive in my function. It works fine on treo 600, but not on the treo 650. Here is the relevant part of the code: /* Code starts here */ DBImagenesPkSC* registroActual;

Re: use .rcp and .rsrc together

2005-08-25 Thread Ben Combee
At 12:31 PM 8/25/2005, you wrote: Thanks, Ben! i recall seeing RCP-to-Rez plugin somewhere, but couldn't find it now. Do you know where I can get it? google for pilrc plugin. -- Ben Combee, Senior Software Engineer, palmOne, Inc. Combee on Palm OS weblog: http://palmos.combee.net/

Re: How to build Palm 5.4 ROM from QDA700 Smartphone image.bin file

2005-08-25 Thread Barry
According to the ftp directory Qoollabs gave me access to, the upgrade ROM version appears to be 77, not 78. Do you know how to tell which ROM version my smartphone is currently using? As far as upgrading my own physical QDA700, I don't think I will make the attempt unless doing so will

Re: MemMove doesn't work

2005-08-25 Thread Logan Shaw
Miguel Angel Sotomayor Hernandez wrote: I'm facing this problem: I get a record from a database, then unpack it and copy (using MemMove) into a pointer I receive in my function. It works fine on treo 600, but not on the treo 650. imagen = (DBImagenesSC*)MemPtrNew(sizeof(imagenCopia));// +

How to detect that the device has a hard drive

2005-08-25 Thread Regis St-Gelais
I know that the LifeDrive is using NVFS and that it can be detected by reading the feature sysFtrNumDmAutoBackup. But how do I know if the non volatile medium is actualy a hard drive? I'm looking for a way to other than checking for the LiveDrive device signature so the code will still work with

user name of the handled

2005-08-25 Thread Danaé Castro Terán
Hello: Please help me... I need the name of the handheld user in the user data store to synchronize with. In the COMSyncReference it this example: Dim pSystem as PDSystemAdapter Dim UserInfo as PDUserInfo ' Get the user info object Set UserInfo = pSystem.PDUserInfo ' Get the user name Dim

Re: user name of the handled

2005-08-25 Thread Robert Moynihan
Danaé Castro Terán wrote: Hello: Please help me... I need the name of the handheld user in the user data store to synchronize with. Try this: { char*nameP=NULL; nameP = MemPtrNew(dlkUserNameBufSize); if (nameP){ DlkGetSyncInfo(NULL, NULL, NULL, nameP, NULL, NULL);

How Can I Retrieve the Record Category?

2005-08-25 Thread Régis Daniel de Oliveira
Hi!!! I use the folowing code to set the record category: DmRecordInfo(DbPtrF, Count, attr, NULL, NULL); attr = ~dmRecAttrCategoryMask; //Check with category to Use if (StrAToI(rp) = TodayN) attr |= 0; //Open else attr |= 1; //Closed

Re: MemMove doesn't work

2005-08-25 Thread David Fedor
At 09:36 PM 8/25/2005, you wrote: imagen = (DBImagenesSC*)MemPtrNew(sizeof(imagenCopia));// + imagenCopia-tamanio); MemMove(imagen, imagenCopia, sizeof(imagenCopia));// + imagenCopia-tamanio); /* Messages just to know what's happening */ FrmCustomAlert (1013, imagenCopia-nombre: ,

Re: Fatal Error on install?

2005-08-25 Thread Bryce Burrows
actually i have it all sorted turned out there was a problem with the project which stuffed things up But the key was your very useful information about code being run for notifications - worked around the project problem but redoing the project and sorted the code execution. thank you very

Edit Auto Naming in Camera.

2005-08-25 Thread pritam hasabnis
Hi All, Is there anyway I can Edit auto name(Camera) through Code? Scenario - I am calling Camera application on button click..when I do this I want to pass a new name to it through code,so that user can save it through that name. I am using Zire72 PODS as development environment. Any

netErrSocketBusy

2005-08-25 Thread sanjaywakhare
Hi Everyone, I am writing an application which makes use of sockets. My application opens and closes a socket several number of times. After several attempts or after downloading big amount of data I get 'netErrSocketBusy' while connecting teh socket next time. I have read in some