Re: record alignement problem

2003-03-02 Thread Mark Wilden
> "Jim Duffy" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > >profileP += Tally; // now pointing at beginning of UInt16 array. > >for(i = 0; i <= ProfileLength; i++) > >{ > > MemMove(&ProfileGlobal[i],profileP,sizeof(UInt16)); > > profileP += 2; > >

Fatal Alert, Event.c Event queue full

2003-03-02 Thread Rahul Shukla
Hello, I developed an application having prc size as 192kb. So effective size if big. On one or two screens i get this error as Fatal Alert, Event.c event queue full. Can any one help me in suggesting the remedy of this problem, or the potential cause of the same. Best Regards, Rahul _

Re: record alignement problem

2003-03-02 Thread John Marshall
On Sun, Mar 02, 2003 at 12:14:04AM -0800, Mark Wilden wrote: >> "Jim Duffy" <[EMAIL PROTECTED]> wrote >>>profileP += Tally; // now pointing at beginning of UInt16 array. >>>for(i = 0; i <= ProfileLength; i++) >>>{ >>> MemMove(&ProfileGlobal[i],profileP,sizeof(UInt16)); >>>

I need a correctly functioning EvtEventAvail()

2003-03-02 Thread Paul Nevai
We are in OS5 and I did a SysNotifyRegister (cardNo, dbID, sysNotifyEventDequeuedEvent, &myProcessDequeuedEvent, sysNotifyNormalPriority, myDataP); job and handle [treat] events inside myProcessDequeuedEvent(). The question is how can I determine inside myProcessDequeuedEvent() if there are no m

how to disable Find button on Tungsten T?

2003-03-02 Thread Tenchi-Man
Hi, I cant disable the Find button on Tungsten T. But it works on other devices with no 5way navigation!!! Really dont know why.. can you help? THX My code: gFiveWayErr = FtrGet(navFtrCreator, navFtrVersion, &version); /* change timeout if you need periodic nilEvents */ EvtGetEvent

symbol sdk

2003-03-02 Thread burhan a.
how do i include symbol sdk in codewarrior to implement barcode functionality. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: symbol sdk

2003-03-02 Thread John E. Christ III
> how do i include symbol sdk in codewarrior to > implement barcode functionality. Look in the samples directory of the Symbol SDK. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Chris Antos
First of all, your operator precedence is messed up -- read up on the precedence of && vs || and add more parentheses to make it explicit what conditions you wanted to test. Second, the Find button is not a hard key. In other words, it works on non-TT devices because you have a bug on non-TT devi

Re: Fatal Alert, Event.c Event queue full

2003-03-02 Thread Sean Charles
On Sunday, March 2, 2003, at 07:41 AM, Rahul Shukla wrote: Hello, I developed an application having prc size as 192kb. So effective size if big. Size doesn't matter apparently ;-) On one or two screens i get this error as Fatal Alert, Event.c event queue full. Can any one help me in suggesting t

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Mark Wilden
- Original Message - From: "Chris Antos" <[EMAIL PROTECTED]> > First of all, your operator precedence is messed up -- read up on the > precedence of && vs || and add more parentheses to make it explicit what > conditions you wanted to test. > [...] > isMemoFindKey = > ( > (ev

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Chris Antos
No Mark, it seems you missed what I said. I showed what the expression *does* as written. And I explained why it's *wrong* as written. To clear up confusion, here is what the expression *should* be, in order for it to work as the author really intended: isMemoFindKey = event.eType == keyDownE

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Mark Wilden
- Original Message - From: "Chris Antos" <[EMAIL PROTECTED]> > > To clear up confusion, here is what the expression *should* be, in order for > it to work as the author really intended: I was just talking about the parentheses in the expression I quoted, that's all. :) -- For informatio

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Tenchi-Man
Thank you I got it Ray "Chris Antos" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > No Mark, it seems you missed what I said. > I showed what the expression *does* as written. > And I explained why it's *wrong* as written. > > To clear up confusion, here is what the expression *s

Re: Fatal Alert, Event.c Event queue full

2003-03-02 Thread Chris Tutty
From: "Rahul Shukla" <[EMAIL PROTECTED]> > On one or two screens i get this error as Fatal Alert, > Event.c event queue full. > Can any one help me in suggesting the remedy of this > problem, or the potential cause of the same. > There's a known problem with some operations on fields that will ove

Re: Database Records Transfer

2003-03-02 Thread Dan
I have checked the list and the online stores. The mailing list gives a program that appears to use its own scripting language. The stores appear to just sell end-user products as opposed to an actual API, which is what I am looking for. For instance, I'd like to be able to write Windows C code

Re: an EvtEnqueueKey() oddity

2003-03-02 Thread Keith Rollin
At 11:26 AM -0500 3/1/03, Paul Nevai wrote: I can't figure out why a EvtEnqueueKey ((WChar) 0x0100, 0, 0); job produces theEventP->data.keyDown.chr == 0x0100 theEventP->data.keyDown.keyCode == 0 theEventP->data.keyDown.modifiers == 8 // commandKeyMask Is it normal that the modifiers are not 0? B

Detecting a Conduit

2003-03-02 Thread Richard Coutts
My app is for OS 3.1 and above. I have a Conduit that has features for registered users, but the demo portion of my App doesn't require the Conduit. So, I'd rather not turn on the Copyright bit that prevents people from beaming the App to each other. My problem is that if someone gets the beamed

How to use the APIs reserved for system

2003-03-02 Thread Johnson Z
so called system use only functions. Can I just directly use it as normal APIs or do I have to take care about sth? Thanks _ The new MSN 8: smart spam protection and 2 months FREE* http://join.msn.com/?page=features/junkmail

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Chris Antos
"Mark Wilden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > - Original Message - > From: "Chris Antos" <[EMAIL PROTECTED]> > > > > To clear up confusion, here is what the expression *should* be, > > in order for it to work as the author really intended: > > I was just talk

Re: Draw a colored bitmap!

2003-03-02 Thread Xue Qu
thanks everybody, the problem has been solved, and it's really not that complex! Martyn > > Ben wrote: > >While you loaded the 8-bit image using the clipboard, did you paste it into > >a 1-bit bitmap? Did you setup a bitmap family in Constructor with a 8-bit > >family member? Did you paste into

Re: how to disable Find button on Tungsten T?

2003-03-02 Thread Mark Wilden
From: "Chris Antos" <[EMAIL PROTECTED]> > showing that you probably missed the whole point of what I had > written: Chris, I have no doubt at all that I missed your whole point, and I apologize. I thought you were talking about how the poster needed to add some parentheses, then I saw an example

Re: Database Records Transfer

2003-03-02 Thread Dan
OK. I think that was it. I looked in my CW8 directories for the Palm docs and came across one called, "Palm File Format Spec.pdf". I believe this is the file that you described. Anyway, just to be clear (if you don't mind)...I can make a binary file on a Windows machine using simple C routines

Re: Bad Field Selection after using on-screen keyboard

2003-03-02 Thread Dominique
I have solved this. The problem was that a form update event is sent (see archive by Martin Elzen: Bad field selection with SysKeyboardDialog), and in that event I was changing the handles that the table fields used. "Dominique" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > After

Re: Bad Field Selection after using on-screen keyboard

2003-03-02 Thread Ken Krugler
At 12:00am -0800 03-03-01, Palm Developer Forum digest wrote: Thanks for the tip. I had read that thread, and others that are similar, but I could not find what specifically causes the error. Others that have had similar errors have different scenarios that don't apply to what I am doing. It would

Alt key simulation with Keyboard input

2003-03-02 Thread Ron Ford
Is it possible to hilite or underline a letter on a button so that pressing Alt + key activates the button. For example, can I create a 'Save' button similar to the Visual Basic '&Save' text, and trap and Alt-S to activate the button. Also, I can trap the Enter key but not the Tab key from a Palm k

Re: Fatal Alert, Event.c Event queue full

2003-03-02 Thread Rahul Shukla
Hi, sure i aggree to it that at one of my screens i was using lot of fldinsert which gave me this error , so after reading the reference i had changed to settexthandle to the edit fields. Now the particular screens where i am facing this problem is actually i am using WinDrawChars() in a loop. Do

Re: Fatal Alert, Event.c Event queue full

2003-03-02 Thread Chris Antos
WinDrawChars doesn't post any events. What else do you call in the loop? (And if you call other functions you wrote, what do those functions call?, etc) What happens if you surround the loop with "#if 0"? (After also making any necessary tweaks so the subsequent code runs ok, etc) This would b