RE: How can you detect a PalmPilot Personal.

2000-04-20 Thread Lee Fyock
Keith said: Well, checking for Professional vs. Personally still probably isn't a good check. If the user has NetLib open for some reason, that will eat up 32K of heap on a Pro, still leaving you with the same amount of space that causes you to fail on a Personal. We do the same check for the

RE: How can you detect a PalmPilot Personal.

2000-04-19 Thread Paul A. Dugas
How about just testing for the Expense app when you've decided you're on a 2.0 device? If I had to guess, I wouldn't expect Palm to be releasing and new 2.0 ROMs with different configurations. $0.02, -- Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] m]On

Re: How can you detect a PalmPilot Personal.

2000-04-19 Thread Ben Combee
If the issue is that the PalmPilot Personal doesn't have NetLib support, why not just check the return value of SysLibFind("net.lib",...) If it returns sysErrLibNotFound, then you're on a Personal. "Paul A. Dugas" [EMAIL PROTECTED] wrote in message news:8873@palm-dev-forum... How about just

RE: How can you detect a PalmPilot Personal.

2000-04-19 Thread Scott Maxwell
Of [EMAIL PROTECTED] Sent: Wednesday, April 19, 2000 9:53 AM To: Palm Developer Forum Subject: Re: How can you detect a PalmPilot Personal. What's making your application fail? About the only salient difference between the two devices is the size of the dynamic heap, IIRC. If that's the source

RE: How can you detect a PalmPilot Personal.

2000-04-19 Thread krollin
The problem is the dynamic heap. I have tested on gremlins with all roms and it runs fine on everything greater than the Personal. It fails on the Personal very quickly. When it fails on the Personal, it is usually in a constructor and the PalmPilot does not return control to my app

RE: How can you detect a PalmPilot Personal.

2000-04-19 Thread Scott Maxwell
The problem is the dynamic heap. I have tested on gremlins with all roms and it runs fine on everything greater than the Personal. It fails on the Personal very quickly. When it fails on the Personal, it is usually in a constructor and the PalmPilot does not return control to my app

RE: How can you detect a PalmPilot Personal.

2000-04-19 Thread Scott Maxwell
Of Paul A. Dugas Sent: Wednesday, April 19, 2000 9:55 AM To: Palm Developer Forum Subject: RE: How can you detect a PalmPilot Personal. How about just testing for the Expense app when you've decided you're on a 2.0 device? If I had to guess, I wouldn't expect Palm to be releasing and new 2.0

RE: How can you detect a PalmPilot Personal.

2000-04-19 Thread Scott Maxwell
Perfect. I have just updated my PilotMain. Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Faherty Sent: Wednesday, April 19, 2000 10:22 AM To: Palm Developer Forum Subject: Re: How can you detect a PalmPilot Personal. On 19-Apr