Debugging in shared libraries at interrupt level

2000-08-11 Thread Petrus Wrangö
Hi, I'm using CW R5 with SDK 3.0. I know this topic has come up several times before, but searching the archive didn't provide me with a solution. I've written a shared library with some code that will be run at interrupt level, and now I want to debug my code. How can I get the debugging of a

Re: Can a .lib file be split up?

2000-08-11 Thread Eric VERGNAUD
le 10/08/00 17:38, Rick Gadbois à [EMAIL PROTECTED] a écrit : Hello, I use a common shared library for my apps and this lib has grown to over 70K. The source of this lib is commonly dependent code and hard to split up. When I include the lib in my main project, it takes up too much

Newbie ques : Webserver port for palm proxy

2000-08-11 Thread Devendra Badhani
Hi, I am trying to access some html pages from my web server through palm emulator. If the webserver is running on port 80, i'm able to access the pages on the emulator but if the websever port is changed, say to , the emulator is not able to fetch the pages. I'm able to view the pages

Palm Travel Kit serial cable

2000-08-11 Thread Richard Anderson
Hi, Does anyone know if the Palm Travel kit serial cable will work as a standard 3 wire RS232 cable without the power cable attached ? Does the serial cable/cradle do any level shifting of the RS232 signals from the Palm ? Thanks Rik Anderson -- For information on using the Palm Developer

Using appVersionID/appVersionAlternateID

2000-08-11 Thread Chris Percival
I am using the following code to get the application version string: h = DmGetResource(verRsc, appVersionID); if (!h) h = DmGetResource(verRsc, appVersionAlternateID); ErrFatalDisplayIf(!h, "Unable to find version string"); p = MemHandleLock(h); SetFieldText(AboutFormVersionField, p);

strtod

2000-08-11 Thread sv
Hi all Does anyone know where I can find an implementation of the libc function strtod for the palmos ? Thanks Sebastien Vidon -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: Palm M100 Name Speculation

2000-08-11 Thread McCollister, Mike
Rus, I would have liked the Palm MiniIII or the Palm MiniV (could be mIII or mV). I guess there were too many suffixes on the Roman numerals already... (Vx, IIIc, IIIe, VIIx, etc) How about if Palm got with the times and called it Palm MiniMe (Mini Millennium Edition) :). Mike

RE: Palm M100 Name Speculation

2000-08-11 Thread Aaron Ardiri
How about if Palm got with the times and called it Palm MiniMe (Mini Millennium Edition) :). heck, the M100 is targeted for the "cheaper" audience.. kids etc.. lets just call the bugger "Palmemon" - bet it would sell like hell with a few pokemon style images etched on the case.. -

RE: adding a connection

2000-08-11 Thread Rick Gadbois
I understand, no offense taken. I find these conversations educational even when they get edgy. RickG Brian Mathis wrote: Sorry, didn't mean to start a big thing about this. -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Rookie assembler question

2000-08-11 Thread Gordon, Douglas
I have this function, like; void bogus(){ //some code } And then, in an asm function, I would like to use bogus as a variable to read from. The way I understand it, bogus is nothing more than an address. So, I whould like something like: asm void myFunc(){ move.l bogus, d0

RE: strtod

2000-08-11 Thread Rick Gadbois
I think StrAToI(str) is the closest thing unless you go 3rd party. If you have CW6 Windows, look in MSL\MSL_C\MSL_COMMON\SRC\strtold.c Also, check out C:\Program Files\Metrowerks\CW for Palm OS R6\Documentation\CodeWarrior Documentation\HTML\MSL_C_Reference\_MSL_C_RefIX.fm.html -Original

Re: Multiple TCP connects

2000-08-11 Thread DCU
Rus Peter, Our server model uses multiple threads. We have the initial process listening for clients. Once a clients attempts a connection the server accepts, creates a thread, passes the socket to the thread. This has been stress tested with as many as 100 test clients on win2k. The problem

Re: Palm Travel Kit serial cable

2000-08-11 Thread Dave Lippincott
Yes No -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: Can a .lib file be split up?

2000-08-11 Thread Rick Gadbois
just did it. works fine so farthanks - I've encountered the same need, and splitted my lib project in 3, even though the 3 libs are tightly dependant from each other. Works perfectly. Eric -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Can a .lib file be split up?

2000-08-11 Thread DCU
Hi Eric, Great that you were able to split the libraries, now the question? How did you do it? Thanks Carlos - Original Message - From: Eric VERGNAUD [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Friday, August 11, 2000 4:18 AM Subject: Re: Can a .lib file be

Re: Using appVersionID/appVersionAlternateID

2000-08-11 Thread Chris Percival
Surely people must be using this? Is there another method? Chris Percival [EMAIL PROTECTED] wrote in message news:20724@palm-dev-forum... I am using the following code to get the application version string: h = DmGetResource(verRsc, appVersionID); if (!h) h = DmGetResource(verRsc,

Re: Bus Error

2000-08-11 Thread Zach Austin
//convert date to string DateToAscii(DateTime-month, DateTime-day, DateTime-year, dfMDYWithSlashes, theDate); /convert time to string TimeToAscii(DateTime-hour, DateTime-minute, tfColonAMPM, theTime); DateTime is a DateTimeType ptr, theDate and theTime are char ptr's. Any suggestions? [EMAIL

Re: CodeWarrior Debugging ...

2000-08-11 Thread Matthew Starensier
It sounds like you're having a problem which I encountered, namely that if I set a break point inside my event loop, the trapped all appear as nilEvent. I found two ways to work around this. See if I can put the break point somewhere else, like in an executing block of an event handler. It

Re: Debugging in shared libraries at interrupt level

2000-08-11 Thread Jeff Ishaq
"Petrus Wrangö" [EMAIL PROTECTED] wrote in message news:20720@palm-dev-forum... Hi, I'm using CW R5 with SDK 3.0. I thought that shared lib debugging was only available in CW6 and higher? I've never used it therein though. It's been a while so dementia may have set in, but last time I

RE: CodeWarrior Debugging ...

2000-08-11 Thread Heather Tufts
Debugging application using CW6 and POSE has not helped me that much since it doesnt enter functions that I have created. Is there a way as its stepping through the debugger to simulate a pendown or a menu selection or something so I can watch it enter my event function? Once you see

Class

2000-08-11 Thread Andrew Lathrop
I don't think this is possible, but i could be wrong. Can i define classes while programming in C? Or do i have to use C++? I don't think that classes are part of the C structure, and I can't find any reference to them in my C books. If I am wrong, could anyone please let me know? Thanks

Bus Error in SysGetAppInfo

2000-08-11 Thread Zach Austin
Also now I am getting a bus error in SysGetAppInfo when tapping the "Home" button after displaying a form. Any idea what could be causing this? Bus error exception at 0x10c0daac (SysGetAppInfo) -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: Class

2000-08-11 Thread Rick Gadbois
classes are the very basis of C++, and extension of structures, and the basic difference between c and c++. -Original Message- From: Andrew Lathrop [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 10:53 AM To: Palm Developer Forum Subject: Class I don't think this is possible,

NEWBIE HELP!

2000-08-11 Thread Tim Heuer
Can someone demonstrate how I would extract a record from a palm app, format it to an XML text string and beam that data? Thanks, Tim __ Tim Heuer Integrated Information Systems (480) 557-4060 x23724 [EMAIL PROTECTED] (NASDAQ: IISX) -- For information on using the

RE: Class

2000-08-11 Thread Richard Anderson
Classes do not exist in C, but you could use a C++ compiler, then you can use classes in with your C, a bit of mix and match, I do it in Windows, by writing a C app but using some Windows C++ objects. -Original Message- From: Andrew Lathrop [SMTP:[EMAIL PROTECTED]] Sent: 11 August

Re: Win 2000 ServicePack 1 causes problems?

2000-08-11 Thread Jun-Kiat Lam
I have :-) You may want to download and use the debugger plugin from ftp://palm:[EMAIL PROTECTED] - this plugin is newer than the one in the Palm OS 3.5 SDK (assuming you have it) and will allow you to debug fully on Win 2000. Hopefully within the next few days we will be updating the

RE: Debugging in shared libraries at interrupt level

2000-08-11 Thread Borislav Kolev
I don't think you'd have any problem debugging while in interrupt, but I am sure you'll have problem debugging a shared library. There is only one solution I know about - make your shared library static or just part of your program code and that's how you can debug it. This works for some of the

Pref DB Open Error?

2000-08-11 Thread Zach Austin
Can anyone tell me what this error means? Anyone know of potential causes? Thanks. --Zach Austin -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Wireless Comms

2000-08-11 Thread Logie Urqhart
Hi There, This is a little off topic, sorry. Has anybody had any experince using the Ericsson DI27 InfraRed modem with the Palm? Is it the same as using the SH888 as a modem? Thanks Logie -- For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: Debugging in shared libraries at interrupt level

2000-08-11 Thread Rick Gadbois
don't know if this helps but; When I debug my shared library I add the source code to my project (it's usually like just one out of the 10 in the shared library) so I can step through it. When I'm done debugging, I delete it from my project. RickG -Original Message- From: Borislav

Re: Class

2000-08-11 Thread Andrew Lathrop
Thanks for confirming this. Andrew Andrew Lathrop [EMAIL PROTECTED] wrote in message news:20747@palm-dev-forum... I don't think this is possible, but i could be wrong. Can i define classes while programming in C? Or do i have to use C++? I don't think that classes are part of the C

Re: Using appVersionID/appVersionAlternateID

2000-08-11 Thread Richard Burmeister
From: "Chris Percival" [EMAIL PROTECTED] Subject: Using appVersionID/appVersionAlternateID I am using the following code to get the application version string: h = DmGetResource(verRsc, appVersionID); if (!h) h = DmGetResource(verRsc, appVersionAlternateID); ErrFatalDisplayIf(!h, "Unable

Re: Can a .lib file be split up?

2000-08-11 Thread Eric VERGNAUD
le 11/08/00 15:14, DCU à [EMAIL PROTECTED] a écrit : Hi Eric, Great that you were able to split the libraries, now the question? How did you do it? Thanks Carlos Well say your library project has 12 .c files (f1 to f12). Create 2 new targets, so you now have 3 targets: lib1,

Error when capturing Table Select Event

2000-08-11 Thread Daniel . Cohen
I get this error message. ... is attempting to change the emulated program counter to 0x65204C69. This address is invalid because it is not even. If this is the latest version. My table is defined as 8 rows, and 4 columns. Column 0 is a checkbox, and Column 1-3 are text fields. I have my

RE: Opening unknowed databases

2000-08-11 Thread McMicken, Steven
DmGetDatabase will return a local ID. You must pass it the database index. The index can range from 0 to DmNumDatabases -1. Regards, Steve -Original Message- From: Farzin Ashraghi [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 6:30 PM To: Palm Developer Forum Subject:

Palm V works but Palm VII doesn't........

2000-08-11 Thread Nikolay Issaev
Hi, everyone ! Can anyone tell me why I am able to hit a server with Palm V(Omnysky) and the emulator and receive the information from the server, but I can not receive the same information with Palm VII(the informaition was prepared for Palm VII). The only sign that I get is to try later,

Re: Bus Error

2000-08-11 Thread Richard Hartman
You didn't answer the other question. Ok, so "theDate" and "theTime" are CharPtrs ... but did you allocate any space for them? -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! Zach Austin wrote in message 20741@palm-dev-forum... //convert date to

RE: Palm V works but Palm VII doesn't........

2000-08-11 Thread Nesse, Rustin
Someone wrote about the VII's yesterday...they believed a faulty proxy server with Palm.net might be what's causing this. -Rus -Original Message- From: Nikolay Issaev [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 9:02 AM To: Palm Developer Forum Subject: Palm V works but Palm

help

2000-08-11 Thread deepak
Hi , i'm new on palm as i', currently working on wap . please help me what to read for starting .and any good web site for pdf files for reading Thanx Deepak Nikolay Issaev wrote: Hi, everyone ! Can anyone tell me why I am able to hit a server with Palm V(Omnysky) and the emulator and

Re: uncheck the checkbox ???

2000-08-11 Thread Richard Hartman
Well ... you could create a 4th checkbox in the same group ... call it "noneOfTheAbove" or something. -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! ThuNguyet Nguyen wrote in message 20683@palm-dev-forum... Hi everyone, I have 3 check boxes and

RE: uncheck the checkbox ???

2000-08-11 Thread Nesse, Rustin
ThuNguyet Nguyen wrote in message 20683@palm-dev-forum... Hi everyone, I have 3 check boxes and I group them together so user can only check one at a time. Now, I don't know how to uncheck all 3 of them. Before, when I didn't have them group together, they worked OK when I check/uncheck

How to Update a display ?

2000-08-11 Thread Nicolas FRAYER
Hello , I am a newbie in the palm development and I have a poblem : I have 2 forms : 1 principal and 1 About Form. When I open the about form , I can see the About form text but I can also see the principal form text. When I want to close the About Form , I come back on the principal one but

Bug in EvtGetEvent? OS bug?

2000-08-11 Thread Chris
Hi, I have a problem which is driving me nuts! Consider this line: EvtGetEvent(event, evtNoWait); Which, as I understand it, means: Get the next event, if there is no event available, return a nilEvent. Well, it works most of the time - But occasionally it will start ignoring ALL

RE: help

2000-08-11 Thread Nesse, Rustin
The Palm OS Companion and Reference are good...there's also the Palm OS Cookbook for those just getting started. http://www.palmos.com/dev/tech/docs/ Also, there's the O'Reilly guide: http://www.palmos.com/dev/tech/docs/devguide/ And last but not least, the newsgroup archives (which I cannot

RE: Can a .lib file be split up?

2000-08-11 Thread Rick Gadbois
Eric, I like this forum... Your method looks better than mine. (I created another directory to manage). I tried your method, but when I open the project inspector, I don't see how you "assign files" as you suggested. What am I doing wrong? Using CW6,WINNT. How did you do it? Thanks

RE: uncheck the checkbox ???

2000-08-11 Thread Rick Gadbois
what I do: manually check/uncheck it in your case statement in your event handler using: CtlSetValue((ControlPtr)libToolGetObjectPtr(NameOfCheckBox),ValueYouWantItSe tTo); -Original Message- From: Richard Hartman [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 12:13 PM To:

RE: Can a .lib file be split up?

2000-08-11 Thread Rick Gadbois
OOpps looks like you do it one at a time with each file.sorry to bother.. -- Eric, I like this forum... Your method looks better than mine. (I created another directory to manage). I tried your method, but when I open the project inspector, I don't see how you "assign files"

hex fonts

2000-08-11 Thread Heather Gazdik
hi, I am trying to make scroll buttons...to expand/unexpand...something like a tree and children. I am trying to do this in a table with database records( for example: click on a name and it will display underneath it the subtopics...click the arrow and the tree collapses. I know how to make

FrmReturnToForm

2000-08-11 Thread Oliver King-Smith
When I run with the debug ROM under the simulator it behavors a little differently than the release ROM. The problem comes with a snippit of code like as follows. Forma.c FrmPopupForm( Formb ); Formb.c FrmPopupForm( Formc ); Formc.c FrmReturnToForm( 0 ); In the debug

Re: hex fonts

2000-08-11 Thread Hal Mueller
Use AsciiChart to see what characters are in the other fonts. http://astro.uchicago.edu/home/web/valdes/pilot/AsciiChart/ Hal Mueller[EMAIL PROTECTED] Mobile Geographics LLC http://www.mobilegeographics.com/ Seattle, Washington(206) 297-9575 -- For

Password

2000-08-11 Thread Damian Carrillo
set palm-dev-forum pw=Beta2 -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

FAQ (was Re: To beginner programmers (was Re: This is not fair))

2000-08-11 Thread Adam Wozniak
[EMAIL PROTECTED] wrote: Sounds like someone just volunteered... Here is a start. Comments are welcome. === PalmFAQ.txt Version 0.0 07-AUG-2000 This is the Palm Dev Forum Frequently Asked Questions List, posted monthly to the palm-dev-forum mailing list. Questions / comments /

Re: uncheck the checkbox ???

2000-08-11 Thread Danny Epstein
Ok, I'll bite. Why are you grouping checkboxes? Wouldn't push buttons be more appropriate? -- Danny Epstein OS Engineer, Palm Inc. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: FAQ (was Re: To beginner programmers (was Re: This is not fai r))

2000-08-11 Thread Stuart Nicholson
Very nice! A suggestion: Might be worth adding a section for 'Known OS Bugs and Issues' broken down by OS version. Just a thought because I've wasted plenty of debug time chasing stuff that turned out to be broken in the OS and this will no doubt drive new developers nuts. Damn, wish I'd kept a

RE: Large Applications and Debugging Problem

2000-08-11 Thread David Slotter
I have encountered behavior in the past where I had an application which had a single segment CODE resource - and its size was hovering right at the maximum-allowable size (65505 bytes?). When I added a small amount of code at that point to push it over the limit, CodeWarrior didn't complain, and

RE: FAQ (was Re: To beginner programmers (was Re: This is not fai r))

2000-08-11 Thread Aaron Ardiri
1) WinDrawBitmap doesn't support 4bpp gray scale properly until OS 3.3 (even if your device does). 2) SysBinarySearch is broken until about 3.3 as well (unless you set the findFirst parameter to true) 3) Odd launcher and UI event behaviours in older OS versions. dont forget the list

general conduit manager

2000-08-11 Thread Tim Heuer
is the GCM the same thing that comes with codewarrior? where can i get the "general conduit manager" referenced at the Wade's Pilot Programming site? Also, did anyone see my post regarding beaming an xml string and how to go about this? Thanks, Tim __ Tim Heuer

RE: FAQ (was Re: To beginner programmers (was Re: This is not fai r))

2000-08-11 Thread Stuart Nicholson
Precisely! We should have all this stuff in one place! The extremely helpful developers from Palm are aware of most of these issues, but for some reason the 'official' Palm documentation (and indeed the knowledge base as well) usually neglects bugs and wierdness in previous OS versions (wonder

Help with App Preference Structure

2000-08-11 Thread Timothy Astle
Okay, this is odd. I'm trying to get a preferences structure set up so that it stores certain application data. However, I can't get it working! I'm completely at a loss. It also seems that my global variables can remember data between executions. ?? Here are the functions I'm using. Am I

RE: How to Update a display ?

2000-08-11 Thread Heather Tufts
I am a newbie in the palm development and I have a poblem : I have 2 forms : 1 principal and 1 About Form. When I open the about form , I can see the About form text but I can also see the principal form text. When I want to close the About Form , I come back on the principal one but

Re: FAQ (was Re: To beginner programmers (was Re: This is not fai r))

2000-08-11 Thread Adam Wozniak
Aaron Ardiri wrote: 1) WinDrawBitmap doesn't support 4bpp gray scale properly until OS 3.3 (even if your device does). 2) SysBinarySearch is broken until about 3.3 as well (unless you set the findFirst parameter to true) 3) Odd launcher and UI event behaviours in older OS versions.

FAQ

2000-08-11 Thread Aaron Ardiri
Perhaps you could drill down and flesh out these issues as Questions and Answers for me to include in the FAQ. I am willing to contribute my time as editor / coordinator, but I don't have time to hunt down and document every bug. Anything you can contribute will be appreciated.

Re: Bus Error

2000-08-11 Thread Zach Austin
How do I go about allocating space for them? "Richard Hartman" [EMAIL PROTECTED] wrote in message news:20769@palm-dev-forum... You didn't answer the other question. Ok, so "theDate" and "theTime" are CharPtrs ... but did you allocate any space for them? -- -Richard M. Hartman [EMAIL

Re: FAQ (was Re: To beginner programmers (was Re: This is not fair))

2000-08-11 Thread Richard Hartman
A formatting (not content) suggestion: have a list of the questions up front so you don't have to read through the whole thing to find out whether your question is dealt with. -Then- do the Q A section. -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the

RE: FAQ

2000-08-11 Thread Nesse, Rustin
Might have to divide the FAQ into API questions, Hardware questions, and perhaps Networking questions...maybe even POSE or Debugger questions. If it were posted somewhere on the web, then a link could be sent out whenever a question asked strikes you as being possibly on the FAQ. There should

Re: Password

2000-08-11 Thread Damian
This Idiot Moment has been brought to you by the makers of Stress, Spaciness, and the 60 hour work week. -Damian Damian Carrillo [EMAIL PROTECTED] wrote in message news:20791@palm-dev-forum... set palm-dev-forum pw=Beta2 -- For information on using the Palm Developer Forums, or to

RE: FAQ

2000-08-11 Thread Nesse, Rustin
Then again, that's a lot more work than would be necessary. In fact, that sounds strangely like a new Knowledge Base...maybe just do something really simple, like a top 20-50 frequently asked questions or something. -Rus -Original Message- From: Nesse, Rustin [mailto:[EMAIL

Re: FAQ

2000-08-11 Thread Butch Howard
Instead of posting the entire FAQ, just post a reminder that many questions are answered in the Knowlege Base and in the list archives along with links to those things and a gentle suggestion that they should be reviewed before posting new questions to the list. The list of links might also

Re: Can a .lib file be split up?

2000-08-11 Thread Eric VERGNAUD
Eric, I like this forum... Your method looks better than mine. (I created another directory to manage). I tried your method, but when I open the project inspector, I don't see how you "assign files" as you suggested. What am I doing wrong? open the project inspector window from the

RE: FAQ (was Re: To beginner programmers (was Re: This is not fai r))

2000-08-11 Thread Borislav Kolev
Well actually it is a matter of how do you approach it. I believe most if not all of this information is already available on www.palmos.com. Somebody just called me to help them with an issue with 3.5 and the new command buttons, which I wasn't quite familiar with. After looking in the code for

Re: uncheck the checkbox ???

2000-08-11 Thread Dave Lippincott
I don't know about the author's situation but I have a couple of apps where grouped check boxes are more appropriate. In my case its what the user is use to using and it just looks less confusing on the screen. - Original Message - From: "Danny Epstein" [EMAIL PROTECTED] Newsgroups:

RE: FAQ

2000-08-11 Thread Borislav Kolev
in addition to my previous suggestion - instead of having another forum at www.ardiri.com maybe Palm should just delegate you with rights and responsibilities to update their own site? - Bobby -Original Message- From: Aaron Ardiri [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000

Re: resource types

2000-08-11 Thread Ken Krugler
At 12:00am -0700 00-08-11, Palm Developer Forum digest wrote: Subject: resource types From: "Owen G. Emry" [EMAIL PROTECTED] Date: Wed, 09 Aug 2000 23:57:12 -0400 X-Message-Number: 137 Are there any rules governing the use of resource types? I want to avoid colliding with other resources in the

RE: FAQ

2000-08-11 Thread Stuart Nicholson
The Knowledge Base is a great resource but I find it lacks in certain areas... 1) It's both a plus and a minus that it's a Palm controlled resource. It's naturally a plus because the information is pretty good and up to date and contains useful stuff like past presentations etc. It's a minus

RE: FAQ

2000-08-11 Thread Aaron Ardiri
in addition to my previous suggestion - instead of having another forum at www.ardiri.com maybe Palm should just delegate you with rights and responsibilities to update their own site? thats also a possibility. :)) you never know :P loads going on behind the scenes :) az. -- Aaron

RE: uncheck the checkbox ???

2000-08-11 Thread Rick Gadbois
me too...I have had to duplicate medical forms that say "choose one" and then present checkboxes (on paper). If the FDA likes it, then so do I. -Original Message- From: Dave Lippincott [mailto:[EMAIL PROTECTED]] Sent: Friday, August 11, 2000 2:18 PM To: Palm Developer Forum Subject:

Cache Detected Error : 500

2000-08-11 Thread Chandrasekaran, Suresh (c)
Hi all, I'm trying to invoke an ASP from my personal webserver in a PQA/HTML using POSE. I'm getting this "Cache Detected Error". From the knowledge base, it looks like, it is due to palm proxy server access related. Can any one explain/suggest in detail, what to be done exactly to avoid this

RE: FAQ

2000-08-11 Thread Nesse, Rustin
1) It's both a plus and a minus that it's a Palm controlled resource. It's naturally a plus because the information is pretty good and up to date and contains useful stuff like past presentations etc. It's a minus because the majority of this information comes from Palm. My personal gripe

RE: FAQ

2000-08-11 Thread Borislav Kolev
I agree. Also, I think that it would be a great way to filter out (or at least, expedite the replies to) many of the newbie questions where they absolutely won't or can't search the KB or the archives. A quick loading, simple indexed FAQ would be nice, since all you have to do is just send a

HELP!: Hotsync Server Question

2000-08-11 Thread Rob Graber
Someone PLEASE respond to this that knows! Thanks! -Original Message- Sent: Thursday, August 10, 2000 8:17 AM To: Palm Developer Forum Subject: Hotsync Server Question This may be a stupid question, but I can't seem to find any definitive answer on Palm's site. Will the Hotsync

Re: Rom images

2000-08-11 Thread DIAMOND JEFF
I don't really - I suppose it's possible that they misplaced your application somewhere at Palm... Does anyoen reading this list know any contact people working at Palm that could help find Rick's application and get things moving? - Jeff Ricky Tam wrote: I check it every day too. any one

Re: HELP!: Hotsync Server Question

2000-08-11 Thread Bryan Batchelder
Negative. From all the people I have talked to at Palm, Aether, Puma (the major sync people)Palm frowns upon usage of the Mobitex network (Palm.net) for syncing data. The bandwidth is simply not there yet. I had plans of writing a few palm apps that would sync data using the InteLib over

Re: Palm devices memory bus width ?

2000-08-11 Thread DIAMOND JEFF
Tom Zerucha wrote: No cache. None. Nada. I still have the original 286 v.s. 68000 architectual comparison and they would have trumpeted it back then if it had it (they did everything else - If only IBM chose the 68K for the original PC...). What a world it would be... a 68010 was

How to use function pointers in metrowerks?

2000-08-11 Thread DIAMOND JEFF
This seems like somthing that should be somewhere in the codewarrior documentation, but I can't find it... I have two questions: (1) In a Palm project, can you store function pointers to another function which may lie in a different segment? (2) What syntax do you use to define a function

Re: FAQ

2000-08-11 Thread Dave Lippincott
What I do is collect all emails from this forum I use to do that too. Now that the list is mirrored on the news server. I can search past messages for related answers. The only drawback is if you don't have a fast connection to the news server. -- For information on using the Palm

Re: HELP!: Hotsync Server Question

2000-08-11 Thread Butch Howard
plug Synchrologic iMobile Suite /plug Butch Howard Synchrologic, Inc. http://www.synchrologic.com You can sync wirelessly using Omnisky/PalmV and Aether's ScoutSync. ScoutSync is comparable to HotSync Server as far as features - and I am sure in price as well :-( -- For information on

RE: FAQ

2000-08-11 Thread Nesse, Rustin
What I do is collect all emails from this forum I use to do that too. Now that the list is mirrored on the news server. I can search past messages for related answers. The only drawback is if you don't have a fast connection to the news server. I do this too, but a FAQ would be nice for

evtGetEvent, POSE and confusion

2000-08-11 Thread Dan Samber
Hi! This is my first post so please be kind. I am trying to do something which has apparently been done many times over: Namely: "Respond to events that are generated every x ticks." I have read many posts on this topic in the archive and they have gotten me maybe 50% there. My current

Re: Can a .lib file be split up?

2000-08-11 Thread DCU
Thanks Rick; Carlos - Original Message - From: Rick Gadbois [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Friday, August 11, 2000 9:40 AM Subject: RE: Can a .lib file be split up? I'm not Eric, I'm the other guy. No code changes, just arrangement of files: I

Re: Can a .lib file be split up?

2000-08-11 Thread DCU
Thanks Eric Great info... Carlos - Original Message - From: Eric VERGNAUD [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Friday, August 11, 2000 11:38 AM Subject: Re: Can a .lib file be split up? le 11/08/00 15:14, DCU à [EMAIL PROTECTED] a écrit : Hi Eric,

Re: evtGetEvent, POSE and confusion

2000-08-11 Thread Aaron Ardiri
Hi! This is my first post so please be kind. damn :P I am trying to do something which has apparently been done many times over: Namely: "Respond to events that are generated every x ticks." I have read many posts on this topic in the archive and they have gotten me maybe 50% there.

Re: evtGetEvent, POSE and confusion

2000-08-11 Thread Dan Samber
I want to do is to do some animation. In the ideal world I would set up a "DanEvent" that would be generated every X ticks of the clock. I understand how this can be done with "nilEvents" but the facts remain that my main form handler (the stub of which was generated by codewarrior) looks like

Re: FAQ

2000-08-11 Thread Adam Wozniak
Borislav Kolev wrote: This completely eliminates the need of any FAQ list. IMHO, the biggest goal of any FAQ is to cut back on repeated remedial questions. This is why one of the first questions is "Where is this list archived?" Hopefully a new programmer will read the answer and realize

Recall: Symbol SDK: C vs C++

2000-08-11 Thread Martens, Eric A.
Martens, Eric A. would like to recall the message, "Symbol SDK: C vs C++". -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: SysUIAppSwitch() SysAppLaunch()

2000-08-11 Thread Bob Whiteman
Thanks for the clear explanation, David. I'm glad to know we're not leaking memory owned by the system...my understanding is that since the system never exits, the memory would be "permanently" leaked. -Bob -Original Message- From: David Fedor [mailto:[EMAIL PROTECTED]] Sent:

Symbol SDK: C vs. C++

2000-08-11 Thread Martens, Eric A.
I tried adding scanner functions to my code and the linker choked. I played around with the sample apps and it seems to be that enabling the C++ compiler causes this behavior. Does anyone have any suggestions as to what I could try to do to use the scanner functions in a C++ project? Thanks,

Symbol SDK: C vs C++

2000-08-11 Thread Martens, Eric A.
I tried adding scanner functions to my code and the linker choked. I played around with the sample apps and it seems to be that enabling the C++ compiler causes this behavior. Does anyone have any suggestions as to what I could try to do to use the scanner functions in a C++ project? Thanks,

Re: evtGetEvent, POSE and confusion

2000-08-11 Thread Ben Gottlieb
Try passing a small value as the second argument to EvtGetEvent()...ie, EventType event; EventGetEvent(event, 100); This makes sure that you'll get a nil event every 100 ticks. Ben Hi! This is my first post so please be kind. I am trying to do

Recall: Symbol SDK: C vs. C++

2000-08-11 Thread Martens, Eric A.
Martens, Eric A. would like to recall the message, "Symbol SDK: C vs. C++". -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: evtGetEvent, POSE and confusion

2000-08-11 Thread Peter Epstein
In my experience, nilEvents are produced on the emulator without any special effort on the part of the application, but not on the device. In order to arrange to get a nilEvent, simply pass a suitable timeout value in your call to EvtGetEvent rather than passing evtWaitForever. You're probably

  1   2   >