Re: Palm OS Developer Program

2004-12-27 Thread Keith Wolcott
My account is also gone. I have been a member since its inception. Keith Wolcott Portable Projects wrote: Also my account is lost, registration gone after 5 years.. Please add me to the list, e-mail address [EMAIL PROTECTED] Greetings, Gerben Roosenboom -- For information on using

Re: Function pointer error after alarm

2004-05-30 Thread Keith Wolcott
not have this problem and neither does version 2.60. It is only beta version 2.90.b.3 that has the problem. I have contacted the most recent author, so hopefully it will be fixed. Thank you. Keith Wolcott -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Function pointer error after alarm

2004-05-29 Thread Keith Wolcott
guess is that the third party alarm app is trashing the function pointer table that is created when my app starts up. Is this a reasonable guess or are there other reasons? Thank you. Keith Wolcott -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Re: SampleCollapse DIA problem on OS 6 simulator (Was: RE: Cobalt por ting: No longer single prc for all OS versions)

2004-04-24 Thread Keith Wolcott
I just ran into this problem too. I am using SampleCollapse_R3 on the OS 6 Simulator with Code Warrior 9.3. When I step through the code I find that inside the function CollapseSetTriggerStates() when Err error = PINSetInputTriggerState(newState) is called, it returns error = 0x5000 which is

SampleCollapse_R3- vskResizeVertically?

2004-04-20 Thread Keith Wolcott
When compiling SampleCollapse_R3 (the DIA sample code provided by Palm) I get an error since it cannot find the definition of vskResizeVertically. It is not in SonySilkLib.h as I would expect. A search of all header files comes up empty. Where is vskResizeVertically defined? Thank you.

Re: HDD bitmaps and Sony HiRes units

2003-01-23 Thread Keith Wolcott
Aaron, If you have found a quick and easy solution for this I would appreciate knowing it. I asked this question on the Sony forum a while ago and received a nice reply and solution which works well (get a pointer to the bitmap family and then move forward to the HDD member), but it would be

VFSGetDefaultDirectory

2001-12-22 Thread Keith Wolcott
lists pdb files in /PALM/Launcher. I thought maybe this was a typo so I checked that indeed VFSGetDefaultDirectory() for a pdb returns /PALM/Launcher. Where should a pdb be put? Keith Wolcott -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Re: When is a freshly drawn window not a valid draw context?

2001-10-28 Thread Keith Wolcott
Dave, My guess is that you are not clear about what FrmEraseForm() does. It does not erase the pixels on the form, but erases the form itself so that there would then be no valid draw window. You do not want to call FrmEraseForm() before FrmDrawForm(). Keith Wolcott Dave Johnson wrote

Re: Invalid handheld file deleted

2001-10-24 Thread Keith Wolcott
Audrey, This has been discussed here quite some time ago. I recall that on some platforms (I believe Mac) the installation has problems if the creation and modification dates are zero. When you create your pdb, set them to a real time and I believe that all will be ok. Keith Wolcott

Re: how to draw circles [just the circumference]

2001-07-30 Thread Keith Wolcott
erasing the interior. Keith Wolcott -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: Crappy Forum

2001-07-26 Thread Keith Wolcott
this list regularly you will after some time be aware of all of the common Palm OS programming pitfalls and be aware of any issues with the OS. Keith Wolcott [EMAIL PROTECTED] wrote: Hello, Thanks for you'r input Richard Burmeister, you're probally one of the least helpful I've seen lately

Re: drawing...

2001-07-11 Thread Keith Wolcott
IM- Sorry but I got a good laugh out of that. Not at you, but with you, since we all do something like that occasionally. Keith Wolcott Igor Mozolevsky wrote: Nope, it works now... Don't laugh, but I actually forgot to call PaintMainWindow()... D'OH! IM -- For information on using

Re: Code Warrior Setting Problem Still need Help

2001-02-23 Thread Keith Wolcott
Oscar, Yes, there is a hidden setting. You also need to go to the Edit menu and choose programName settings. Under Target/Build extras, check Activate browser. Keith Wolcott Oscar Lee wrote: Yes, that's why I post my problem here, I am sure that I have checked all the settings but I have

Re: Help me understand why the 3.5 Debug ROMS fail on certain sets of calls Code.

2001-01-19 Thread Keith Wolcott
You can't use WinDrawRectangleFrame() until you have set the draw window. Unless you set the draw window in some specific way, it is usually done by calling FrmDrawForm ( frmP). Thus you must just be sure to do any drawing to the form after calling FrmDrawForm ( frmP). Keith Wolcott Darren

Re: Can you solve this problem?

2001-01-15 Thread Keith Wolcott
Have you run the debugger and checked that formId = eventP-data.frmLoad.formID; gives you the proper formId? Mert ESZ wrote:*-This code running and exit from funciton. static Boolean AppHandleEvent(EventPtr eventP) { UInt16 formId; FormPtr frmP; if (eventP-eType

Re: Developer Pavilion Logon

2001-01-13 Thread Keith Wolcott
I downloaded them this morning with no problems. Keith Wolcott Steve Mann wrote: Has anyone been able to sign on to the Palm Alliance pavilion to get the updated 4.0 ROMs? I'm getting unauthorized access problems. Regards, Steve Mann

Re: Problem deleting correct record.

2001-01-05 Thread Keith Wolcott
Paul, Your code looks good on the surface. The only oddity that I notice is that CurrentChoice needs to be Int32 when used in StrIToA and needs to be UInt16 when used in DmRemoveRecord. Thus, a guess is that the zero half of the Int32 is being used in DmRemoveRecord. Try fixing this. Keith

Re: 4 bit bitmap shows only as 1 bit

2000-10-30 Thread Keith Wolcott
that this is not a problem. Keith Wolcott Rick Gadbois wrote: Palm OS 3.5. I've tried it on the emulator as well as a real IIIXE. Since recieving this email I tried it on a Palm Vx as well and got the same (all black) results. I have seen other programs such as pinball displaying gray on my units

Re: FrmRemoveObject() quirk

2000-09-11 Thread Keith Wolcott
Yes, it is the PrvFixupPointers bug (search the archives for more information). Another way around the problem is to use FrmHideObject and FrmShowObject. Keith Wolcott Sally Anne Palmer wrote: Hi Ken, I've been having the same problem this past week and it seems to be a bug

Re: FrmDoDialog() and FrmSetEventHandler()

2000-09-08 Thread Keith Wolcott
When handling the penDownEvent, make sure that you return handled = false so that the system can handle the penDownEvent when you tap a button. Keith Wolcott Owen Flagel wrote: I'm setting a Form Event Handler using FrmSetEventHandler to respond to events in a modal dialog form called

Re: Scrollbars problem

2000-08-17 Thread Keith Wolcott
I don't think that is the problem. I have the same problem in an app of mine and the same is true for Memopad. If you drag the scroll car quickly it pops back without scrolling. Keith Wolcott Neil Rhodes wrote: Sounds to me like you're returning true when handling sclRepeatEvent. Make

Re: IIIc cradle with other devices?

2000-07-06 Thread Keith Wolcott
Eugene, I Hotsync my Palm III and Palm IIIx all the time on my IIIc cradle with no problems. Keith Wolcott Eugene Chin wrote: Can I HotSync other devices (IIIx) with the IIIc cradle with power plugged in? Thanks, Eugene. -- For information on using the Palm Developer Forums

Re: FrmDrawForm before form access

2000-07-03 Thread Keith Wolcott
Howard, WinScreenLock and WinScreenUnlock allow you to do all of your changes to the form and then have it appear all at once. The downside is that these are OS3.5 functions. Keith Wolcott "Howard C. Shaw III" wrote: Palm OS 3.0 to 3.5 at least, all allow access to form eleme

Re: Codewarrior - Browser Display settings not working!

2000-06-13 Thread Keith Wolcott
started a new project and the browser custom coloring does not work for it either. Any other ideas on how to make this work? I am using CW6 W98 SE Pentium III 600 mhz Thanks. Keith Wolcott Heather Tufts wrote: In order to have the "Activate Browser" stuff work, you have t

Re: DirectBits not supported?!

2000-05-14 Thread Keith Wolcott
have the latest version of Constructor from the Palm site that just came out in the last few days and fixes a number of bugs. Keith Wolcott Harry Ohlsen wrote: Hi, I just purchased an upgrade from CodeWarrior 5 to CodeWarior 6. When I re-built one of my programs, it all compiled just fine

Re: 3.5 Debug Rom problem: WinScreenMode crashes

2000-04-27 Thread Keith Wolcott
Florent, 0x8000 jogged my memory and a search turned up the email of Bob Ebert in January that seems relevant to your situation. It follows. Keith Wolcott Subject: Re: Using UI Color Table functions Date: Tue, 25 Jan 2000 18:14:46 +0100 From: Bob

Re: Find disabled

2000-03-24 Thread Keith Wolcott
Richard, I have made the same changes to my apps and do not have any problem with the Find button. I know this does not help, but at least you know that this is not a universal problem. Keith Wolcott Richard Burmeister wrote: No responses yet, so let me rephrase the question... I ported

Re: Palm IIIc from the Dev Program??

2000-03-24 Thread Keith Wolcott
than my IIIx. Keith Wolcott -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm.com/devzone/mailinglists.html

Re: Provider Pavillion Working?

2000-03-02 Thread Keith Wolcott
I got this error the first time I tried also. I then noticed that I had a line of my address shifted up one line from where it should have been entered. I corrected this and it all worked fine. I hope that this helps you. Keith Wolcott Brad Myers wrote: I have been trying to buy a Palm