Re: Handling display resizes

2005-10-28 Thread Logan Shaw
Trevor MacPhail wrote: I'd like to handle display resizes in my application but I can't even get the display resize button to be enabled. I've tried PINSetInputTriggerState and then PINGetInputTriggerState to confirm it is set correctly. (I did this after the FrmGotoForm call but before the event

Re: PalmOSForm.c, Line:564, unexpected coordinate system

2005-10-28 Thread Erico Franco
Erico Franco wrote: Erico Franco wrote: PalmOSForm.c, Line:564, unexpected coordinate system when: More info: the error above I am getting using pluggedin T|X simulator. But for Garnet 5.4 Simulator I get the following error when I try to Extend the screen to 320x480: "peninputmgr.

Re: Large (Multisegment) application and non-global launch codes

2005-10-28 Thread Ben Combee
At 06:20 PM 10/28/2005, you wrote: Howdy - Is _CW_LoadOtherSegments part of the CW 9.3 release? I don't see it in the runtime code... It's in the file PalmOS_Startup.cpp that's built into the runtime libraries. Look in "CW for Palm OS Support\Runtime Libraries\Src". -- Ben Combee, Senior

re: Storage data without using ordinary database ways

2005-10-28 Thread ThuNguyet Nguyen
Hi there, I use file stream or put data in a binary file and load the bin file to the resource. File stream is actually palm database with 4K record each and each record has a header. You can read file stream using filestream API, and you get the data from a resource using DmGetResource and suc

re: Handling display resizes

2005-10-28 Thread Thomas Omilian
Use WinSetConstrainsSize() and FrmSetDIAPolicyAttr(). -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Field max char limit

2005-10-28 Thread Davie Lau
I have a field and have set the maxchars to 4096 in my resource file but it only allows me to enter 1024 characters. In the reference manual, it says maxchars can be set to a maximum of maxFieldTextLen, which is 32767. Can anyone help me? -- For information on using the PalmSource Developer F

Re: Large (Multisegment) application and non-global launch codes

2005-10-28 Thread marc
Howdy - Is _CW_LoadOtherSegments part of the CW 9.3 release? I don't see it in the runtime code... Thanks, -m -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Any way to get a handle to running application ?

2005-10-28 Thread ecv
Thanks for your reply. I´m not used to program on the Palm OS, but I could finally get the application name using the SysCurAppDatabase() as you suggested. Now I´m going to try to read the file on a byte level. With the standar Database file functions I don´t know how to do that. Using the Fi

Beaming from PilotMain

2005-10-28 Thread Davie Lau
I am responding to a launch code and beaming a message using ExgSend from within PilotMain. On the Tungsten E2 and Zire 31, this soft resets the device after PilotMain exits. Does anyone know why this happens? -- For information on using the PalmSource Developer Forums, or to unsubscribe, ple

Re: IAS_ATTRIB_UNDEFINED or UNKNOWN

2005-10-28 Thread Pedro
Thanks, Alan =] -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: IAS_ATTRIB_UNDEFINED or UNKNOWN

2005-10-28 Thread Alan J. McFarlane
In article news:[EMAIL PROTECTED], Pedro wrote: Hi, I have the following function to register objects in IAS database. [re-ordered] But, the query result is IAS_ATTRIB_UNDEFINED or UNKNOWN instead of IAS_ATTRIB_USER_STRING. Why Please, help me. Well the first thing to fix is this. From th

Storage data without using ordinary database ways

2005-10-28 Thread Luiz Antonio
Hi people, Please, does anybody know how can I storage data without using ordinary database ways? Thanks, Luiz -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Fonts in PODS

2005-10-28 Thread Troy Lokitz
The Teenyfonts example is designed for constructor/codewarrior. Does anyone have an example of how to add a custom font from scratch to a Palm OS Developer Suite project? Thanks, Troy -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.

Re: PalmOSForm.c, Line:564, unexpected coordinate system

2005-10-28 Thread Erico Franco
Erico Franco wrote: PalmOSForm.c, Line:564, unexpected coordinate system when: - I switch from 320x320 to 320x480 (collapse screen) - and also when I try to draw some forms FrmDrawForm(frmP); Hi, Thanks Ben and Henk for the help, the FrmDrawForm issue is solved by returning to the S

Re: Handling display resizes

2005-10-28 Thread Henk Jonas
Trevor MacPhail wrote: I'd like to handle display resizes in my application but I can't even get the display resize button to be enabled. I've tried PINSetInputTriggerState and then PINGetInputTriggerState to confirm it is set correctly. (I did this after the FrmGotoForm call but before the e

Handling display resizes

2005-10-28 Thread Trevor MacPhail
I'd like to handle display resizes in my application but I can't even get the display resize button to be enabled. I've tried PINSetInputTriggerState and then PINGetInputTriggerState to confirm it is set correctly. (I did this after the FrmGotoForm call but before the event loop.) I also tried S

re: Run68K.c(3047): Read from inaccessible address 4e6e6

2005-10-28 Thread Marianella Diaz
Please... any idea :( I don't understand what's wrong?? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Emulator/Simulator For Palm Treo 600/650

2005-10-28 Thread Ben Combee
At 11:53 AM 10/28/2005, you wrote: I asked this question over on the PalmOne forums a while back, but nobody is answering over there. I can't get any of the Treo 650 Debug simulators to work. They all hang with a "colorburst" screen immediately upon startup. The Release T650 sims seem to work o

Re: Emulator/Simulator For Palm Treo 600/650

2005-10-28 Thread Eric McDaniel
I asked this question over on the PalmOne forums a while back, but nobody is answering over there. I can't get any of the Treo 650 Debug simulators to work. They all hang with a "colorburst" screen immediately upon startup. The Release T650 sims seem to work ok, but are often slow to respond (or

RE: Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread David Oldis
Hi... If you're restting the sndbufpt to the beginning of your sound buffer each time then 'k' will always be 0. So if the value pointed to by sndbufpt is 5 and sndstrP->sndbuffer is at 5 then k = 5 - 5 will be 0. That's why I wondered if this is your actual callback because i

Re: PalmOSForm.c, Line:564, unexpected coordinate system

2005-10-28 Thread Ben Combee
At 10:36 AM 10/28/2005, you wrote: Hi, I decided to change my WinSetCoordinateSystem(kCoordinatesStandard); to WinSetCoordinateSystem(kCoordinatesNative); as I want to display some more precise sprites (bitmaps) on my game (using 320x320 instead of 160x160) given up from some

Re: PalmOSForm.c, Line:564, unexpected coordinate system

2005-10-28 Thread Henk Jonas
Erico Franco wrote: I decided to change my WinSetCoordinateSystem(kCoordinatesStandard); to WinSetCoordinateSystem(kCoordinatesNative); as I want to display some more precise sprites (bitmaps) on my game (using 320x320 instead of 160x160) given up from some devices as my game do not w

Re: To deactivate hardware buttons:

2005-10-28 Thread Eric Potter
babbu cathy wrote: Hi all, Can anyone please help me on this? How to deactivate the Hardware buttons for Treo through programmatically? Can anyone give me Code structure or example code with details? cathy. __ Yahoo! FareChase: Search multiple

PalmOSForm.c, Line:564, unexpected coordinate system

2005-10-28 Thread Erico Franco
Hi, I decided to change my WinSetCoordinateSystem(kCoordinatesStandard); to WinSetCoordinateSystem(kCoordinatesNative); as I want to display some more precise sprites (bitmaps) on my game (using 320x320 instead of 160x160) given up from some devices as my game do not works on t

debugging on palm

2005-10-28 Thread cbruner
I've been successfully debugging on the palm for a couple of weeks now. It occasionally freezes, and I've assumed that the usb port is just messing up. Now I'm not so sure. It always freezes in the same general location, but not always at the same exact location. There are no odd address accesse

Re: Picture - PDB File <> Palm OS

2005-10-28 Thread Robert Moynihan
Deepak.MA wrote: Continuing with the same, i understand that ther is a difference between a BMP on the PC and what is called a PAlm BMP. Could someone throw more light on this? As a minimum, the file headers are different and the rows of bits are stored in the opposite order. They are total

Re: Picture - PDB File <> Palm OS

2005-10-28 Thread Deepak.MA
Continuing with the same, i understand that ther is a difference between a BMP on the PC and what is called a PAlm BMP. Could someone throw more light on this? Rgds -D. - Original Message - From: "Erico Franco" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" Se

RE: Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread Sinisa Marovic (AC/EDD)
Hi, *> Maybe the size of the buffer is different on the Sony than *> it is on the Tungsten. Since the size of the buffer that *> you're requesting is just that, a request, you might *> actually be getting a smaller size. I'm aware of that, and as you can see in the callback I'm taking that in

re: Simulator T5 Freezing

2005-10-28 Thread David Oldis
No strong suggestions, but I too get the Tungsten 5 simulator to freeze up at startup a lot. What I usually have to do is delete its palmsim.ini file and restart it. Then it works fine, mostly. David -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see

re: Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread David Oldis
Hi... Maybe the size of the buffer is different on the Sony than it is on the Tungsten. Since the size of the buffer that you're requesting is just that, a request, you might actually be getting a smaller size. Also, you're resetting the sndstrP->sndbufpt each time to the start of the file.

Re: Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread Henk Jonas
I don't know exactly, but I remember I had problems with extended sound too and at the end, I've just drop it and used normal sound callbacks. I would guess, extended sounds are just broken on several devices. Regards Henk Sinisa Marovic (AC/EDD) wrote: Hi Henk, thanks for the quick an

RE: Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread Sinisa Marovic (AC/EDD)
Hi Henk, thanks for the quick answer. But the function call and callback are succesfull! How can this be? Sinisa. *> -Original Message- *> From: [EMAIL PROTECTED] *> [mailto:[EMAIL PROTECTED] Behalf Of Henk Jonas *> Sent: Friday, 28 October, 2005 10:09 *> To: Palm Developer Forum *> S

Re: TX changes

2005-10-28 Thread Jan Slodicka
From: "Henk Jonas" <[EMAIL PROTECTED]> > > Why? Wasn't it always the rule to protect the database when you want to > use a callback pointer or stuff like this? I don't know as I never did it. But checked now couple of practical examples and it looks like you are right. Regards Jan Slodicka

Re: Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread Henk Jonas
Hi voda :-) I think you can't use SndStreamCreateExtended, it doesn't really work on all devices. Try the standard SndStreamCreate. Greetings Henk Sinisa Marovic (AC/EDD) wrote: I have made this app, and it has sound. But only on my device. I have a Sony Clie with installed MCA2 (sort o

Help ! I can't get sound on Zodiac/Tungsten E

2005-10-28 Thread Sinisa Marovic (AC/EDD)
I have made this app, and it has sound. But only on my device. I have a Sony Clie with installed MCA2 (sort of compatibility layer for Sony Clie Audio), and every other third party program/app works fine with sound, so I don't think that's the problem. The ARM callback function is as simple as

Re: TX changes

2005-10-28 Thread Henk Jonas
Jan Slodicka wrote: If the database is protected, records will not be unlocked. The notes should have been more clear on this topic. Thanks, have to think more about it. But in this moment I would say that all what I said above is true, i.e. users will have more problems with old apps than

Re: Heap Size

2005-10-28 Thread Henk Jonas
Rahul Patharkar wrote: Hello EB, What is the Heap Size for Palm 5.0 release & upto how much i can allocate. What is Memory Architecture of Palm 5.0 release. Very different, Tungsten T and T2 have less then 1MB, T3 has almost 10MB, T5 and above something around 3(??)MB. Zodiac has 10 o

Heap Size

2005-10-28 Thread Rahul Patharkar
Hello EB,     What is the Heap Size for Palm 5.0 release & upto  how much i can allocate. What is Memory Architecture of Palm 5.0 release.     Regards, Enjoy this Diwali with Y! India Click here -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://w