Re: DLL Project

2002-02-26 Thread Amit Kalekar
I am having the CodeWarrior for Windows IDE but My IDE doen't have the StationaryWin32 DLL Stationarary as they mentioned in the help of the IDE. So let me know where I can found this stationary? With Regards, Amit Kalekar [EMAIL PROTECTED] Kalpadrum Infotech Pvt.Ltd. www.kalpadrum.com

RE: DLL Project

2002-02-26 Thread Heather Tufts
I am having the CodeWarrior for Windows IDE but My IDE doen't have the StationaryWin32 DLL Stationarary as they mentioned in the help of the IDE. So let me know where I can found this stationary? Having the CodeWarrior for Palm OS product that runs on Windows is not the same thing as

storing Char** in Feature Memory and getting from it.

2002-02-26 Thread Shawn
How to store a Char** in the feature memory and retrieve the same location.?. __ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com -- For information on using the Palm Developer Forums, or to

Re: Custom gesture

2002-02-26 Thread Ben Combee
Bob Whiteman [EMAIL PROTECTED] wrote in message news:77901@palm-dev-forum... I know there are several programs which provide custom gestures, such as a stroke from Home to Calc, which perform some useful action without leaving the current application. I'm looking for pointers on how to do

Infrared Synchronization from one device to anothe

2002-02-26 Thread prasad
Hi, I want about Infrared synchronization.How we do Infrared Synchronization from one device to another device. and is there any code in c++ for InfraRed Synchronization from one palm device to another palm device.please send me anybody. thanks and regards, prasad. ---

MemHandleResetLock and exceptions

2002-02-26 Thread Pascal Levy
Hi, Is it planned that MemHandleResetLock becomes a documented function in OS5 ? It is really useful when trying to clean up (typically, unlock handles) in the catch block of an exception handler. Since it depends on where the exception was originally thrown, you can't always determine how many

Re: how to sync data using POSE

2002-02-26 Thread CausticMango
From the POSE User Guide, pg 39: Here is the complete process for emulating Network HotSync: 1. Ensure that you have the Network HotSync application on your emulated device: - If you are emulating a Palm III or m100 device, you must first download and install the Network HotSync Using Palm OS®

Display alert after reset

2002-02-26 Thread Kashev Georgi
Hi, Which launch code or notification should an application handle to be able to display alert or dialog after reset. sysAppLaunchCmdSystemReset command and sysNotifyResetFinishedEvent notification are send in too early moment when no application and form are active. Displaing alert in that

Re: Custom gesture

2002-02-26 Thread David A. Desrosiers
McPhling is a hack that does something like this, and also has source code released under the GPL. You could look at that implementation to see how you could implement this in your own program. We support gestures in Plucker also, take a look. http://.plkr.org/ /d

Re: vchrPageUpWhenOff

2002-02-26 Thread Regis St-Gelais
Jim Schram [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] At 2:53 PM -0500 2002/02/25, Regis St-Gelais wrote: What appened to the constant vchrPageUpWhenOff in chars.h? It was there before the new SDK 4.0 Update 1. It was accidentally included, never used in any Palm

Re: Display alert after reset

2002-02-26 Thread Mike McCollister
At sysNotifyResetFinishedEvent just set an alarm for the current time and bring up the dialog with the proper alarm protocol (i.e. don't bring it up on a sysAppLaunchCmdAlarmTriggered but on a sysAppLaunchCmdDisplayAlarm). Regards, Mike McCollister --- Kashev Georgi [EMAIL PROTECTED] wrote:

Re: vchrPageUpWhenOff

2002-02-26 Thread Regis St-Gelais
There is also no defines for the clock set key on the m505, I use 0x1700 -- Regis St-Gelais ing. Ingénieur de projets / Project engineer Développement informatique / Software development Le Groupe ISAC Inc. Courriel / Email ..: [EMAIL

How to track down Bus Error in hack?....

2002-02-26 Thread Shawn
Good Day to u all, In the hack, I am dynamically loading the contents in to a list. I populate it dynamically and freeing the memory when ever if another form is open. 1). I have made sure that i am not freeing already freed memory chunck. 2). I made sure that i free all memory which

How to Display the system time.

2002-02-26 Thread prasad
Hi, friends I am facing the problem with displaying the system time in my application like 7:30:20 (H:M:S), and i want to modify the time also. if any one have idea please tell me. thanks, laxma. ---

Re: How to Display the system time.

2002-02-26 Thread Dave Lippincott
Read over the Time Manager routines in the SDK documentation. - Original Message - From: prasad [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Tuesday, February 26, 2002 8:02 PM Subject: How to Display the system time. Hi, friends I am facing the problem

Re: MemHandleResetLock and exceptions

2002-02-26 Thread John Marshall
On Tue, Feb 26, 2002 at 11:38:19AM +0100, Pascal Levy wrote: There is also a similar problem with SysQSort : if the callback you supply throws an exception, the temporary stack allocated in SysQSort is never freed, since control returns directly to your code. A very simple improvement would

Re: MemHandleResetLock and exceptions

2002-02-26 Thread Pascal Levy
What's an exception? No, really :-) -- CodeWarrior and GCC both have their own ways of implementing C++ exceptions, and their implementations may even change in the future. Because implementations of these things on m68k Palm OS vary, it's not practical to burn knowledge of them into the

Re: MemHandleResetLock and exceptions

2002-02-26 Thread Ben Combee
There is no way to stop the sorting process from within the callback function. And exception entry code is slow. The callback beeing called about n*log(n) times, I'd rather catch exceptions globally than locally. Have you profiled this? CodeWarrior uses zero-overhead exceptions, which should

Launch codes for registering with the Exchange Manager

2002-02-26 Thread Matt Hebley
The documentation says to register data types with the Exchange Manager upon a sysAppLaunchCmdSyncNotify launch code. However, this is not received by POSE when CW installs the application. Also, it is not clear whether this launch code is received by the app when the app is installed on a

Re: MemHandleResetLock and exceptions

2002-02-26 Thread Pascal Levy
Have you profiled this? CodeWarrior uses zero-overhead exceptions, which should execute no additional code unless you actually throw an exception. I'm not using CodeWarrior but GCC. And I use ErrTry/ErrCatch blocks. According to the definition of theses macros, there is overhead. Pascal

Reading Address Book using Exchange Manager

2002-02-26 Thread Thomas Ward
Hi, I'm trying to read data out of the address book with the exchange manager. I have the following code: ExgSocketTypesocket; Err error; UInt32 bytes; char buffer[1024]; MemSet(socket, sizeof(ExgSocketType),

Re: storing Char** in Feature Memory and getting from it.

2002-02-26 Thread Dave Carrigan
Shawn [EMAIL PROTECTED] writes: How to store a Char** in the feature memory and retrieve the same location.?. You can't. What do you really want to do? -- Dave Carrigan ([EMAIL PROTECTED])| Yow! If I have enough money to UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-DNS | buy 5,000

Strangeness using FrmNewBitmap

2002-02-26 Thread Dave Brown
I accidentally posted this in the Conduit forum. Ooop's. Original message: I'm trying to use FrmNewBitmap to dynamically display a bitmap on a form. The bitmap displays fine but my lists become corrupted. If I take the FrmNewBitmap call out the lists are fine so I know it's the cause.

Re: Strangeness using FrmNewBitmap

2002-02-26 Thread Terry Dennis
Depending on what version of Palm OS you're running, you could be tripping on the infamous PrvFixUpPtrs bug. Any time a new object was added to a form, the form grew and was possibly relocated. If Palm OS had to relocate the form, it also adjusted pointers within the form structure that pointed

RE: Launch codes for registering with the Exchange Manager

2002-02-26 Thread Danny Epstein
Hi Matt! The documentation says to register data types with the Exchange Manager upon a sysAppLaunchCmdSyncNotify launch code. However, this is not received by POSE when CW installs the application. ...or when Poser installs an app by drag-on-drop or via the menu. For testing purposes, it's

RE: storing Char** in Feature Memory and getting from it.

2002-02-26 Thread Kevin OKeefe
Of the top of my head, I think this will work... //Setting // Memory must be dynamic heap, not stack. // Assuming this is actually a array of pointers to strings, // You'll want to set the owner to 0 for all the sub allocations // as well. Char** memPP = MemPtrNew(numItems * sizeof(Char*));

RE: Strangeness using FrmNewBitmap

2002-02-26 Thread Dave Brown
Terry, It actually doesn't work with the 4.0 ROM either. Adding them dynamically does it though. Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Terry Dennis Sent: Tuesday, February 26, 2002 10:37 AM To: Palm Developer Forum Subject: Re:

Re: Strangeness using FrmNewBitmap

2002-02-26 Thread Matt Hebley
I'm trying to use FrmNewBitmap to dynamically display a bitmap on a form. The bitmap displays fine but my lists become corrupted. If I take the FrmNewBitmap call out the lists are fine so I know it's the cause. I'm using the POL library so I'm not sure if the problem is because I'm going

Re: Strangeness using FrmNewBitmap

2002-02-26 Thread Terry Dennis
Interesting. I'm not sure which release fixed that PrvFixUpPtrs glitch. How corrupted are your lists? Can you provide an example of before after? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Problems with SDK 4.0 Update 1

2002-02-26 Thread Regis St-Gelais
First, I would like to apologize for the attachement, but as they say, A picture wort 1000 words, Since I've installed the new SDK 4.0 Update 1, most of my bitmaps dont show properly. I'm using CW 8.1 I use DrawBitmap(intX,intY,ToolBarRatingBitmapFamily) to draw the bitmap family. Any Clues?

Re: Custom gesture

2002-02-26 Thread Bob Whiteman
Ben Combee [EMAIL PROTECTED] wrote in message news:77970@palm-dev-forum... McPhling is a hack that does something like this, and also has source code released under the GPL. You could look at that implementation to see how you could implement this in your own program. See

RE: Infrared Synchronization from one device to anothe

2002-02-26 Thread Danny Epstein
I want about Infrared synchronization. Are you asking about IR HotSync? How we do Infrared Synchronization from one device to another device. Peer-to-peer is another story. Two apps might be of interest: - Cambio lets users swap apps via IR. An early version was demoed at PalmSource. This

Re: vchrPageUpWhenOff

2002-02-26 Thread Jim Schram
At 8:25 AM -0500 2002/02/26, Regis St-Gelais wrote: I was using it. It is the character code for the clock set on the m100 (upper left corner of the grafiti). I used vchrPageUpWhenOff to trap this key. What do I do now, I use 0x020E ??? ... There is also no defines for the clock set key on the

Re: Custom gesture

2002-02-26 Thread Bob Whiteman
David A. Desrosiers [EMAIL PROTECTED] wrote at 5:01AM on 2/26/2002 in message news:77987@palm-dev-forum... We support gestures in Plucker also, take a look. http://.plkr.org/ /d Once I took an extra w out of the URL I found some useful source code, thanks! It takes a dedicated

Re: Problems with SDK 4.0 Update 1

2002-02-26 Thread Jim Schram
Please do not include attachments or graphics in forum postings. Tens of thousands of uninterested forum members appreciate your consideration in this matter while we work through various Lyris configuration problems (our lame list management software. :o) Thank You! Jim Schram PalmSource

carbonized version of Constructor available now

2002-02-26 Thread Owen Emry
A carbonized version of Constructor for Palm OS is available now, behind the SDK clickwrap. Note that this is _not_ where the SDK update readme says it is. (Just go to http://www.palmos.com/dev/tools/ and click through to the SDK page.) Regards, Owen G. Emry - DTS Engineer Palm, Inc. --

Re: Strangeness using FrmNewBitmap

2002-02-26 Thread John Marshall
On Tue, Feb 26, 2002 at 10:17:55AM -0700, Dave Brown wrote: I'm trying to use FrmNewBitmap to dynamically display a bitmap on a form. The bitmap displays fine but my lists become corrupted. If I take the FrmNewBitmap call out the lists are fine so I know it's the cause. And later: It

RE: vchrPageUpWhenOff

2002-02-26 Thread Peter Epstein
Ignoring the twisted history for the moment, it's clear that developers writing for specific Palm branded devices such as the m100 or m500 series may very well want to take advantage of device specific features just as people do with Sony's jog dial and high resolution APIs. I would hope that

Re: Custom gesture

2002-02-26 Thread David A. Desrosiers
http://.plkr.org/ Once I took an extra w out of the URL I found some useful source code, thanks! I seem to have trouble with this usb keyboard driver, I type so fast, I get double characters sometimes. It's been happening for a week. It takes a dedicated developer to respond

Re: vchrPageUpWhenOff

2002-02-26 Thread Regis St-Gelais
So, m100 devices with Palm OS 3.5.1 generate 0x020E for the Clock Set silk screen button. m505 devices with Palm OS 4.0 and 4.1 generate 0x1700 for the Clock Set silk screen button. and no one knows what future version will generate. -- Regis St-Gelais

Does someone still have the beta release of Palm OS 4.0 SDK Update 1

2002-02-26 Thread Regis St-Gelais
I need a copy of the beta release the Palm OS 4.0 SDK Update 1. I'm having some problems with the offical release and I want to fall back to check if it's realy the source of my problems Thank's -- Regis St-Gelais ing. Ingénieur de projets / Project

Re: vchrPageUpWhenOff

2002-02-26 Thread Jim Schram
At 3:11 PM -0500 2002/02/26, Regis St-Gelais wrote: So, m100 devices with Palm OS 3.5.1 generate 0x020E for the Clock Set silk screen button. m505 devices with Palm OS 4.0 and 4.1 generate 0x1700 for the Clock Set silk screen button. and no one knows what future version will generate. Not until

Re: Problems with SDK 4.0 Update 1

2002-02-26 Thread Laurie Davis
As I mentioned in an earlier post, I too have had bitmap corruptions since I installed this update. I resolved the problem by going back to the earlier version of PalmRezPostLinker. Laurie Regis St-Gelais [EMAIL PROTECTED] wrote in message news:78043@palm-dev-forum... First, I would

RE: Strangeness using FrmNewBitmap

2002-02-26 Thread Danny Epstein
Can someone tell us what's in the 3.5.2 patch? The dynamic UI fixes are in the 3.5.3 update and in the 4.0 ROM. Jim has posted descriptions of the 3.5.3 update on this forum: http://www.escribe.com/computing/pcpqa/m42487.html http://www.escribe.com/computing/pcpqa/m49866.html The official

RE: Reading Address Book using Exchange Manager

2002-02-26 Thread Danny Epstein
Thomas Ward wrote: I'm trying to read data out of the address book with the exchange manager. The short answer is you can't do that yet. The Exchange Manager itself supports it, as of Palm OS 4.0, but the apps don't and some of the exchange libraries don't. In order to support GET, the apps

Changing Network Service

2002-02-26 Thread Stringer
After studying the documentation and running through the KB, I'm at a loss to figure out how to simply change the Network Service from one to another (defined) service and have all the current settings of the other Service replace the current one. Good example is switching between a dial-up

RE: Strangeness using FrmNewBitmap

2002-02-26 Thread Dave Brown
Terry, Before: Arial Times Roman After: Arial Arial Second List: Before: Regular Bold Italic Underline After: Regular gular empty talic Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Terry Dennis Sent: Tuesday, February 26, 2002

RE: storing Char** in Feature Memory and getting from it.

2002-02-26 Thread Shawn
Thanks Kevin, It is working. Actually , I am dynamically creating the contents of the list. and to store the Char** occupied by the List, i am using the feature memory. When the List is invisible i am freeing the memory. I am sure that it is freeing the memory, since i am not getting

POSE 3.4 memory leak on a HandEra

2002-02-26 Thread Paul Nevai
I just installed POSE 3.4 with a plain vanilla out-of-the-box HandEra ROM and I have memory leaks all over the place. Is this expected? The HandEra ROM came directly from HandEra's website. /Paul N. P.S. I use VPC on a Mac. -- For information on using the Palm Developer Forums, or to

Re: Help please: UIAppShell error at SysGetAppInfo.

2002-02-26 Thread Keith Rollin
Well, at the very least, update to the current version of the Palm OS Emulator. The error message you cite indicates that you're running a very old version. As for what's causing the crash, I couldn't say. I know what *I'd* do in you position (use PalmDebugger to poke around and see what

RE: vchrPageUpWhenOff

2002-02-26 Thread Peter Epstein
The m100 series devices have a feature that when the device is off, the up button can be pressed to turn on the device briefly and show a popup clock dialog. Holding down the up button will also activate the backlight. When the up button is pressed while the device is off, a different character

Re: Palm source 2002

2002-02-26 Thread Keith Rollin
The slides are being worked on and will be posted eventually to www.palmsource.com. I'm not sure when they're due. -- Keith At 12:45 PM +0530 2/26/02, Samee Khan wrote: Hello, I would like to know where one could get Palm Source 2002 presentations of all events, on the Net. Your

Re: POSE 3.4 memory leak on a HandEra

2002-02-26 Thread Keith Rollin
At 5:05 PM -0500 2/26/02, Paul Nevai wrote: I just installed POSE 3.4 with a plain vanilla out-of-the-box HandEra ROM and I have memory leaks all over the place. Is this expected? The HandEra ROM came directly from HandEra's website. /Paul N. I'd expect that HandEra would have to look into

Re: MemHandleResetLock and exceptions

2002-02-26 Thread Keith Rollin
At 11:38 AM +0100 2/26/02, Pascal Levy wrote: [MemHandleResetLock] is really useful when trying to clean up (typically, unlock handles) in the catch block of an exception handler. Since it depends on where the exception was originally thrown, you can't always determine how many times some

RE: POSE 3.4 memory leak on a HandEra

2002-02-26 Thread Michael Waldron
There was a small memory leak in our default template list code which has since been corrected. The affected Preference Panels are General, Applications and Side Buttons. The only affected application is Backup. Any leaks beyond what I have noted here are probably due to code loaded on the

RE: storing Char** in Feature Memory and getting from it.

2002-02-26 Thread Joe
--- Shawn wrote: Actually , I am dynamically creating the contents of the list. and to store the Char** occupied by the List, i am using the feature memory. When the List is invisible i am freeing the memory. I am somewhat confused by what you say you are doing. If you are

Re: Problems with SDK 4.0 Update 1

2002-02-26 Thread Mark A. Peters
I ran into this as well, but I fixed it by using the Recolor With Current Table feature in Constructor. Mark Peters Laurie Davis [EMAIL PROTECTED] wrote in message news:78068@palm-dev-forum... As I mentioned in an earlier post, I too have had bitmap corruptions since I installed this update.

Re: MemHandleResetLock and exceptions

2002-02-26 Thread John Marshall
On Tue, Feb 26, 2002 at 04:52:29PM +0100, Pascal Levy wrote: [...] if the callback you supply throws an exception, the temporary stack allocated in SysQSort is never freed, since control returns directly to your code. A very simple improvement would be that SysQSort catch the exception,

Re: Problems with SDK 4.0 Update 1

2002-02-26 Thread Laurie Davis
I went back and tried this with the new version of PalmRezPostLinker, but it did not solve my problem. Laurie Mark A. Peters [EMAIL PROTECTED] wrote in message news:78100@palm-dev-forum... I ran into this as well, but I fixed it by using the Recolor With Current Table feature in

Re: MemHandleResetLock and exceptions

2002-02-26 Thread Keith Rollin
At 10:04 AM -0600 2/26/02, Ben Combee wrote: CodeWarrior uses zero-overhead exceptions, which should execute no additional code unless you actually throw an exception. Hah! Then what's this opcode that saves the stack pointer every time I enter a try block? :-) -- Keith -- For information

Re: Problems with SDK 4.0 Update 1

2002-02-26 Thread Regis St-Gelais
Mark A. Peters [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] I ran into this as well, but I fixed it by using the Recolor With Current Table feature in Constructor. Mark Peters It did the trick, but I had to pass all of my 244 bitmaps one by one. It is odd to see

Debugger and Symbol Files

2002-02-26 Thread Dominique
Hi, I am using Palm Debugger with PRC-Tools (not CodeWarrior). When I try to load a COFF symbol file it complains with: Error: Symbol files must have names formatted like this: dbName.resType.resID.sym (Ex. Phone.code.1.sym) Is there a special gcc option I need? Thanks Dominique -- For

ctlSelect v/s PopSelectEvent

2002-02-26 Thread Dinesh Kumar
I'm having a Popup list[i.e, using a list and a popup trigger] popup trigger always takes ctlSelect and PopSelectEvent. i'm handling the selection of list items with PopSelectEvent now i do have two buttons also in my form.for them if i use ctlSelectEvent then popSelectEvent is overlooked and