Odp: installing prc-tools 2.0

2000-04-13 Thread Ewaryst Izewski
Never mind, I think I did it. I just wonder why tex2hex.c in tutorial tries to include files which do not exist in new sdk. Did John Marshall test his tutorial? Ewaryst Izewski - Original Message - From: Ewaryst Izewski <[EMAIL PROTECTED]> To: Palm Developer Forum <[EMAIL PROTECTED]> Sen

RE: PalmOS 3.5 incompatibility problem.

2000-04-13 Thread Linke, Andreas
> What strings were incorrectly translated? Which localizations > of Palm OS 3.5? For the most obvious and embarassing ones in the German Addressbook have a look at http://linkesoft.de/funkruk/ I think it's clear even if you do not know German. Note that the German release ROMs on devzone do n

Seriously weird problem, how could this be wrong ?

2000-04-13 Thread Nicholas Breau
My application crashes on the following line of code, but this function is very simple, can anybody tell me what is going on ??? Nick. TablePtr tableP = (TablePtr)FrmGetObjectPtr(frm, FrmGetObjectIndex(frm, PlotsTreeTable)); -- For information on using the Palm Developer Forums, or to unsubs

Re: Seriously weird problem, how could this be wrong ?

2000-04-13 Thread Roger Chaplin
"Nicholas Breau" <[EMAIL PROTECTED]> wrote: > My application crashes on the following line of code, but this function is > very simple, can anybody tell me what is going on ??? > > Nick. > > TablePtr tableP = (TablePtr)FrmGetObjectPtr(frm, FrmGetObjectIndex(frm, > PlotsTreeTable)); This is wha

Re: Seriously weird problem, how could this be wrong ?

2000-04-13 Thread Nicholas Breau
But their are no variable; tableP gets declared in the statement and frm is the current active form ? I got to this line through the debugger, and the error message displayed is invalid parameter ? PlotsTreeTable is the name of the table, give by the constructor. Nick Roger Chaplin wrote in me

Re: Seriously weird problem, how could this be wrong ?

2000-04-13 Thread Denis Faivre
You could try using variables to have each step separated from the next one ? FormPtr frm = FrmGetActiveForm(); // I guess... Word index = FrmGetObjectIndex(frm, PlotsTreeTable); TablePtr tableP = (TablePtr)FrmGetObjectPtr(frm, index); Then single step to check frm, index, then tableP... -- De

Re: Seriously weird problem, how could this be wrong ?

2000-04-13 Thread Nicholas Breau
I fixed the problem I was short a column in constructor, it's not very intuitive, I didn't know that you had to add the number of columns in the table that you want, i though it was the number - 1, but you need to set the width of the last column to the right edge of the table, I assumed that

Simple example needed

2000-04-13 Thread Timothy Astle
I have 3 databases set up, and 6 structures (packed and unpacked versions). I also have packing and unpacking funcitons set up. I was wondering if anyone had a "stripped down" piece of code that allowed me to simply ADD and DELETE records. Any small example would be great, because I could take i

Re: Link Error

2000-04-13 Thread D. DeVecchio
Haagensen, Brandt, On Wed, 12 Apr 2000 17:59:48 -0700, you said: > Periodically I am getting an 'Unexpected Link Error # 32. Font index not > found. Compilation halted. I am using VC6. This seems to be a bug that started showing up a few months ago when people moved to CW R6 from CW R5. I t

dotted line frames

2000-04-13 Thread Stephen Bentley
I was wondering if anyone knows what the easiest way to create buttons with a dotted-line frames. I'd like to have user customizable buttons and show them with a dotted-line outline, and once they assign a function to them, have the button appear as normal. Since the ButtonFramesType doesn't app

Re: dotted line frames

2000-04-13 Thread Eugen Polukhin
>I was wondering if anyone knows what the easiest way to >create buttons with a dotted-line frames. I'd like to have >user customizable buttons and show them with a dotted-line >outline, and once they assign a function to them, have the >button appear as normal. Since the ButtonFramesType >doe

RE: Seriously weird problem, how could this be wrong ?

2000-04-13 Thread McMicken, Steven
Maybe you're in the wrong form. That's why breaking it apart and stepping through the code would be a good idea. Regards, Steve -Original Message- From: Nicholas Breau [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 7:36 AM To: Palm Developer Forum Subject: Re: Seriously weir

Problem compiling SDK 3.5 examples

2000-04-13 Thread shahed
Hi, I am using gcc / prc-toos 2.0 to compile palm applications. I am able to sucessfully build the examples that are part of the prc-tools using the 3.1 SDK. However, when I try and compile the examples that come with the SDK3.5, I run into problems. Firstly, I had to go and create a link call

Re: OS 3.0.0 and StrPrintF - a BUG???

2000-04-13 Thread Dave Lippincott
Well, according to the OS 3.0 docs, "Currently, only %d, %i, %u, %x and %s are implemented and don't accept field length or format specifications except for the l (long) modifier." so I guess its not a bug. -Original Message- From: Paul Nevai <[EMAIL PROTECTED]> To: Palm Developer Forum

Re: detecting EZ processor

2000-04-13 Thread Dave Lippincott
Check out the Palm Knowledge Base (hint: article http://oasis.palm.com/dev/kb/article.cfm?id=1524 ) -Original Message- From: palm <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: Palm Developer Forum <[EMAIL PROTECTED]> Date: Wednesday, April 12, 2000 8:01 PM Subject: detecting EZ proc

Re: Simple example needed

2000-04-13 Thread Timothy Astle
This is something I tried so that I could just Get a value from the database so that I could display it. theValue.BeginningValue is a floating point number. UniqueID is just the record's ID tag CharPtr GetValue(UInt UniqueID) { tblValue theValue; VoidHand valueHandle = DmGetRecord(gVa

RE: Simple example needed

2000-04-13 Thread McMicken, Steven
Have you localized the problem to the GetValue function? The problem could be in the UnpackValue code. Are you allocating memory for the CharPtr in the program that calls GetValue? These are just guesses, without more code, I can't suggest much more. Regards, Steve -Original Message-

Re: OS 3.0.0 and StrPrintF - a BUG???

2000-04-13 Thread Paul Nevai
# Well, according to the OS 3.0 docs, "Currently, only %d, %i, %u, %x and %s # are implemented and don't accept field length or format specifications # except for the l (long) modifier." so I guess its not a bug. Interesting. I looked at StringMgr.c and there "*" is defined. I guess, I should ha

Need Hotsync 3.0.0, ASAP

2000-04-13 Thread Pete
Is there a download area for 3.0.0 install, I have 3.0.4 but need earlier version. I'm at a customer site and need it ASAP. (Has to do with an earlier DLL of ours) Thanks, Pete -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/ma

Re: Simple example needed

2000-04-13 Thread Timothy Astle
I'm assuming the problem is in GetValue, because I really wrote that off the top of my head because I didn't know how to grab a piece of data from the database. I used the packValue function to add data to the database, and that seems to run okay. (can't completely test it because I can't get th

RE: Need Hotsync 3.0.0, ASAP

2000-04-13 Thread McMicken, Steven
You could download CDK 3.0, which I believe has hotsync version 3.0. Download from this site: http://www.palm.com/devzone/cdkwin/cdkwin.html Regards, Steve -Original Message- From: Pete [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 10:10 AM To: Palm Developer

Help with programatically selecting a table row

2000-04-13 Thread Brandon Wallace
Okay, I have been tinkering with this for quite a while and have not "solved" it yet. I have a Modal Dialog that has a table (with 1 column) with a bunch of rows. When the modal dialog appears, I want to pre-select one of the rows based on some criteria. So, I am using TblSelectItem() to select

Re: Palm VII network

2000-04-13 Thread Tom Zerucha
On Wed, Apr 12, 2000 at 11:47:19PM -0700, Steve Sabram wrote: > Yes you are. Pretty much the pholosophy of the whole Palm VII is > not to replace a browser. The whole development enviroment is there > for you to take "web clippings" from internet sites. Remember that > you are working with a v

Re: Simple example needed

2000-04-13 Thread Timothy Astle
I believe the error has something to do with my DmGetRecord call. The exact error I'm getting is: "DataMgr.c, Line:7821, Index out of range" Timothy Astle <[EMAIL PROTECTED]> wrote in message news:8149@palm-dev-forum... > > I'm assuming the problem is in GetValue, because I really wrote tha

RE: Simple example needed

2000-04-13 Thread McMicken, Steven
The index should be of type UInt16, the maximum index is dmMaxRecordIndex (= 0x). Another possible problem with DmGetRecord is not releasing the record to clear the busy bit before using DmGetRecord on it again. Look at the index you're passing, is it a signed variable? Hope this helps. Re

Re: Link Error

2000-04-13 Thread Vivek_Magotra
Hi, >To my knowledge, Metrowerks/3comm no one has suggested a less annoying >fix than just "double linking" all the time. Well, you could turn off the "Activate Browser" option in your preferences...but that way you won't get any browser info... We should be releasing a fix for this very soon

Re: Simple example needed

2000-04-13 Thread Timothy Astle
I tried using UInt16, and it didn't help. As another test, I changed DmGetRecord to DmQueryRecord. I received this error: MemoryMgrNew.c, Line4165, NULL handle -- Timothy Astle McMicken, Steven <[EMAIL PROTECTED]> wrote in message news:8155@palm-dev-forum... > > The index should be of typ

Re: Simple example needed

2000-04-13 Thread Brandon Wallace
Here is an excerpt from my event handler. The Accept button will save the record. If the record is already in the database, it removes it and then puts it in sorted order. If the record is brand new, it makes one and puts it in sorted order. The Delete button displays a confirm and then deletes

Ability to access old posts??

2000-04-13 Thread Heather Gazdik
Hi. I am fairly new to the palm OS app development and have LOTS of questions. I am sure most of which have been answered before. Is there anyway to access old posts?? I realize there must be thousands and thousand, but it may help me and other new users from boring and repeating the res

Re: NetLibIFAttach does not work

2000-04-13 Thread Bulmer, Russell
Well... I can't find a solution to this one... under PalmOS 3.3 (and 3.5 for that matter) I can't programmatically set and bring up interfaces... After already having failed to simply modify the existing setting (as worked under PalmOS 3.1) my last attempts were along the lines of: - remove any

RE: Ability to access old posts??

2000-04-13 Thread Paul A. Dugas
> ... Is there anyway to access old posts?? Heather, The link at the bottom of each posting is to Palm's Mailing List page. It contains, among other things, information about archives available at eGroups.com and eScribe.com. HTH, -- Paul ___

RE: Trouble with Greyscale

2000-04-13 Thread David Fedor
>Follow up question: > >Reading a little bit more, I have found information about how all apps are >1-bit by default, but that they can place themselves in 2 or 4 bits if >desired, giving access to greyscale. > >Okay, how do I do that? I assume it's something simple and I'm just missing >it. Scr

RE: Ability to access old posts??

2000-04-13 Thread Schettino, John
Try http://www.egroups.com/group/palm-dev-forum - John Schettino Palm OS Programming For Dummies: http://schettino.tripod.com -Original Message- From: Heather Gazdik [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 8:58 AM To: Palm Developer Forum Subject: Ability to access old

Re: Ability to access old posts??

2000-04-13 Thread Aaron Ardiri
> Hi. > I am fairly new to the palm OS app development and have LOTS of questions. > I am sure most of which have been answered before. Is there anyway to > access old posts?? I realize there must be thousands and thousand, but it > may help me and other new users from boring and repeati

Re: Simple example needed

2000-04-13 Thread Timothy Astle
Thanks, maybe this will help me figure out what's wrong with what I wrote. -- Timothy Astle Brandon Wallace <[EMAIL PROTECTED]> wrote in message news:8159@palm-dev-forum... > > Here is an excerpt from my event handler. > The Accept button will save the record. If the record is already > in

App Info Block

2000-04-13 Thread Rob Graber
In "Palm Programming: The Developer's Guide" on page 145 it shows how to create an Application Info Block in a database. Once it is created, it also sows how to set the contents. My question is, how do I retreive the data in this block? I can use DmDatabaseInfo or DmGetAppInfoID to get the Loca

test

2000-04-13 Thread Bulent Gecer
test -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html

Re: Simple example needed

2000-04-13 Thread Brandon Wallace
Important to remember when using O'Reilly's Pack&Unpack pattern: When you unpack your data, it all still points to the packed item. So you cannot unlock the handle on the packed data until you are through using the unpacked data. So: void foo (void) { UnpackedData d; VoidHand record = DmGe

Re: Simple example needed

2000-04-13 Thread Brandon Wallace
Oh, and you can't just cast a float to a string. I think there is a FloatMgr function that converts a float to a string. Other people talk about MathLib. Maybe it has a function that does it to. - Original Message - From: McMicken, Steven <[EMAIL PROTECTED]> To: Palm Developer Forum <[E

Re: Simple example needed

2000-04-13 Thread Timothy Astle
Thanks 2 times over! I was worried about the float to string aspect. -- Timothy Astle Brandon Wallace <[EMAIL PROTECTED]> wrote in message news:8170@palm-dev-forum... > > Oh, and you can't just cast a float to a string. > I think there is a FloatMgr function that converts a float to a stri

Precision of Doubles

2000-04-13 Thread Thomas Ward
Hi, I can't find this information anywhere. Does anyone know what the precision of doubles is? I guess the thing I specifically need to know is: How many decimal places (i.e., digits to the RIGHT of the decimal point) or significant digits can a double hold? I need to do some math with some very

Why doesn't this cast work ?

2000-04-13 Thread Nicholas Breau
Can somebody tell me why this cast isn't working, or how I could solve it ? Nick. VoidHand h = DmQueryRecord(gTreeDB, index); Tree theTree = (Tree)MemHandleLock(h); < where tree is a struct. -- For information on using the Palm Developer Forums, or to unsu

Re: Why doesn't this cast work ?

2000-04-13 Thread Hari Warrier
How could you cast a pointer to a struct? Try (Tree *); On Thu, Apr 13, 2000 at 02:16:25PM -0300, Nicholas Breau wrote: > Can somebody tell me why this cast isn't working, or how I could solve it ? > > Nick. > > > VoidHand h = DmQueryRecord(gTreeDB, index); > Tree theTree = (Tree)MemHandleLock

RE: Why doesn't this cast work ?

2000-04-13 Thread Randy Maxwell
cast to a _pointer_ to a struct... Tree * theTree = (Tree *)MemHandleLock( h ); Regards, Randy Maxwell -Original Message- From: Nicholas Breau [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 13, 2000 10:16 AM To: Palm Developer Forum Subject: Why doesn't this cast work ? Can somebody t

Re: Why doesn't this cast work ?

2000-04-13 Thread Nicholas Breau
You mean this ? Tree theTree = (Tree *)MemHandleLock(h); I tried but it says can't convert Tree* to Tree Nick. Hari Warrier wrote in message <8174@palm-dev-forum>... > >How could you cast a pointer to a struct? Try (Tree *); > >On Thu, Apr 13, 2000 at 02:16:25PM -0300, Nicholas Breau wrot

Re: Why doesn't this cast work ?

2000-04-13 Thread Nicholas Breau
Great, thanks, worked like a charm. I'll master this C++ PALM programming yet Nicholas Breau wrote in message <8176@palm-dev-forum>... > >You mean this ? > Tree theTree = (Tree *)MemHandleLock(h); > >I tried but it says can't convert Tree* to Tree > >Nick. > >Hari Warrier wrote in mes

Problems sending mail to conduit-dev-forum.

2000-04-13 Thread Bulent Gecer
I seem to have problems sending email to the conduit-dev-forum. I get the following response: Sorry, but there is no email address by the name of 'conduit-dev-forum'. Because of this, Lyris was unable to deliver your email message. Has anybody else experienced this? /Bulent Gecer -- For in

Re: Why doesn't this cast work ?

2000-04-13 Thread Aaron Ardiri
> You mean this ? > Tree theTree = (Tree *)MemHandleLock(h); > > I tried but it says can't convert Tree* to Tree of course it will.. you should do this: --- Tree *theTree = (Tree *)MemHandleLock(h); --- and then access the contents of theTree like this: --- theTree-> --- che

Re: detecting EZ processor

2000-04-13 Thread palm
thanks thats spot on Dave Lippincott wrote in message <8144@palm-dev-forum>... > >Check out the Palm Knowledge Base (hint: article >http://oasis.palm.com/dev/kb/article.cfm?id=1524 ) > -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/

RE: Precision of Doubles

2000-04-13 Thread Al Cilcius
Check out http://laguerre.psc.edu/general/software/packages/ieee/ieee.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Thomas Ward Sent: Thursday, April 13, 2000 1:14 PM To: Palm Developer Forum Subject: Precision of Doubles Hi, I can't find this

Re: Odp: installing prc-tools 2.0

2000-04-13 Thread John Marshall
Ewaryst Izewski <[EMAIL PROTECTED]> wrote: > I just wonder why tex2hex.c in tutorial tries to include files which do not > exist in new sdk. Did John Marshall test his tutorial? Changing the names of the SDK headers used (or finding ways to avoid changing them in your source code :-)) is an issue

Re: Precision of Doubles

2000-04-13 Thread Peter Epstein
Take a look at FloatMgr.h in the 3.5 SDK include files. It describes the format of a Double very precisely. It's a floating point number, so it is capable of representing very small or very large numbers, but round-off occurs when adding very small and very large numbers. The exponent and mantissa

Re: Trouble with Greyscale

2000-04-13 Thread Jun-Kiat Lam
Jeff, To add a little bit to David Fedor's postif you need a pre-Palm OS 3.5 example to show to display greyscale bitmaps, send me an email directly and I'll send it to you. Rgds, Jun-Kiat Lam Metrowerks Technical Support - Original Message - From: "Jeff Allen" <[EMAIL PROTECTED]> T

Re: Precision of Doubles

2000-04-13 Thread Steve Mann
>I can't find this information anywhere. Does anyone know what the precision >of doubles is? The CodeWarrior R6 docs say that eight-byte doubles range from 2.2507e-308 to 1.79769e+308. Mathlib should work fine. It uses eight-byte doubles (AFAIK) and has very high precision. Regards, Steve Mann

[Fwd: Greyscale UI problems]

2000-04-13 Thread Adam Wozniak
palm wrote: > By toying with the dragonball registers i am able to get the palm into > 16 > greyscale mode. > this is no problem. > > however when menus or the find dialog get shown, they are still drawn > onto > the old video memory. > do i have to copy this across onto my new video memory(beari

Re: Getting text bounds in a Popup Trigger

2000-04-13 Thread Peter Epstein
I don't know how kosher this is, but here's one idea: If the bounds of the control are automatically adjusted to fit the label, you should be able to determine the space used for the triangle by taking the difference between the bounds of the control and the width of the label. All you need to kno

Re: The debug helper app could not be found

2000-04-13 Thread Jun-Kiat Lam
You may want to download and use the latest version of POSE - 3.0a5 from www.palm.com/devzone/pose/seed.html. BTW, every version of POSE recently came with Emulator.exe and Emulator_Profile.exe. One is basically POSE to emulate the device, the other is for profiling your application. The Palm OS

Bewildered...

2000-04-13 Thread Timothy Astle
CharPtr GetTripTripNumber(UInt UniqueID) { CharPtr c; tblTrip theTrip; VoidHand record = DmGetRecord(gTripDB, UniqueID); tblPackedTripPtr p = MemHandleLock(record); UnpackTrip(&theTrip, p); StrCopy(c, theTrip.TripNumber); MemHandleUnlock(record); return(c)

Code Warrior

2000-04-13 Thread Peter De Lucia
Hello, I downlaoded Code Warrior lite. I tried to build an app for palm OS 3 but got a linker error. "Link error: Could not open file: c:\palmdev\one\RESOURCE.FRK\Starter.tmp" I have no idea what it could be. (I hope it's something stupid)

RE: Bewildered...

2000-04-13 Thread McMicken, Steven
Step through your program using the debugger. Check the value of UniqueID when you get to the VoidHand declaration. It sounds as though you are asking for a record index that does not exist (yet). How are you setting the value of UniqueID? Regards, Steve -Original Message- From: Timo

RE: Bewildered...

2000-04-13 Thread Yu, Ken
Tim, 1 - CharPtr c is a _pointer_ to a string. It is not pointing to any valid memory to store data. You must allocate some memory and assign c to point to that area. 2,3: These functions expect a Record Index not the Unique ID. > -- > From: Timothy Astle[SMTP:[EMAIL PROTECTED

Re: Code Warrior

2000-04-13 Thread Brandon Wallace
I had that problem too! If you goto the RESOURCE.FRK folder, there is a file in there (I don't remember the name of it). Copy it over to Starter.tmp and then you can compile. I am told the the "correct" solution has to do with going into the Project Settings and changing some field that has the n

Re: Code Warrior

2000-04-13 Thread Shriyan Sanmuganathan
I'm having the same problem too, Let me know if you fiond out the solution for it >From: "Peter De Lucia" <[EMAIL PROTECTED]> >Reply-To: "Palm Developer Forum" <[EMAIL PROTECTED]> >To: "Palm Developer Forum" <[EMAIL PROTECTED]> >Subject: Code Warrior >Date: Thu, 13 Apr 2000 14:29:40 -0400 >Rec

RE: Trouble with Greyscale

2000-04-13 Thread Jeff Allen
I actually discovered ScrDisplayMode only minutes after sending my previous email. Further research also turned up WinScreenMode, although I was unable to find WinScreenMode in any of the documentation with Codewarrior. I am glad to find out that they are indeed the same function (this was serio

Re: NetLibIFAttach does not work

2000-04-13 Thread Chi Guan
Hi, Russell, I don't think it will help us to go back to Palm OS 3.1. It is about the time for Palm Net export to help us. - Original Message - From: Bulmer, Russell <[EMAIL PROTECTED]> To: Palm Developer Forum <[EMAIL PROTECTED]> Sent: Thursday, April 13, 2000 9:12 AM Subject: Re: NetLibI

Wireless connection in palm

2000-04-13 Thread Tony Davis
Hi all, I'm new to Palm Application development. The Palm application that I have in mind needs to exchange data with a remote desktop(in another city) continuously. Can I achieve this through wireless media?(using wireless modem, cell phone connection,wireless net etc..?) If yes, what are the eq

Full BACKUP

2000-04-13 Thread Alejandro Calvo
Is there any way to do a Full Backup of a Palm? Because Hotsync do a Backup, but don't bring some files Any suggestion? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html

RE: Bewildered...

2000-04-13 Thread Schettino, John
You've got a bug there, and the compiler warned you ;) CharPtr c points to *nothing* (or worse, a random address) You need to allocate some memory for c to point to! Something like this: UnpackTrip(&theTrip, p); // ALLOCATE SOME SPACE c = MemPtrNew(StrLen(theTrip.TripNumber

Re: Bewildered...

2000-04-13 Thread Dave Lippincott
How about giving CharPtr c a little memory. I don't think you can blindly copy into a pointer. c = MemPtrNew(StrLen(theTrip.TripNumber + 1)); if(c == NULL) // error , no memory left -Original Message- From: Timothy Astle <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: Palm Develop

Re: Bewildered...

2000-04-13 Thread Timothy Astle
Thanks guys! As always, you've been a great help. Especially that allocating of space hint. I should have know it was something to be aware off. I have the little piece of code now running like I want it to. Sincerely, Timothy Astle Schettino, John <[EMAIL PROTECTED]> wrote in message ne

Re: Source for contrast slider bar.

2000-04-13 Thread Bob Ebert
At 10:52 PM +0100 12-04-00, Nick Torenvliet wrote: >Does anyone know where I can find the source for the screen contrast slider >bar? It's checked into perforce with the rest of the OS sources... Oh, but you don't work at Palm, do you? :-) Sorry, but we haven't gotten a source release for the

Re: Code Warrior

2000-04-13 Thread Peter De Lucia
That did it!!! Thanks a lot! Peter. "Brandon Wallace" <[EMAIL PROTECTED]> wrote: > I had that problem too! > If you goto the RESOURCE.FRK folder, there is a file in there (I don't > remember > the name of it). Copy it over to Starter.tmp and then you can compile. > I am told the the "cor

Re: Wireless connection in palm

2000-04-13 Thread Tom Zerucha
On Thu, Apr 13, 2000 at 11:29:06AM -0700, Tony Davis wrote: > Hi all, > > I'm new to Palm Application development. > The Palm application that I have in mind needs to exchange data with a > remote desktop(in another city) continuously. > Can I achieve this through wireless media?(using wireless m

INetLib - how to set socket for no compression...

2000-04-13 Thread Tom Zerucha
I am trying to pull down a binary file. Do I need the content HTTP header from the server to say something other than text/plain (right now I get palm compressed text). I am using the INetSocketSet call to try to turn compression off, but it returns an error. -- For information on using the Pa

RE: Wireless connection in palm

2000-04-13 Thread Bryan Batchelder
If you use a Palm VII you can't use sockets. You must use INetLib (as far as I can tell at least). My socket program that gets data from a webserver works on the emulator, but not on the VII. --b -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tom Zeru

Re: Full BACKUP

2000-04-13 Thread Brian Mathis
On Thu, 13 Apr 2000, Alejandro Calvo wrote: > Is there any way to do a Full Backup of a Palm? > > Because Hotsync do a Backup, but don't bring some files > > Any suggestion? Get backup buddy. http://www.backupbuddy.com -- Brian Mathis Direct Edge http://www.directedge.com -- For informat

Re: Full BACKUP

2000-04-13 Thread Alejandro Calvo
Something Free? At 04:35 PM 4/13/00 -0400, you wrote: >On Thu, 13 Apr 2000, Alejandro Calvo wrote: > > > Is there any way to do a Full Backup of a Palm? > > > > Because Hotsync do a Backup, but don't bring some files > > > > Any suggestion? > >Get backup buddy. http://www.backupbuddy.com > >-- >

Cannot find application for data received.

2000-04-13 Thread Stephen Bentley
If I'm running the same .prc file on two different Palms, and I initiate a beam of a record from one to the other, how can I be getting "Cannot find application for data received", when I'm positive the creator ID is specified everywhere it should be and both Palms even have the application runnin

Re: Wireless connection in palm

2000-04-13 Thread Laurence Lundblade
You have two basic choices: 1) Palm VII - possibly easier to program, might get away without C/C++ - can't transfer lots of data - only small HTTP-like requests - have to use Palm.net - use for web applet sort of results 2) TCP/IP - works with lots of different services (land line modem, omnisky

Re: Code Warrior

2000-04-13 Thread Jun-Kiat Lam
This was a known issue with the IDE in Lite (and actually in the release version too). The New Project wizard in the current version of the IDE attempts to name the project file, output file name, etc. using the name you specify for the project. This works fine for desktop targets, but for targets

Re: PQA & Palm OS 3.5

2000-04-13 Thread Dr. Glyn Thomas Gowing
They are available in the provider pavillion, but only if your ISP is located in the USA. (There is another option explained on the web-page as well). WARNING: I installed the proper (non-EZ for my field-trial VII) 3.5 ROM (dr2) and it hosed my wireless service. I am now one month without it wo

Re: Full BACKUP

2000-04-13 Thread Michael S. Davis
If you value your time at all, then a few bucks for backup buddy will easily save you what you would use up with your time. On Thu, 13 Apr 2000, Alejandro Calvo wrote: > Something Free? > > At 04:35 PM 4/13/00 -0400, you wrote: > >On Thu, 13 Apr 2000, Alejandro Calvo wrote: > > > > > Is the

Re: Wireless connection in palm

2000-04-13 Thread Vineel Shah
I'm starting to look into this too, and here's what I've managed to dig up so far. (Any corrections by people who actually know stuff would be appreciated!) 1. To do internet programming for the Palm VII, you must use the Palm-supplied INetLib. While the lib supports many protocols, the only

Re: Full BACKUP

2000-04-13 Thread Tom Zerucha
On Thu, Apr 13, 2000 at 04:00:54PM -0300, Alejandro Calvo wrote: > Is there any way to do a Full Backup of a Palm? > > Because Hotsync do a Backup, but don't bring some files > > Any suggestion? pilot-xfer -u will get ALL files including Unsaved Preferences into a drectory. (look for pilot-lin

Re: Dobule Buffering Question (OS 3.5 issue I assume)

2000-04-13 Thread David Fedor
>However, if I have an onscreen window and then popup a form that covers >part of it, OS 3.5 will complain at me that I can't pop a form up that >covers a window (when the form closes oddly enough). That's nice, but what >am I supposed to do in this situation? Removing the window from the active >

Code Warrior and debugging

2000-04-13 Thread Peter De Lucia
Hello again. I got my app to compile ok... I click on the sideways arrow on my project window. A window popped up telling me to put my palm pilot in console mode. (how do I do this?) Then I got an error saying that the debugger helper app could not be found Where is it and what do I do with

Re: Full BACKUP (offtopic) Linux ROM.

2000-04-13 Thread Larry W. Cashdollar
> \pilot-xfer -u will get ALL files including Unsaved Preferences into a > drectory. > > (look for pilot-link. This is basically the unix CLI hotsync program. > 0.9.3 has a problem with PQAs, so I have a patch that fixes it and > allows backing up of flash or rom files too). Speaking of ROMS has

RE: Code Warrior and debugging

2000-04-13 Thread McMicken, Steven
You put your Palm in console mode using shortcut 2, which is cursive l, period (dot dot), and 2. You'll have an easier time debugging using the emulator, though. On the menu, under Edit Preferences, choose Palm OS Emulator as your target in the Palm Connection. You probably want to check "Alway

Re: PQA & Palm OS 3.5

2000-04-13 Thread David Fedor
>I installed the proper (non-EZ for my field-trial VII) 3.5 ROM (dr2) and >it hosed my wireless service... We are trying to start on a MAJOR Palm VII >based project at work and if my VII doesn't work (the only one in the >company), we may be looking elsewhere for wireless solutions. So you perfor

Re: Wireless connection in palm

2000-04-13 Thread Tony Davis
Hi all, Thanks a lot for all the replys.It was a big help. I think I'll go for the TCP/IP solution with wireless modems.I am comfortable with C/C++ and dont mind programming effort required. But before finalising on Omnisky/PalmV, I would like to know if anyone has actually developed successful

RE: Code Warrior and debugging

2000-04-13 Thread Peter De Lucia
I'll give it a shot... thank you! Peter. "McMicken, Steven" <[EMAIL PROTECTED]> wrote: > You put your Palm in console mode using shortcut 2, which is cursive > l, > period (dot dot), and 2. You'll have an easier time debugging using > the > emulator, though. On the menu, under Edit Prefer

RE: Full BACKUP

2000-04-13 Thread Alexander Hinds
A- I'd be happy to send you a free license. Just drop a line to [EMAIL PROTECTED] and include this email. Alexander > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Alejandro Calvo > Sent: Thursday, April 13, 2000 1:56 PM > To: Palm Developer Fo

Re: Full BACKUP (offtopic) Linux ROM.

2000-04-13 Thread Ben Darnell
In article <8225@palm-dev-forum>, Larry W. Cashdollar wrote: > >> \pilot-xfer -u will get ALL files including Unsaved Preferences into a >> drectory. >> >> (look for pilot-link. This is basically the unix CLI hotsync program. >> 0.9.3 has a problem with PQAs, so I have a patch that fixes it and >

RE: PQA & Palm OS 3.5

2000-04-13 Thread Scott L. Johnson
> From: Dr. Glyn Thomas Gowing [mailto:[EMAIL PROTECTED]] > I installed the proper (non-EZ for my field-trial VII) 3.5 > ROM (dr2) and it hosed my wireless service. I am now one month > without it working. It keeps timing out. I tried pre-activated > (since my account existed), I had them [try

RE: INetLib - how to set socket for no compression...

2000-04-13 Thread Fitzpatrick, Joe
Try setting the library for no compression: // Turn off compression DWord dw; dw = ctpConvNone; INetLibSettingSet(LibRef, IHandle, inetSettingConvAlgorithm, &dw, sizeof(dw)); Another library setting to watch out for is inetSettingMaxRspSize - otherwise your binary file might get truncated. Good

Re: Wireless connection in palm

2000-04-13 Thread Laurence Lundblade
For non-Palm VII wireless data there's a number of technology choices: CDMA - Sprint and Verizon support different data services in different markets. The pdQ uses this service. Right now the data rate is 14.4. 56Kb is rolling out in Japan now, but it will probably be slow in the US. CDMA most

Changes to news.palmos.com...

2000-04-13 Thread Ryan Robertson
Hello Everyone, About a month ago we made a domain change to the developer forums. The domain was changed from ls.3com.com to news.palmos.com. Currently ls.palm.com and ls.3com.com are aliases to news.palmos.com, so the mailing lists continue to run correctly even if you send email to the old a

Chunk under-locked

2000-04-13 Thread Jason Simpkins
Chunk under-locked For some reason I keep getting this error message, and for the life of me can't figure out why. This usally happens when I exit my applications. Another error message happens when I switch forms, I get a: has just read from an un-allocated chunk of memory. How? And it doen

Memory leak detection in OS 3.5 debug rom

2000-04-13 Thread John Leung
I've seen some discussion about OS 3.5 debug rom will do memory leak detection, so I did the following test: I'm using CodeWarrior 5 (with update patch #2). I let CodeWarrior built a default C++ Starter app, compile it and loaded it into POSE 3.05a with the dr4 OS 3.5 EZ debug rom and Palm VII E

Re: Memory leak detection in OS 3.5 debug rom

2000-04-13 Thread Ben Combee
"John Leung" <[EMAIL PROTECTED]> wrote in message news:8253@palm-dev-forum... > > I've seen some discussion about OS 3.5 debug rom will do memory leak > detection, so I did the following test: > > I'm using CodeWarrior 5 (with update patch #2). > I let CodeWarrior built a default C++ Starter app,

  1   2   >