Search the web
Sign In
New User? Sign Up
palm-dev-forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 72352 - 72381 of 92429   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
72352
Hi, all, I need to run another program on Palm from my app and then continue to work. Is it possible? Thanks, Alex -- For information on using the Palm...
Alex Gusev
AlexG@...
Send Email
May 1, 2002
8:25 am
72353
... many many many months ago, i worked on a project with PGHQ to do exactly this in real time once PGHQ had sorted out its own commerce system and was not...
Aaron Ardiri
ardiri@...
Send Email
May 1, 2002
9:14 am
72354
... you can use the button as before - but, when you receive a ctlSelectEvent just change the state of the button back to not pressed (CtlSetValue) its not...
Aaron Ardiri
ardiri@...
Send Email
May 1, 2002
9:15 am
72355
Hi !.... I use Codewarrior. I have 2 programs to write in Codewarrior. I want to call one program from the other program and i want to go back. for example I...
Dilek Özgü
dilek.ozgu@...
Send Email
May 1, 2002
11:06 am
72356
Please send me more information ... http://www.palmos.com/dev/support/forums/ __________________________________________________ Do You Yahoo!? Yahoo! Health -...
Johnathan Smith
johnsmithpalm@...
Send Email
May 1, 2002
1:47 pm
72357
hi has anyone ever managed to get trigonometric functions like sin cos or atan to work using only mathf.h / libmf.a included with prc-tools or the build-in ...
palmos@...
Send Email
May 1, 2002
2:30 pm
72358
I am trying to find if any knows of or has a copy of the source code for the original LauchPad written by Eric Kenslow. I was looking for some examples of...
Carl Smith
csmith1a@...
Send Email
May 1, 2002
2:40 pm
72359
... You have 2 options: call the other app as a subroutine, or switch to the other app and run it and have it run your first app when it is done. See...
Joe
free_email_account@...
Send Email
May 1, 2002
2:51 pm
72360
I'm using a ThinkDB database to store information and everytime I try to create the fields for the third record my MemSet function returns a NULL. Do I have to...
Brett ---------
downhill_racer@...
Send Email
May 1, 2002
4:41 pm
72361
... Code based on yours works fine for me. ... (There is as yet no such thing as prc-tools 2.1.) ... [...] ... How do you know v is 0 at this point? If you're...
John Marshall
johnm@...
Send Email
May 1, 2002
4:44 pm
72362
Is it possible to beam multiple databases at once, from within an app? John -- For information on using the Palm Developer Forums, or to unsubscribe, please...
John Jenusaitis
jjenusai@...
Send Email
May 1, 2002
4:54 pm
72363
Thank you for your suggestions. This bit in your PalmSource presentation (under 'Header Hacks to Reduce Overhead') is very intriguing, but I'm having troubling...
Jeremy Neal Kelly
jeremyk@...
Send Email
May 1, 2002
4:57 pm
72364
There are two ways: 1) On Palm OS 4.0 and later, when beaming to a Palm OS 4.0 or later device, beam as many as you want in the same Exchange Manager session...
Mark A. Peters
mapeters@...
Send Email
May 1, 2002
5:24 pm
72365
... Mark pretty much covered it. (Thanks Mark!) I'll point you to the docs: - Companion, volume 2, Object Exchange, Sending Data, Sending Multiple Objects -...
Danny Epstein
Danny.Epstein@...
Send Email
May 1, 2002
5:30 pm
72366
... the prototype for MemSet is Err MemSet (void* dstP, Int32 numBytes, UInt8 value) and it *always* returns 0, which == NULL, MOL. MemSet does not use any...
Joe
free_email_account@...
Send Email
May 1, 2002
6:50 pm
72367
Hi, I reached the 32k limit and had to convert my application to multiple segments using GCC. Everything compiles/links fine, but the only way I can verify...
Brian Ku
bnk@...
Send Email
May 1, 2002
6:53 pm
72368
... A small clarification: when I say that MemSet does not use any memory that you have to free, I mean it does not allocate new memory chunks and expect you...
Joe
free_email_account@...
Send Email
May 1, 2002
8:12 pm
72369
I guess I didn't frame my question properly. MemSet is setting my stuct to a null value, so that I cannot enter data into the struct. Here is a code snippit....
Brett ---------
downhill_racer@...
Send Email
May 1, 2002
8:15 pm
72370
I'm writing a Palm app to display customer information from a database. I want to keep the Palm side as generic as possible since the data fields may change...
David Webb
spivey@...
Send Email
May 1, 2002
8:19 pm
72371
... Yes. Globals are stored in a different area of memory. ... Add "-Wl,-Map -Wl,myfile.map" to your linker line. ... If it's a problem with CW, it's not the...
Dave Carrigan
dave@...
Send Email
May 1, 2002
8:56 pm
72372
I want to use INetLibURLOpen to cache the web page to the history list. From what i understand of INetLibURLOpen , i need to - inetOpenURLFlagLookInCache for...
Colleen Dong
cadong92692@...
Send Email
May 1, 2002
8:59 pm
72373
... According to your code, DB is a pointer to a struct, not a struct itself. That kind of distinction is important. ... What do you mean by "My struct has a...
Keith Rollin
keith.rollin@...
Send Email
May 1, 2002
9:37 pm
72374
Well, I'm going to make guesses here because you didn't include the definition of the Database struct, but there are plenty of issues I can see. ... Let's...
Chris DiPierro
cdipierr@...
Send Email
May 1, 2002
9:38 pm
72375
... A char* is 4 bytes, right? So, he's actually allocating a pointer 4 times the size of the "Database" struct. Minor point... Craig -- For information on...
C. B. Schofield
illume@...
Send Email
May 1, 2002
9:51 pm
72376
... Dave, I'm sure this is a great witticism, but I'm afraid you've lost me. ("Xerox your lunch and file it under ``sex offenders!''") Care to explain? ...
Joe
free_email_account@...
Send Email
May 1, 2002
9:56 pm
72377
... The two statements will do the same thing. -- Keith -- For information on using the Palm Developer Forums, or to unsubscribe, please see...
Keith Rollin
keith.rollin@...
Send Email
May 1, 2002
9:59 pm
72378
The function I moved to a separate segment is an event handler. Now none of the events are being handled, buttons aren't working etc. Looking at the mapfile: ...
Brian Ku
bnk@...
Send Email
May 1, 2002
10:01 pm
72379
... yes, pointers are 4 bytes - the confusion here is that the m68k CPU can only do relative jumps of 16bit +/- ... the addressable space is 32bit tho :P // az...
Aaron Ardiri
ardiri@...
Send Email
May 1, 2002
10:10 pm
72380
Man - 52 hits on google searching for "Xerox your lunch and file it under" - seems its a quote from Zippy the pinhead. Must be a modern art kinda thing. Zowie....
Schettino, John
john_schettino@...
Send Email
May 1, 2002
11:11 pm
72381
Hi Danny, - I am using the Palm OS 3.5 En Color Debug ROM - I rewrote the code to make sure that ExgDisconnect is conditional according to your suggestion. As...
Acrocat Software
info@...
Send Email
May 2, 2002
12:22 am
Messages 72352 - 72381 of 92429   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help