Re: Zire 31 receive only 16, 16, 9 bytes by IR raw instead 41

2005-06-27 Thread Dek
Thank you for an answer. But, do you know why Zire 31 receive data by 16 bytes? Is it hardware or software problem? P.S. Sorry for my english. -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Determining folder path for application

2005-06-27 Thread Dr. Vesselin Bontchev
Why don't you just use FtrMem instead? Ah, I did not know about such a function... Oh, you probably meant FtrPtrNew? Indeed, this way one doesn't need the trick that marks the allocated memory as belonging to the OS. In other words, instead of savedPath = (Char *) MemPtrNew (StrLen (path) +

Determining folder path for application

2005-06-27 Thread Dr. Vesselin Bontchev
You mentioned that you don't think you get a sysAppLaunchCmdCardLaunch in all non-memory launch or program start situations. No, I didn't say that. I said that the /PALM/start.prc application is not launched with the sysAppLaunchCmdCardLaunch launch code. I was wrong, though. It's not that

Palm OS Dev Suite

2005-06-27 Thread Dr. Vesselin Bontchev
Any tutorials for Try this one: http://www.palmos.com/dev/support/docs/dev_suite/PalmOSDevSuite/ToolsTOC.html Regards, Vesselin -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Palm OS Dev Suite

2005-06-27 Thread Dr. Vesselin Bontchev
Is this list moderated? Nope. It has good sides - a moderated list usually has slower response (until the moderator appoves the original message and the replies to it) and also tends to pose significant load on the moderator, and it is sometimes difficult to find a person willing to do the

Re: Zire 31 receive only 16, 16, 9 bytes by IR raw instead 41

2005-06-27 Thread Henk Jonas
Dek wrote: Thank you for an answer. But, do you know why Zire 31 receive data by 16 bytes? Is it hardware or software problem? P.S. Sorry for my english. I guess, it's the internal buffer. The call returns, when either the internal buffer is full or a certain amount of time is passed, I

Problem with uppercasing input

2005-06-27 Thread Thomas Ward
Hi, I have a field whose contents need to be all capital letters. A long time ago, I wrote this code to do it: case keyDownEvent: if (FrmGetFocus(frm) == FrmGetObjectIndex(frm, capsfield)) event-data.keyDown.chr = upper_char(event-data.keyDown.chr); break; I then return false from

Problem with uppercasing input

2005-06-27 Thread Dr. Vesselin Bontchev
In Palm OS 5.x, direct manipulation of the event queue no longer seems to work - as those who keep recommending exiting an application by stuffing an AppStop event directly into the event queue will discover to their chagrin. As to how exactly to achieve what you want - I don't know; I've never

Re: GPRS Access Point Name

2005-06-27 Thread Scott Erickson
? -- Scott EricksonSoftware Development Team, FB-4, Inc.[EMAIL PROTECTED] "Mohamad Alhomsi" [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]...Hello, I am working on application that will play audio to list of number after they are dialed. I could do the part of dialing

How can I clear the events

2005-06-27 Thread Alexandre Umino (Spin)
Hi list How can I do to clear the events? In my application, I need that the events will be erased. The user can click any button, but only one event is create. Any idea? Thank's Alexandre -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: Problem with uppercasing input

2005-06-27 Thread Miro Pomsar
Hi, did you try calling FldHandleEvent() directly and returning true? In PalmOS 5.0 the system keeps a shadow copy of most structures used. That's why it is not supported to access them directly and that's probably also why your change was discarded. With best regards, Miro Pomsar

Re: Problem with uppercasing input

2005-06-27 Thread Robert Moynihan
Thomas Ward wrote: Hi, I have a field whose contents need to be all capital letters. A long time ago, I wrote this code to do it: case keyDownEvent: if (FrmGetFocus(frm) == FrmGetObjectIndex(frm, capsfield)) event-data.keyDown.chr = upper_char(event-data.keyDown.chr); break; I then

Re: How can I clear the events

2005-06-27 Thread Robert Moynihan
Alexandre Umino (Spin) wrote: Hi list How can I do to clear the events? In my application, I need that the events will be erased. The user can click any button, but only one event is create. Any idea? Thank's Alexandre -- For information on using the PalmSource Developer Forums, or to

Re: Problem with uppercasing input

2005-06-27 Thread Robert Moynihan
Dr. Vesselin Bontchev wrote: In Palm OS 5.x, direct manipulation of the event queue no longer seems to work - as those who keep recommending exiting an application by stuffing an AppStop event directly into the event queue will discover to their chagrin. Manipulating the OS5 event queue

Cw 9.3 breaking inside all throws

2005-06-27 Thread Erico Franco
I don't know why but CW 9.3 begins now to break inside every 'throw' that it finds, even the ones that are catched and managed. So now it is a hell due my code has a lot of throw/catch that is not interesting to me and now it stops for each of these during debug session. When it stops it

Re: Palm OS Dev Suite

2005-06-27 Thread Mohamad Alhomsi
Thank you for your nice polit words --- Original Message --- From: Dr. Vesselin Bontchev [EMAIL PROTECTED] Sent: Mon 6/27/2005 6:03 am To: Palm Developer Forum palm-dev-forum@news.palmos.com Subject: Palm OS Dev Suite Is this list moderated? Nope. It has good sides - a moderated list

RE: Generic Icon Resource ID

2005-06-27 Thread Jonathan King
Ok, I found the resources, ID 1 and 10001, but they don't show anything when I draw them. The only system bitmaps that do work are the alert icons. Is there a reason for this? What database are these bitmaps stored in? -Original Message- From: [EMAIL PROTECTED]

Authentication with an Active Directory

2005-06-27 Thread Andre Augusto
Hello everybody! Can anybody tell me how can I authenticate someone that uses my application with an Active Directory Authentication (http://www.microsoft.com/windows2000/server/evaluation/features/dirlist.asp#heading3)? Are there any examples where I can learn how to do this? This

List control code example

2005-06-27 Thread Udi Kobi
Hi, I need a code example to the List control, i.e. after creating the control on the form - setting values, changing values, locking/unlocking... Regards, -Udi -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

GPRS APN

2005-06-27 Thread Scott Erickson
I cant figure out a way to get the APN of the current GPRS connection. I have tried with both the SDK API and the 68K/HS.h api. Does anyone know how I can get access to this setting? I just need the value of it, I dont need to chage it. If the device isnt on the right notwork, I need to

Re: Problem with uppercasing input

2005-06-27 Thread Ben Combee
At 07:13 AM 6/27/2005, you wrote: Hi, I have a field whose contents need to be all capital letters. A long time ago, I wrote this code to do it: case keyDownEvent: if (FrmGetFocus(frm) == FrmGetObjectIndex(frm, capsfield)) event-data.keyDown.chr = upper_char(event-data.keyDown.chr);

Re: Cw 9.3 breaking inside all throws

2005-06-27 Thread Ben Combee
At 09:13 AM 6/27/2005, you wrote: I don't know way my CW apparently begins to create a breakpoint on the first instruction inside the 'throw' code every time a run it. I vaguely remember to check some option to break in every throw... but I don't remember where to find this again. The

RE: Move GSI

2005-06-27 Thread Jonathan King
How do you move a graffiti shift indicator when responding to a display changed event? Thanks -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Cw 9.3 breaking inside all throws

2005-06-27 Thread Erico Franco
Ben Combee wrote: The setting you're looking for is at the bottom of the Debug menu -- Stop on C++ Exception. You can toggle this while a debug session is active. -- Ben Combee, Senior Software Engineer, palmOne, Inc. Combee on Palm OS weblog: http://palmos.combee.net/ Developer

re: Authentication with an Active Directory

2005-06-27 Thread Stadin, Benjamin
I've never dealt with Active Directory. But I think it will be very hard to implement AD on your Palm if there is no such library already available. But you can do a NTLM authentication between the Palm user and your server and then check on the server side if the user has access rights to this

Re: How to use the repeating buttons?

2005-06-27 Thread Edgar T. López
Hi, Thanks. You're right, without the return handled = true, the repeating button works fine; but I don't understand why it is not necessary to return the handle = true. Can you explain me?. Best regards. Edgar T. López -- For information on using the PalmSource Developer Forums, or to

On-screen keyboard graffiti help

2005-06-27 Thread L A
Please help, we're struggling with the following for a while now. We developed an application for Tungsten C; as you know, it has a built-in keyboard; When the application is opened on the PDA, we lock all the keys on the keyboard, so that any inadvertent tapping of the keys won’t disrupt the

RE: Move GSI

2005-06-27 Thread Ben Combee
At 10:23 AM 6/27/2005, you wrote: How do you move a graffiti shift indicator when responding to a display changed event? There's code in the DIA example in the PalmSource KB to do this. It involves iterating through all the objects in the form, finding the GSI, then adjusting its position.

List control code example

2005-06-27 Thread Dr. Vesselin Bontchev
Try this, for instance: http://onboardc.sourceforge.net/cookbook.html#lists Regards, Vesselin -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Move GSI

2005-06-27 Thread Stadin, Benjamin
Put this into your form resize function. Int16 horizontalOffset, verticalOffset; Coord x, y; UInt16 index; CollapseResizeForm(frmP, false, horizontalOffset, verticalOffset); index = FrmGetNumberOfObjects(frmP); while (index--) { if (FrmGetObjectType(frmP, index) == frmGraffitiStateObj)

pnoJpeg

2005-06-27 Thread Landon Cunningham
I know you have all probably read my past post regarding my problems with encoding using the pnoJpeg lib. I know you must think that the problem is very similiar to pnoJpegLib: 0-bytes length VFS-file 2005-05-01 09:03:00 Miguel Angel Sotomayor Hernandez. I have looked at it and even

Re: Replacing left over application in memory

2005-06-27 Thread Steve Chaplin
Like many things I'm encountering on the Palm, this is not going to be easy to do. I appreciate the great feedback from you guys. Getting my application to work on the Palm would probably be impossible without this forum. Thanks, --sdc -- For information on using the PalmSource Developer

Latest Treo ROM upgrade 1.28

2005-06-27 Thread David D Webb
Are there any release notes to what this upgrade actually fixes or changes? I have been on Palm1 PluggedIn and can't find anything other than it improves NVFS. -Dave -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

Re: Replacing left over application in memory

2005-06-27 Thread Steve Chaplin
I have good new on this subject. It seems that the check made for replacement is file size. So as long as the size of the application on the card is different from the one in memory, it will be replaced. --sdc -- For information on using the PalmSource Developer Forums, or to unsubscribe,

Re: How to use the repeating buttons?

2005-06-27 Thread Henk Jonas
Edgar T. López wrote: Hi, Thanks. You're right, without the return handled = true, the repeating button works fine; but I don't understand why it is not necessary to return the handle = true. Can you explain me?. Best regards. Edgar T. López Nope, sorry, I don't have a good answer. Maybe

Re: Latest Treo ROM upgrade 1.28

2005-06-27 Thread Ben Combee
At 01:14 PM 6/27/2005, you wrote: Are there any release notes to what this upgrade actually fixes or changes? I have been on Palm1 PluggedIn and can't find anything other than it improves NVFS. The NVFS code is the same revision as used on the LifeDrive. This includes improvements in

Re: GPRS APN

2005-06-27 Thread Henk Jonas
Scott Erickson wrote: I cant figure out a way to get the APN of the current GPRS connection. I have tried with both the SDK API and the 68K/HS.h api. Does anyone know how I can get access to this setting? I just need the value of it, I dont need to chage it. If the device isnt on the right

Re: pnoJpeg

2005-06-27 Thread Henk Jonas
Have you ever tried Version 1 of pnoJpeg? Landon Cunningham wrote: I know you have all probably read my past post regarding my problems with encoding using the pnoJpeg lib. I know you must think that the problem is very similiar to pnoJpegLib: 0-bytes length VFS-file 2005-05-01 09:03:00

Re: Palm OS Resource Editor and Resource Header File

2005-06-27 Thread Paul Firth
Two related questions/issues, if anyone can help! 1: Why is the k added to the front of every Resource name? I imported a lot of Forms from my CodeWarrior projects. Do I have to rename EVERYTHING in the code to add the k to the front of every ID that the new Resource Editor generates? 2.

Re: pnoJpeg

2005-06-27 Thread Landon Cunningham
I think I am correct in saying this Version 1 doesn't support saving of image but only loading. I went back to 2.10 which only had small bug fixes but it seems to work but with a smaller image but I am suspecting because of the high density bitmaps. I thought about reverting back to the previous

Re: pnoJpeg

2005-06-27 Thread Miguel Angel Sotomayor Hernandez
I could make it work Landon Cunningham wrote: I know you have all probably read my past post regarding my problems with encoding using the pnoJpeg lib. I know you must think that the problem is very similiar to pnoJpegLib: 0-bytes length VFS-file 2005-05-01 09:03:00 Miguel Angel Sotomayor

Re: pnoJpeg

2005-06-27 Thread Landon Cunningham
I will give it a try tomorrow but it looks like it will help. Thanks I will let you know. But it is quitting time for today. Thanks again, Landon C -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Latest Treo ROM upgrade 1.28

2005-06-27 Thread David D Webb
Thanks. This wouldn't happen to address the issue where a stored handle to a record opened with DmQueryRecord can become invalid? Would it? I'm trying to change a lot of the DmQuery's to DmGet's but it is difficult because I don't necessarily track the index of the opened record. -Dave --

Re: Bug disabling socket linger

2005-06-27 Thread Sam Lu
On my UX50 (5.2.1), I have to swap the bytes for workaround the OS bug, but I found that we don't need to swap the bytes on Treo 650 (5.4). Sam -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Object Library for Palm OS (was Re: Old SDKs)

2005-06-27 Thread Chris Tutty
From: Ben Combee [EMAIL PROTECTED] At 10:05 PM 6/26/2005, you wrote: Are there any plans to port POL to prc-tools so that it can be used with the new Palm Development Suite? Personally, I like the whole object-oriented paradigm. From your brief explanation here, it sounds like OO provides a