Re: Discovering and using undocumented events on the Clie

2003-06-22 Thread Jonatan Fernstad
So EvtEnqueueKey((WChar)keyBitVoiceRec, 0, 0) should do the job, I thought. You need to have the commandKeyMask bit set in the 3rd parameter to EvtEnqueuKey, I believe. To be sure how the keyDownEvent looks like for the VoiceRec button set a breakpoint in your event loop, press the button and

sudden draw window changes - help is needed

2003-06-22 Thread Paul Nevai
I have a form popping up as an OS Extension [OS5 type hack] which is narrower than the entire screen [I know this is not approved but many other apps do it too]. Occasionally, on my Tungsten C, the draw window suddenly changes from the form to the display window. This happens only on the

Re: jpegArmlets: Come get 'em

2003-06-22 Thread Matthew Fleming
Danny Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] tried it and doesn't work in the emulator or on the TT. There was a bug in one of the dll's. It referenced a file which exists on my system but doesn't on yours; when the dll tried to open it, it crashed. This has now been

Re: MP3 on tungsten

2003-06-22 Thread Aaron Ardiri
Where can i found code example on how to play MP3 with the OS5 sound API ? there is no native mp3 support - write your own mp3 streaming function (read mp3 - stream) and you'll have mp3 - not that hard to do :), mp3 players do exist on the Tunsten/Zire71 units. --- Aaron Ardiri

Re: Discovering and using undocumented events on the Clie

2003-06-22 Thread David Beers
Hal Mueller wrote: Instead of counting on undocumented events or (as in your Sony-forum thread) counting on keys remaining bound to their defaults, shouldn't you be using SysAppLaunch or SysUIAppSwitch? Well, that gets me into the application, but how do I start recording? Maybe there is a cmd

RE: jpegArmlets: Come get 'em

2003-06-22 Thread Danny Wong
Matthew, do you know why the .pdb is corrupted? when I install it to the simulator or the TT it says the file is invalid. regards -- Danny Y. Wong Toysoft, Inc. www.toysoft.ca -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Matthew Fleming Sent:

Re: Discovering and using undocumented events on the Clie

2003-06-22 Thread David Beers
Jonathan wrote: You need to have the commandKeyMask bit set in the 3rd parameter to EvtEnqueuKey, I believe. Yeah, I tried it both ways, but no joy. You're right, I'd normally think it needs to be set. To be sure how the keyDownEvent looks like for the VoiceRec button set a breakpoint in

Starting up, sorta

2003-06-22 Thread Paul Johnson
Hi Guys. I've been asked to do ports of several games and other multimedia apps from that other PDA to OS5, and have a few basic questions. I'll look into the how-to's later, but I would appreciate a general feel answer to those below so I can figure out what's in front of me please. I dabbled a

Re: Discovering and using undocumented events on the Clie

2003-06-22 Thread Jonatan Fernstad
(b) take a few moments to do as Jonathan suggested with a breakpoint in the event loop of an app and let me know what the details are about the event that the Rec button fires. keyDown created when pushing the Voice rec button on a NZ90V. chr 5901 keyCode0 modifiers

Multibyte/Unicode Programming

2003-06-22 Thread Victor .
I know that the current Palm OS doesn't support Unicode. However, I was wondering if programming using multibytes is do-able to support application that display non-roman characters. What i mean is I want my application to be able to display every single character in Unicode tables, not only

How do one locate the cause for this Bus error?

2003-06-22 Thread Werner Terreblanche
My app has suddently started giving bus error messages in Pose when I'm killing a CodeWarrior debug session. When I run the app (without using the debug option) then it runs fine and does not give an error. But as soon as I try to debug I get this error only at the point where I kill the debug

How to know if the alarm caused power on?

2003-06-22 Thread RaNo
Hello! I set alarms for my app with AlmSetAlarm (...), and receive both: sysAppLaunchCmdAlarmTriggered and sysAppLaunchCmdDisplayAlarm. None of them, however, can tell me if the alarm caused power on to the handheld or not. How to distinguish? (my goal is to sound the alarm and, if handheld was

Re: Discovering and using undocumented events on the Clie

2003-06-22 Thread David Beers
Great, that works for the TG50, too! Thanks, Jonatan (and sorry I spelled your name wrong earlier)! It looks like the code I was using to extract the chr code was only giving me the first byte of the WChar for some reason, which is why I was getting 47 instead of 5901. Thanks for the tip on

Re: PenMove in OS5

2003-06-22 Thread Tom Frauenhofer
I had the same problem on my Tungsten C. My fix was to write a tighter event loop on the penDownEvent to go until the penUpEvent was received (which you should do for good drawing routines to improve the drawing quality). (Only thing I can think of is that the pen queue is somehow getting

Re: Starting up, sorta

2003-06-22 Thread Chris Tutty
From: Paul Johnson [EMAIL PROTECTED] I've been asked to do ports of several games and other multimedia apps from that other PDA to OS5, and have a few basic questions. I'll look into the Most of your questions look like Aaron's domain, but having had to manage lots of graphic content I can

How to implements PASSWORD field?

2003-06-22 Thread Andrew
The application I am currently doing now needs to set a PASSWORD entering text field. But there is no such kind of attribute in field. So, how can I set PASSWORD display as *** then retrieve the correct value back? -- For information on using the Palm Developer Forums, or to unsubscribe,

RE: How to implements PASSWORD field?

2003-06-22 Thread Keith Rollin
Andrew, This question is asked a lot. You can find previous responses in the forum archives, here: http://groups.yahoo.com/group/palm-dev-forum/messagesearch?query=password or here: http://www.escribe.com/computing/pcpqa/search.html?query=password For more information on using the forums,

RE: How to implements PASSWORD field?

2003-06-22 Thread Sherry Lane Razon
try this link! http://groups.yahoo.com/group/palm-dev-forum/message/88964 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Andrew Sent: Monday, June 23, 2003 10:59 AM To: Palm Developer Forum Subject: How to implements PASSWORD field? The application I am

programmatic breakpoint.

2003-06-22 Thread UCS308
I want to place some asserts that generate breakpoints in CW9 is this possible? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: PenMove in OS5

2003-06-22 Thread Aaron Ardiri
case penDownEvent: // Initialize the drawing using data from the penDown event while(!done) { EvtGetEvent(evt, 1); switch(evt.eType) { case

Re: Starting up, sorta

2003-06-22 Thread Aaron Ardiri
I've been asked to do ports of several games and other multimedia apps from that other PDA to OS5, and have a few basic questions. I'll look into the how-to's later, but I would appreciate a general feel answer to those below so I can figure out what's in front of me please. you accepted