Re: PalmOS 5.0 simulator & debugger

2002-03-01 Thread Jim Schram
At 8:27 AM +0300 2002/03/02, Alex Muratov wrote: >"David Fedor" <[EMAIL PROTECTED]> wrote in message >news:[EMAIL PROTECTED].; >> The Palm Universal Debugger is nowhere near ready for public release. If >> you could tell me where you saw this statement, I can have it corrected... >> but you don't

Re: PalmOS 5.0 simulator & debugger

2002-03-01 Thread Alex Muratov
David, thank you for your response. "David Fedor" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED].; > The Palm Universal Debugger is nowhere near ready for public release. If > you could tell me where you saw this statement, I can have it corrected... > but you don't need it anyway.

FLASH

2002-03-01 Thread Jyothi
Hi, I have a Visor & Backup Module V1.1, I have Welcome & a Application. which I want to write on Backup Module Flash, The application should pop up when the module is inserted. I have 1. A BIN File using Palm-MakeROM 2. Palm Debugger ( connecting PC & Handheld ) I would Like to know 1. Ca

Re: File Linking Error

2002-03-01 Thread Brian Smith
On Fri, 1 Mar 2002, chong wrote: > when i use Code Warrior to compile my project, i saw this error: Link > Error : main.c: 'MainFormHandleMenu' 16-bit code reference at > 'OnScanSettings' is out of range. > What does this means ?? Time for a multi-segmented app, that's what that means. --

File Linking Error

2002-03-01 Thread chong
Hi, everybody: when i use Code Warrior to compile my project, i saw this error: Link Error : main.c: 'MainFormHandleMenu' 16-bit code reference at 'OnScanSettings' is out of range. What does this means ?? thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please se

File Linking Error

2002-03-01 Thread chong
Hi, everybody: when i use Code Warrior to compile my project, i saw this error : Link Error : main.c : 'MainFormHandleMenu' 16-bit code reference ot 'OnScanSettings' is out of range. what does this means ?? thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please

Re: Clearing a "WinDrawChars"

2002-03-01 Thread Joe
--- [EMAIL PROTECTED] wrote: > if(x<=111) > { > StrIToA(&xChar,x); What is this xChar? I get the terrible feeling that you have declared it as: Char xChar; That would be very bad because you are trying to put more than 1 char at that address with the StrIToA(). > WinDrawChars(&xChar,StrLen(&x

RE: Clearing a "WinDrawChars"

2002-03-01 Thread Peter Epstein
WinEraseRectangle -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Clearing a "WinDrawChars"

2002-03-01 Thread DrumBSF
Hey! I have a simple problem. What I said was if(x<=111) { StrIToA(&xChar,x); WinDrawChars(&xChar,StrLen(&xChar),113,35); } But when x gets past "99", it leaves an extra un needed digit. I tried a few things like WinEraseChars but those methods didn't work or atleast how I used them. Any

Re: Custom gesture

2002-03-01 Thread Bob Whiteman
You have an excellent point. The hack mechanism already has a way of adding a configuration panel to a hack, so I could simply provide a dialog which lets the user choose what the stroke is like. Thanks for the advice. Bob Whiteman Senior Software Engineer Pico Communications "Richard M. Hartman

RE: PalmOS 4.0: blank screen after time change?

2002-03-01 Thread Peter Epstein
I would suggest doing your time updating on the trigger launch code and setting the purgeAlarm flag within the launch parameters, so you never get the display launch code from the alarm manager. What you're trying to do is a background action that doesn't present any user interface. For that kind

PalmOS 4.0: blank screen after time change?

2002-03-01 Thread Gert-Jan Vons
A user of one of my Palm apps is reporting a strange problem that I'm unable to reproduce and which has not been mentioned in this forum or in the newsgroups. My app (TimeCopy) syncs the Palm's clock with the PC. When notified at the end of the hotsync, my app sets an alarm in order to actual

sysFtrNumROMVersion bug in Palm OS 4.0

2002-03-01 Thread Danny Epstein
If your app checks the OS version at run-time, be warned that: FtrGet(sysFtrCreator, sysFtrNumROMVersion, &romVersion); will return 0x0400 on a Palm OS 4.0 ROM, not 0x04003000. This is true for both debug and release ROMs. The bug was apparently fixed in Palm OS 4.1. So rather than compari

RE: Hiding application name in Delete Menu

2002-03-01 Thread Danny Epstein
> More or less a theoretically question, but if I had an application that I > did not want to have show up in the Delete Menu is there some way I could > accomplish this? I'm curious do to the fact that all the PalmOS functions, > like Mail, Expense and etc. do not show up there. As Dave said, th

Re: Hiding application name in Delete Menu

2002-03-01 Thread Dave Lippincott
Put the app in ROM. - Original Message - From: "Carl Smith" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Friday, March 01, 2002 4:20 PM Subject: Hiding application name in Delete Menu > More or less a theoretically question, but if

Hiding application name in Delete Menu

2002-03-01 Thread Carl Smith
More or less a theoretically question, but if I had an application that I did not want to have show up in the Delete Menu is there some way I could accomplish this? I'm curious do to the fact that all the PalmOS functions, like Mail, Expense and etc. do not show up there. I have tried setting t

Send and retrieving an Event

2002-03-01 Thread Carl Smith
Wonder if any one has some suggestions. I have a prc running and I start off a tight loop, meaning I do some calcualtions over and over again till I send myself a SysNotifyBroadcastDeferred. I catch the SysNotifyBroadcastDeferred in the MyHandleNotification and in this function I do a : MemSet( &

RE: Question regarding use of extended gadgets

2002-03-01 Thread Ezekiel Sanborndeasis
On the subject... There is sample code that demonstrates this... http://www.palmos.com/dev/support/docs/recipes/extended_gadgets.html -Ezekiel -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: How to display a list of unprotected databases?

2002-03-01 Thread Danny Epstein
> I want to display a list of Unprotected Applications/Databases for the users > to select one and delete them(Something like which is displayed in default > launcher - DELETE option). Thanks for explaining what you're trying to do. That should clear up some confusion... As I wrote in these rece

RE: Question regarding use of extended gadgets

2002-03-01 Thread Kevin OKeefe
Ah, so I was missing something... I didn't realize that the model was to loop and wait for pen events in the gadget handler. Certainly this keeps all the state and other info in the gadget where it belongs. It might be good if the gadget docs would mention this little "standard" strategy. Y

Re: Question regarding use of extended gadgets

2002-03-01 Thread Matt Hebley
I am about to write a similar thing (your original gadget, not the dynamic stuff). I was intending to completely handle pen tracking inside the gadget handler, as is done by lists etc. What is my point? Not sure exactly, perhaps wondering if anyone has comments on doing pen tracking inside a g

Re: Question regarding use of extended gadgets

2002-03-01 Thread David Fedor
>In my earlier development, I found it strange that one gets frmGadgetEnter >events in the gadget handler, but one never gets penMove, penDown or penUp >events in the gadget. This forces one to handle these events in the form >handler... Not really. When the user taps on an extended gadget, it

Question regarding use of extended gadgets

2002-03-01 Thread Kevin OKeefe
I used an extended gadget in a little utility application a while ago. While developing it I found a couple of things strange in the way that extended gadgets are implemented in Palm OS. Now I'm converting some home-grown dynamic UI (written before Palm OS supported it) and am trying to port

Re: Generate Profiler Information

2002-03-01 Thread Ben Combee
"Sajul P. Nandakumar" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED].; > > Hello All , > To test the application performance I want to use "Generate > Profiler Information" in CodeWarrior . I set the option "Generate > Profiler Information " ON in 68k processor preference pa

RE: How to print a UInt32

2002-03-01 Thread Kevin OKeefe
He just made a typo. Char szL[10]; StrPrintF(szL, "%lu", L); WinDrawChars(szL, StrLen(szL), 10, 120); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 8:27 AM To: Palm Developer Forum Subject: RE: How to print a UInt32 it doesn't work

Re: How to print a UInt32

2002-03-01 Thread Steve Mann
At 5:12 PM +0100 3/1/02, [EMAIL PROTECTED] wrote: >I would like to know the value of a UInt32 with WindrawChars Char num [ maxStrIToALen ]; StrIToA ( num, ( Int32 ) L ); WinDrawChar ( nun, .) StrIToA takes an Int32 so if L is large, you may get an incorrect result. If that's the case, use

Re: How can I check the Category of a record??

2002-03-01 Thread Steve Mann
>Can some helpful person tell me how I check the category of a record, given >a pointer to it's handle? You don't need the pointer or the handle (in fact, AFAIK, you can't get the category with either of those things). Regards, Steve Mann /**

Re: PalmOS 5.0 simulator & debugger

2002-03-01 Thread David Fedor
>Palm claims that Palm Universal Debugger is available for download from Res >Pavilion. But I can't find it there! The Palm Universal Debugger is nowhere near ready for public release. If you could tell me where you saw this statement, I can have it corrected... but you don't need it anyway. >

Re: ControlStyleType

2002-03-01 Thread David Fedor
>How can I find out the ControlStyleType of a ControlType in OS 5? /Paul N. CtlGlueGetControlStyle. Works in all OS versions, actually; all you need is the latest PalmOSGlue from the SDK update... Come on, Paul, if you don't watch out people are going to start saying RTFM ;-) -David Fedor Pal

Expense application crashes on Palm m125

2002-03-01 Thread Todd Carmichael
I using the normal tech support route through Palm for this problem, but I thought I might post here. For testing we bought several palms including a Palm m125. We noticed that it didn't have the expense application. So I grabbed it from a CD of a Palm VII and installed it. I tap on the ex

RE: How to print a UInt32

2002-03-01 Thread [EMAIL PROTECTED]
it doesn't work it makes this error : illegal implicit conversion from 'unsigned long' to 'const char *' > You can't just cast a UInt32 to a char* they are not compatible > > Try this > > Char szL[10]; > StrPrintF("%i", L); > WinDrawChars(szL,StrLen(szL),10,120); > > Fergal.

help needed on hindi graffiti. pls reply soon!

2002-03-01 Thread siddharth saxena
hi group, i am developing hindi graffiti on palm os. i need some guidance on it. do i just have to download hindi code pages,convert to .pdb format and store on the palm top? or is there a way to change the character encoding? or do i have to write a .txt file containing hindi glyph encoding and c

RE: How to print a UInt32

2002-03-01 Thread Bill MacAdam
Use StrPrintF -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 10:12 AM To: Palm Developer Forum Subject: How to print a UInt32 Hi, I would like to know the value of a UInt32 with WindrawChars (I can't use the debug to know the value).

RE: How to print a UInt32

2002-03-01 Thread Fergal Moran
You can't just cast a UInt32 to a char* they are not compatible Try this Char szL[10]; StrPrintF("%i", L); WinDrawChars(szL,StrLen(szL),10,120); Fergal. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 01 March 2002 16:12 > To: Palm Develo

How to print a UInt32

2002-03-01 Thread [EMAIL PROTECTED]
Hi, I would like to know the value of a UInt32 with WindrawChars (I can't use the debug to know the value). I have tried UInt32 L; WinDrawChars((char*)L,StrLen((char*)L),10,120); But it make a fatal exception. I have tried UInt32 L; StrCopy(codePhys,(const char*)L); WinDrawC

Re: AppForge unsupported functionalities

2002-03-01 Thread Frankie Chiang
You may try to use this software - Satellite Forms. Frankie - Original Message - From: "Mary Chabot" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 12:04 AM Subject: AppForge unsupported functionalities > I h

AppForge unsupported functionalities

2002-03-01 Thread Mary Chabot
I have an existing Visual basic application that makes use of collections. I store data in collections and I also store those collections into another collection. I must modify this application to work on a Palm VIIx. However the AppForge compiler does not support collections nor any variables d

Re: writing records

2002-03-01 Thread Joe
--- "c.d. jansen" wrote: > - > offset = 0; > DmWrite(RecordPtr, offset, LineB, sizeof(LineB)); > - > Now I get a fatal Alert > DataMgr.c line: 7025 > DmWrite: DmWriteCheck failed LineB i

RE: Bitmap buttons on PilRC

2002-03-01 Thread Yu, Ken [IT]
Thanks guys, your suggestions were really helpful. I'm changing the buttons to non-graphical with no label and using FORMBITMAP to draw the bitmap. It is working fine except for one thing: On POSE debug ROMs, highlighted push buttons with bitmaps are not redrawn in the selected state when expo

writing records

2002-03-01 Thread c.d. jansen
Hello, This is my code. DmOpenRefdbRef; CharLineB[20]; UInt16RecordNr; MemHandlerecordH; char * RecordPtr; int offset; dbRef = DmOpenDatabaseByTypeCreator('DATA', 'AlfA', dmModeReadWrite); RecordNr = 0; recordH = DmGet

Re: File Linking Error

2002-03-01 Thread Joe
--- cpssband cpssband wrote: > when i use Code Warrior to compile my project, i saw > this error: Link Error : main.c: 'MainFormHandleMenu' > 16-bit code reference at 'OnScanSettings' is out of > range. What does this means ?? That means it is time to switch to a multisegmented app. ___

Re: Generate Profiler Information

2002-03-01 Thread Dave Lippincott
Use the profiler version of Pose instead. (its included in the regular Pose distribution) - Original Message - From: "Sajul P. Nandakumar" <[EMAIL PROTECTED]> To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Friday, March 01, 2002 8:46 AM Subject: Generate Profiler Information > He

RE: XML Parser for C in Palm for CodeWarrior

2002-03-01 Thread Syed Najeebullah Hussaini
Thanks for giving me the link and helping. I have gone thru the XMl Lib. I was not able to understand how to use the XMLLibParse Function and how shud i give the XML Document to that handler present in it.. Will u pls send me some code snippet on that Thanks in Advance Syed -Original Message

Generate Profiler Information

2002-03-01 Thread Sajul P. Nandakumar
Hello All , To test the application performance I want to use "Generate Profiler Information" in CodeWarrior . I set the option "Generate Profiler Information " ON in 68k processor preference panel in CodeWarrior . But while building the project I am getting "_PROFILE_ENTRY" not defi

How can I check the Category of a record??

2002-03-01 Thread Glen Galen
I am rusty on C and masking operations. Can some helpful person tell me how I check the category of a record, given a pointer to it's handle? I'm stuck writing a function: UInt16 GetCategory(VoidHand) { } I found examples of how to SET it, but not how to read it! --- Glenn in Minneapolis

ControlStyleType

2002-03-01 Thread Paul Nevai
How can I find out the ControlStyleType of a ControlType in OS 5? /Paul N. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Pose BUG

2002-03-01 Thread Paul Nevai
Pose 3.4 BUT also previous versions... Macintosh and even the PC version run on VPC: if the Palm is turned off via the "ESC" key, then Pose freezes [dies]. Has this been known? It has been like this for at least a year, maybe longer. /Paul [pedit - LapTopHack - superFinderHack] -- For informat

UIObjectFill..

2002-03-01 Thread Prakash
Hi there, The UIColorSetTableEntry(UIObjectFill,&rgbObjectFill) sets the fill color for all objects! Is there a way to fill only the buttons? Any ideas? Thanks, Prakash __ Do You Yahoo!? Yahoo! Greetings - Send FREE e-cards for every o

File Linking Error

2002-03-01 Thread cpssband cpssband
Hi, everybody: when i use Code Warrior to compile my project, i saw this error: Link Error : main.c: 'MainFormHandleMenu' 16-bit code reference at 'OnScanSettings' is out of range. What does this means ?? thanks __ Do You Yahoo!? Yahoo! Greetings -

PalmOS 5.0 simulator & debugger

2002-03-01 Thread Alex Muratov
Hi! Palm claims that Palm Universal Debugger is available for download from Res Pavilion. But I can't find it there! I need to have it because I want to find some bug code where my application works incorrectly on PalmOS 5.0 simulator. I find out that neither Palm Debugger v3.6d7 from the latest S

Creating a custom PPK-keyboard layout

2002-03-01 Thread airwhale
Hi people, newbie in the house! I am located in Sweden and use an m505 with the PPK keyboard and the 1.6 driver from the ThinkOutside site. I want to re-map a few of the keyboard keys to some of those we use here, found in the Latin-1 supplement. For this purpose, I think creating a custom PPK l

Re: PrefGetAppPreferences beginner's question

2002-03-01 Thread Werner Poschenrieder
Genau! The databases' names are Saved Preferences, type == 'sprf', CreatorId = 'psys' Unsaved Preferences, type == 'pref', CreatorId = 'psys' Werner ;-) Robert McKenzie schrieb: > Yes. > > Actually, I believe (aber bin nicht ganz sicher) that they are stored in > separate datbases, one of whic

RE:Changing the label of a pop-up programmatically

2002-03-01 Thread Dinesh Kumar
Hi alanp you can use the following. //to set the label of the popup Trigger with the current selection of the list. //we have to use this CtlSetLabel here explicitly when we r inside popSelectEvent //otherwise it is normal behaviour of pop Trigger to set the label with selectedListText.

Re: Using Netlib... Code snippet to send data to server works but--reading buffer is causing problems

2002-03-01 Thread Max Campos
Marc, Net.Lib is based off of Berkeley Sockets, which is by far the most standard socket library in the world. You might want to look for a tutorial on Berkeley sockets, if you cannot find a Palm specific one. The APIs are basically identical (and are _literally_ identical if you follow