Re: Scroll Bars w/Tables in PalmOS5

2002-12-11 Thread Henk Jonas
Hi, Or you are just a lazy guy and rip of some lines of code from the memopad example source from palmsource ;-) Henk kcorey wrote: On Tue, 2002-12-10 at 22:58, DeVon Fowler wrote: Are there any glue or helper functions to assist using Scroll Bars with a table in Palm OS5? Don't seem to be

Re: Palm OS 5.0

2002-12-11 Thread Henk Jonas
Yes, it can. But it is not certain, because things are changing and if the application is badly written it will crash. Henk Ai Lee Tang wrote: hi all, Can a PalmOS3.0 Application running on a Handheld with Palm OS5.0 ? rgds, ailee

RE: Project building error

2002-12-11 Thread Agus Silas
-Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]De la part de Ben Combee Envoyé : mardi 10 décembre 2002 19:05 À : Palm Developer Forum Objet : RE: Project building error At 18:36 2002-12-10 +0100, you wrote: Thanks Ben,

Re: Scroll Bars w/Tables in PalmOS5

2002-12-11 Thread kcorey
On Wed, 2002-12-11 at 08:05, Henk Jonas wrote: Or you are just a lazy guy and rip of some lines of code from the memopad example source from palmsource ;-) Hey, that makes too much sense. You stop that _at once_! Seriously though, the book is a great buy, assuming you have the time to read

debug on device

2002-12-11 Thread Chris Apers
Hi, How can i debug my program directly on my palm device. I try 'shortcut .. 2' with CW but nothing happened can you help me please thanx Chris -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: debug on device

2002-12-11 Thread prasadb
You must need to kill the hotsync program before debugging. The easy way to enter shortcut ..2 is tap find button on silk screen and enter shortcut ..2 in Find text field. I hope it solves ur problem. P:) -Original Message- From: Chris Apers [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

trouble in float type

2002-12-11 Thread palmosÐÂÎÅ×é
now i have trouble on operate on the float type my cw7 always tell me the error of _f_add underdefined ,who can tell me how to deal with this wrong message? some code i want to do : float x1; float x2; x2=x2+x1; x2=x2/x1; etc. -- For information on using the Palm Developer Forums, or to

RE: trouble in float type

2002-12-11 Thread prasadb
Use FloatMgr API: FlpCorrectedAdd()for adding two values, for help on API you can find in palmOS reference manual. regards Pbathini -Original Message- From: palmosÐÂÎÅ×é [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 2:18 PM To: Palm Developer Forum Subject: trouble in

TxtReplaceStr

2002-12-11 Thread Chris Apers
Does anyone know how TxtReplaceStr works ? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: trouble in float type

2002-12-11 Thread jason
i read something and i said that palmsdk support float and double ,and so i think i would not use apis ,the +,_,*,/ should do well, and i also read some program do so . - Original Message - From: [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Wednesday,

Font styles

2002-12-11 Thread prasadb
Hai all, How to implement italic and underline styles for a specific font in palm? I want to implement like this. If user selects a word in a texfield and taps on a button, the selected word should become italic or bold or underlined. any help ?. regards PBathini -- For information on using

Re: netLib feature

2002-12-11 Thread dex
In article 104528@palm-dev-forum, [EMAIL PROTECTED] says... I've the proble to verify if the connection with ISP fails because the line in busy. Is there anyone who can suggest me how to do it? I didn't find any reference on SDK. netlib should return an error code to you. Why

Re: using Visual Basic to program Palm OS

2002-12-11 Thread Matthew Bevan
What percentage of C programs do not contain or use one of: On a DOS, Windows, Linux, or handheld machine? It makes a fair difference. libc DOS/Linux: nothing but. Windows: I use Delphi, so.. no. Palm: I don't need to. If I find a function not available in the OS, either I write my own,

Re: nilEvent and PopUp

2002-12-11 Thread James
Gonzalo Piano wrote in message news:104564@palm-dev-forum... I have the following problem, I have a form with a PopUp and a List. What do you mean? You have a poup list and a normal, non-popup list? or a popup trigger and a popup list? The PopUp is associated with that List. Unless you mean

gadget enter Event

2002-12-11 Thread prasadb
Hai all, when tap on a gadget, iam trying to catch a gadgetenterEvent. But its not firing at all. Any help? Thanks PB -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: using Visual Basic to program Palm OS

2002-12-11 Thread Aaron Ardiri
PalmOSRuntime_2i_A5.lib Eh? My C code uses no runtime files, though may have GLIB library code compiled in. Did you know that Metrowerks uses a compiled-in runtime file? (which may, in fact, be what you are talking about here...) There are no 32-bit add/sub/mul/div operations in the 68k

Re: using Visual Basics to program Palm OS [long]

2002-12-11 Thread George Henne
There is also something called NSBasic (www.nsbasic.com) - using the BASIC sytnax. Is that not an IDE or is it not Visual Basics? Take the S off of that, and it works ;P I have to admit, NSBasic looks good. It seems, however, that is standard BASIC, not Visual Basic in structure. I feel

Re: NSBasic

2002-12-11 Thread George Henne
I'd be the last person to say that any devtool is one size that fits all. PocketStudio (as I understand it) is a good choice for those who want to work directly with the Palm APIs in a Pascal context. There's no reason to take it off-line. You can't convince me that it is fast or that the

mobilewizardry.com

2002-12-11 Thread Dustin Davis
in regards to creating small programs, yes, you can do it - however, if you want globals and multiple code segments, you'll need something like this library to link against :) most of the demo's submitted in the competition (http://www.mobilewizardry.com/palm/contest/) were actually not

Receive SMS

2002-12-11 Thread geeta more
Hi all , i am working on Palm OS 4.1 ... i want , instead of Palm inbuilt SMS application , my application should receive SMS ... this is the code error = ExgRegisterDatatype ( appFileCreator, exgRegExtensionID,kSmsMessageRegExtensionType\tkSmsReportRegExtensionType, NULL , 0 );

Re: mobilewizardry.com

2002-12-11 Thread Aaron Ardiri
in regards to creating small programs, yes, you can do it - however, if you want globals and multiple code segments, you'll need something like this library to link against :) most of the demo's submitted in the competition (http://www.mobilewizardry.com/palm/contest/) were actually not

Re: mobilewizardry.com

2002-12-11 Thread Dustin Davis
heh.. they are not all my programs. Yeah, I know their not yours, but I was speaking of the programs on Ardiri.com and, of course, PilRC. Dustin Davis http://www.shiblon.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: using Visual Basics to program Palm OS

2002-12-11 Thread Stringer
Laurent THALER writes: It still uses a runtime module - and there is no excuse for that when you use C. From: Ron Nicholson [EMAIL PROTECTED] What percentage of C programs do not contain or use one of: libc stlib stdio PalmOSRuntime_2i_A5.lib MathLib.prc Wow, what a weird

Re: using Visual Basics to program Palm OS

2002-12-11 Thread Dustin Davis
If you can't write in C then by all means use one of the other programming languages, but don't moan about runtime modules or code size. This is why I would advocate learning C. There is a learning curve with any language you choose to use if you are new to the Palm. I'm just suggesting

Re: mobilewizardry.com

2002-12-11 Thread Aaron Ardiri
heh.. they are not all my programs. Yeah, I know their not yours, but I was speaking of the programs on Ardiri.com and, of course, PilRC. ahh :) well, the ardiri.com games - they are fun. but, we do this as hobbyists, not fulltime [we could *love* to do it fulltime, but, no $$$] we like

Re: gadget enter Event

2002-12-11 Thread Dave Lippincott
I'm not familiar with the 'gadgetenterEvent' event, I cannot find it in any of the OS headers. Are you sure this is a valid OS event? Is the gadget set to usable? Are you using it on pre or post OS 3.5 devices? Have you looked at the examples in the Knowledgebase?

PDB conversion problem from PalmV to PalmVx and vice versa

2002-12-11 Thread Alex Gusev
Hi all, I've ran into strange problem: 1. I create pdb on PalmV device (OS 3.5) 2. Back it up to desktop via HotSync 3. Install this pdb to PalmVx device The result: number of records is changed (decreased), actually only 1 record is left. If I use POSE with ROMs from these devices - all

Help

2002-12-11 Thread CLCurrySr
help set palm-dev-form name=Craig Curry set comm-dev-forum name=Craig Curry -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: Retrieving floats

2002-12-11 Thread Colin Mitchell
i was successful in connecting to the palm database and retrieving the records using the ReadNext method.. Using the function ByteArrayToBSTR i was able to retrive the string values.. but then i have problem in retrieving Floating point values from the ByteArray. Don't you have a

Printing Question

2002-12-11 Thread Karla Garcia
Hi I have a question , I hope Somebody can help me, I don't know if anybody have an idea , How can I print in my application , Using the IrDA interface of my Palm with 4.0 O.S. to a Cannon BJC-55 Bubble Jet Printer?, Thanks in advance -- For information on using the Palm Developer

Re: Runtime/compiletime libraries [was: ...Visual Basic...]

2002-12-11 Thread Matthew Bevan
this is a Metrowerks specific file, and, most likely, you'll link it. its all the startup code for your application. there are different libraries depending on what type of application you have (multisegment etc) As I thought. The source code for the library is an interesting read, and an

Re: Retrieving floats

2002-12-11 Thread Suman
i am doing it in VB...can u suggest me someway to do this dataconversion in VB.. any code snippet for data conversion is greatly appreciated.. thanks in advance Suman. Henk Jonas [EMAIL PROTECTED] wrote in message news:LYRIS-55972-139225-2002.12.10-23.57.45--sumankumar2k#[EMAIL PROTECTED]

Re: GSMLibrary usage

2002-12-11 Thread Steve Mann
I searched around the site but could not find any document about the GSMLibrary. There is a sample called SampleDialer which just starts the default application to dial the number. However that is not what I need. Also there is a document describing how to use the SMS Library but nothing for the

Re: mobilewizardry.com

2002-12-11 Thread Craig Belson
Ok, I know we've kind of moved away from the MW(and I don't mean Metrowerks *s*) part of this discussion, but seeing as I'm already past the email that talked about it, I'm putting my comments here. :-) Yeah, some of the stuff is pretty impressive - and some of the stuff, like Mirrordraw, isn't.

Re: netLib feature

2002-12-11 Thread Steve Mann
Unfortunately no error code tells ms if the line is busy. In the 4.0 SDK documentation (around page 1260) you can find: You're assuming that the error codes are all described and that the descriptions are all accurate. :-) I would encourage you to try opening Netlib when the line is busy and

Re: debug on device

2002-12-11 Thread Ben Combee
At 09:26 2002-12-11 +0100, you wrote: Hi, How can i debug my program directly on my palm device. I try 'shortcut .. 2' with CW but nothing happened What device? What kind of interface (serial or USB)? What version of CodeWarrior for Palm OS? -- Ben Combee [EMAIL PROTECTED] CodeWarrior for

Re: trouble in float type

2002-12-11 Thread Ben Combee
At 16:48 2002-12-11 +0800, palmosÐÂÎÅ×é wrote: now i have trouble on operate on the float type my cw7 always tell me the error of _f_add underdefined ,who can tell me how to deal with this wrong message? some code i want to do : float x1; float x2; x2=x2+x1; x2=x2/x1; etc. In the 68K

Re: using Visual Basic to program Palm OS

2002-12-11 Thread Ben Combee
At 21:46 2002-12-10 +, you wrote: you can generate frighteningly small code in Metrowerks if you remove the standard library included by default in every project. ;) Yes, but you may not be able to load multiple segments, use C++ exceptions or new/delete, have static initialization for C++

Re: mobilewizardry.com

2002-12-11 Thread Ben Combee
At 14:28 2002-12-11 +0100, you wrote: heh.. they are not all my programs. but, yes, some of them do push the limits of the technology out there *g* but, if your gonna tweak; you tweak :) most of these programs DO-NOT get the approval of Palm people :) Hmmm... does that mean that my HandMatrix

Re: using Visual Basic to program Palm OS

2002-12-11 Thread Aaron Ardiri
Yes, but you may not be able to load multiple segments, use C++ exceptions or new/delete, have static initialization for C++ objects, or support longjmp and exit if you skip the CW runtime. We still supply the minimal StartupCode.lib for tiny C applications, and most of the entries in the

How to detect if a database is protected

2002-12-11 Thread Mike McCollister
I can protect a database using DmDatabaseProtect but how do I detect if it is protected? Thanks, Mike McCollister __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- For information on using the

Re: mobilewizardry.com

2002-12-11 Thread Aaron Ardiri
but, yes, some of them do push the limits of the technology out there *g* but, if your gonna tweak; you tweak :) most of these programs DO-NOT get the approval of Palm people :) Hmmm... does that mean that my HandMatrix wins the Under 1K and works great on the Tungsten T award? :) heh. i

ui colors

2002-12-11 Thread David Eyler
hi, I don't like the some of the user interface colors that are present in the emulator and simulator. Specifically the pink background and light green lists and buttons. I know that I can change these, and what I've done is taken colors from other user interface elements and used those instead.

Re: ui colors

2002-12-11 Thread Brian Smith
On Wed, 11 Dec 2002, David Eyler wrote: My question is can I count on my user interface looking the same on all color devices? i.e. are the default system colors, such as the alert fill and frame colors, the same on every color Palm OS device or do they vary with respect to OS version or

Symbol and PalmOS

2002-12-11 Thread Steven M. Jerrett
Has Symbol abandoned new devices running PalmOS? Another developer logged on to their site and found a huge number of Windows CE and Pocket Windows 2000 devices. Steve Jerrett Systems Analyst City of Columbia, MO -- For information on using the Palm Developer Forums, or to unsubscribe, please

Memory Bus Error while reading form a database

2002-12-11 Thread mlv srinivas
Hi all, I created a database, I'm able to insert the data into that database with out any problem, while I'm trying to read the data and printing on a new page I'm getting some Memory Handle Errors, here is my code: ProjectNameGetProject(UInt16 index) { MemHandle mh; char* pText; UInt16 x ;

tables - looking for advise

2002-12-11 Thread christy
Finally, I am ready to code the search results. I am glad that I am a lot more proficient in areas other than Palm. Otherwise I'd be fired by now. Anyhow, this is what I have in mind. For every match, I would display it in 1 row with 3 columns (three boxes next to each other). In every cell (each

ANN: Catapult installation kit 2.25 released

2002-12-11 Thread Bobby Kolev
A quick note for everyone using the Pilot Catapult installation kit: Version 2.25 has been released a few days ago. Two bugs have been fixed and the executable's icon got some face lift, but that was about it, it is a maintenance release. Probably the biggest news is that the Public version has

Re: tables - looking for advise

2002-12-11 Thread David Eyler
Christy, 1) it sounds like you should probably give the table the maximum number of rows that will ever show on the screen, and set them to not usable at run time if you don't need them 2) and 3) If the text isn't editable, I think you would be better off just using a customTableItem for the

RE: tables - looking for advise

2002-12-11 Thread Robert McKenzie
David is right. In particular, the number of rows is ALWAYS the maximum number of rows you EVER want to display on screen. When you wish to have more rows than fit onto the screen, you actually scroll the data through your rows (not the rows through the screen) -- i.e., now your row #1 points

RE: tables - looking for advise

2002-12-11 Thread christy
Thank you very, very much David and Bob for your advice. Although I have tons of other questions, at lease I know I am heading to the right direction. --- Robert McKenzie [EMAIL PROTECTED] wrote: David is right. In particular, the number of rows is ALWAYS the maximum number of rows you EVER

Re: Memory Bus Error while reading form a database

2002-12-11 Thread Hal Mueller
At 6:12 PM + 12/11/02, mlv srinivas wrote: mh = DmQueryRecord( db, index ); pText = (char*)MemHandleLock(mh); WinDrawChars(pText,StrLen(pText),width,height); height=height+10; MemPtrUnlock( pText ); DmReleaseRecord( db, index, true ); It would be easier to figure this out if you had told

Re: Retrieving floats

2002-12-11 Thread Suman
Can someone provide with a code snippet to convert the data to float in VB.. Thanks. Suman. - Original Message - From: Colin Mitchell [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Wednesday, December 11, 2002 9:22 PM Subject: RE: Retrieving floats i was

Re: Scroll Bars w/Tables in PalmOS5

2002-12-11 Thread Dawn Margerum
Save yourself alot of time and buy POL 4.x It has a very nice grid object that will do things like scrolling for you automatically. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Scroll Bars w/Tables in PalmOS5

2002-12-11 Thread Ben Combee
At 14:18 2002-12-11 -0500, you wrote: Save yourself alot of time and buy POL 4.x It has a very nice grid object that will do things like scrolling for you automatically. You can also update to CodeWarrior Development Studio for Palm OS, Version 9 -- it includes POL 4 as part of the standard

Re: Symbol and PalmOS

2002-12-11 Thread Dawn Margerum
I was wondering the same thing. I have customers asking for color symbol palm devices. There drivers hate the mono screens. - Original Message - From: Steven M. Jerrett [EMAIL PROTECTED] To: Palm Developer Forum [EMAIL PROTECTED] Sent: Wednesday, December 11, 2002 1:06 PM Subject:

debugging on i705

2002-12-11 Thread Paul B . Johnson
I looked through the archives but couldn't find a direct answer to this: is it possible to debug directly on an i705 (USB) device using CW 8 ? TIA, Paul -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Symbol and PalmOS

2002-12-11 Thread Douglas Handy
I was wondering the same thing. I have customers asking for color symbol palm devices. There drivers hate the mono screens. That's why I always liked the Handspring Prism with a Symbol CSM150 module. The screen has excellent visibility -- indoors. Too bad Handspring quit making them... Doug

Re: debugging on i705

2002-12-11 Thread Ben Combee
At 14:37 2002-12-11 -0500, you wrote: I looked through the archives but couldn't find a direct answer to this: is it possible to debug directly on an i705 (USB) device using CW 8 ? No, and it is not possible on CodeWarrior for Palm OS V9 or using Palm Debugger. We did extensive tests with

RE: gadget enter Event

2002-12-11 Thread Kevin OKeefe
He probably meant frmGadgetEnterEvent. -Original Message- From: Dave Lippincott [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 6:17 AM To: Palm Developer Forum Subject: Re: gadget enter Event I'm not familiar with the 'gadgetenterEvent' event, I cannot find it in any of

RE: How to detect if a database is protected

2002-12-11 Thread Kevin OKeefe
Try to delete it and get the dmErrDatabaseProtected error code? It doesn't appear that there is a public method for doing this... -Original Message- From: Mike McCollister [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 9:49 AM To: Palm Developer Forum Subject: How to

RE: How to detect if a database is protected

2002-12-11 Thread Mike McCollister
Kevin, Thanks. I don't get that error when I try to delete something but I get an error on the debug OS 5 simulator. Thanks, Mike --- Kevin OKeefe [EMAIL PROTECTED] wrote: Try to delete it and get the dmErrDatabaseProtected error code? It doesn't appear that there is a public method for

Re: ui colors

2002-12-11 Thread JB Parrett
The UI colors you see exist only in the debug ROMs - each UI element has its own (ugly) color so you can tell when something isn't drawn/redrawn properly and if graphics transparency isn't set correctly. Use the debug ROMs for most of your development, because of the added error checking and

Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread Ron Nicholson
someone wrote: I feel that BASIC is a bit of a kludge (i.e. poor choice) of a language for very small devices. The 70's versions of BASIC (and Forth) were designed for small devices (when you needed to develop programs on the device). BASIC ran on 8k Altairs and 16k Apple II's, no C compiler

Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread Dustin Davis
Well it looks like we have a BASIC expert... Anyone can write a program in a language they are familiar with. You know C. Other people know Basic much better. Some know Pascal or Perl, etc better. Some people can write books in Latin. Yeah, I'm still waiting for someone to release a

Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread Steven M. Jerrett
Dustin Davis wrote: Well it looks like we have a BASIC expert... Yeah, I'm still waiting for someone to release a perl-Pk (Palm Kit) module :o) Hey, and maybe Microsoft can give us a feature in Access to export to palm... Don't hold your breath on that one. They're trying to swallow up

Flushing the event queue

2002-12-11 Thread htn
Hi, How do I flush (clear) all the events related to my app. programmatically? Thanks, ht -- -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

About full RS232 use

2002-12-11 Thread Gilles Petit
Hi all, I got a very simple question about Palm m505. It seems that the craddle port got RxD and TxD but also CTS, RTS and DTR. So my question is do someone knows how I can set one of those last pin to 1 or 0 state? (I use CodeWarrior for Palm Os 7.0) Thanks Gilles -- For information on using

Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread kcorey
I can't believe I'm playing in the flame-baiting sandbox, but what the heck. My basic position is that if you only know one language, you haven't begun to explore the space. Arguing passionately for a single language means either 1) you make your money from that language or 2) you haven't

Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread kcorey
*smile* Depending on your language religion, you may/may not find this interesting...but there's a Tcl/Tk port to the palm. (http://palm-tcl.sourceforge.net). As I understand it, you do the development on the PC and it gets compiled and then sent to the Palm. Some people consider the problem

Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread Paul R.
...but I've been a card carrying geek (tete d'ampoule) for a while now. Bulb head? That's a weird one. Does it imply egghead? (tête d'oeuf?) (Along with the .NET library for the Palm, of course). It'll be the solution to all our language tribulations! The Monopoly rolls on. Reminds me of the

Re: How to detect if a database is protected

2002-12-11 Thread ScottP
Mike, Not sure what the situation is that you want to know if it's protected, but you could try... 1) On OS4 listen out for the sysNotifyDeleteProtectedEvent when you try to delete it. 2) Call DmDatabaseProtect(cardNo, dbID, false) and see if it returns errNone or dmErrDatabaseNotProtected.

Re: TxtReplaceStr

2002-12-11 Thread ScottP
Chris, What did you want to know aside what is already in the Palm OS Reference document ..? Cheers, Scott Chris Apers [EMAIL PROTECTED] wrote in message news:104647@palm-dev-forum... Does anyone know how TxtReplaceStr works ? -- For information on using the Palm Developer Forums, or to

Re: using Visual Basic to program Palm OS

2002-12-11 Thread Ron Nicholson
kcorey writes: Arguing passionately for a single language means either 1) you make your money from that language or 2) you haven't explored enough. Sorry. I jumped into this thread late. I thought it was a C programmer who suggested that the only programming language with which one should

NULL string message after calling FrmAlert

2002-12-11 Thread Rooster
I wonder if anyone can help me with this problem. I'm getting the message StringMgr.c, Line: 333, NULL string passed after calling FrmAlert( ImportCompleteAlert ); in my code. ImportCompleteAlert has a valid resource ID of 2008. The alert form shows fine but after I click 'OK' I get the

Re: NULL string message after calling FrmAlert

2002-12-11 Thread Ben Combee
At 17:24 2002-12-11 -0700, you wrote: I wonder if anyone can help me with this problem. I'm getting the message StringMgr.c, Line: 333, NULL string passed after calling FrmAlert( ImportCompleteAlert ); in my code. ImportCompleteAlert has a valid resource ID of 2008. The alert form shows fine

Re: How to detect if a database is protected

2002-12-11 Thread Matthew Bevan
Not sure what the situation is that you want to know if it's protected, but you could try... If you're writing a file manager for VFS, you need to know this if you want to copy a file from the card to RAM (if you want to be nice and tell the user things). Deleting the file would be

Re: About dialer on treo series

2002-12-11 Thread Miken
please help me ,and thanks -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Flushing the event queue [RTFM]

2002-12-11 Thread Matthew Bevan
How do I flush (clear) all the events related to my app. programmatically? This has been asked in the past (it may even have been you.) RTFM, my friend. I did a search on the API Reference index page for Flush, and the first thing I found was what I was looking for. Examine the manual pages

FrmPopupForm issues

2002-12-11 Thread Matthew Bevan
I'm having issues returning from a form called by using FrmPopupForm. Here's snippits of my code: In my main form menu handler: case EditPrefs: FrmPopupForm(PrefsForm); handled = true; break; In my application event handler: switch ( uiFormId ) {

Adding custom hotsync button

2002-12-11 Thread Johnny
Dear All, I was wondering what function I could call that will initiate a hotsync operation with the hotsync manager. The reason I want this is because I need to be able to start a hotsync session as soon as I click on a button. Any ideas will be very much appreciated. regards Johnny -- For

Palm Mail

2002-12-11 Thread Tom
Hi, Does anyone know if Versamail makes use of the same MailDB database as Palm Mail did? Thanks, Tom -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

getting consecutive frmLoadEvents

2002-12-11 Thread Richard Coutts
I have a bug that I've been trying to nail down for over a week now, but don't seem to be any closer than I was when I started. The problem surfaces when running gremlins. Typically, when my app exits, the main event loop gets an appStopEvent and does some house cleaning before exiting (I

Re: Adding custom hotsync button

2002-12-11 Thread Oliver
I was wondering what function I could call that will initiate a hotsync operation with the hotsync manager. The reason I want this is because I need to be able to start a hotsync session as soon as I click on a button. Any ideas will be very much appreciated. You don't explicitely say

Re: FrmPopupForm issues

2002-12-11 Thread Oliver
Your code looks just like mine (pretty standard, as you said), except that I tend to use FrmReturnToForm(0); instead of FrmReturnToForm(MainForm); (not sure if that could make a difference, though). Oliver __ Do you Yahoo!? Yahoo! Mail

RE: gadget enter Event

2002-12-11 Thread prasadb
Yeah right, its frmGadgetEnterEvent. Sorry for the typo. PB -Original Message- From: Kevin OKeefe [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 1:17 AM To: Palm Developer Forum Subject: RE: gadget enter Event He probably meant frmGadgetEnterEvent. -Original

Re: FrmPopupForm issues

2002-12-11 Thread Matthew Bevan
FrmReturnToForm(0); When I first looked at that I went Gah!, as I always thought it required the ID of a form... RTFM, and I disover otherwise. Spiffy. FrmReturnToForm(MainForm); (not sure if that could make a difference, though). It didn't. What -did- make a difference is replacing

RE: gadget enter Event

2002-12-11 Thread Ben Combee
At 10:02 2002-12-12 +0530, you wrote: Yeah right, its frmGadgetEnterEvent. Sorry for the typo. This event will only be sent directly to a gadget event handler when you have a custom gadget on Palm OS 3.5 or later. If you're doing a generic gadget handler for any OS, you'll need to catch

Re: FrmPopupForm issues

2002-12-11 Thread Ben Combee
It didn't. What -did- make a difference is replacing FrmPopupForm and FrmReturnToForm with FrmGotoForm. Now it works without -any- problems. What a stupid git problem this is. Is there any reason I should stick with Popup/Return instead of going with Goto now? Will I melt if I stay with

Re: Help

2002-12-11 Thread Craig Curry [EMAIL PROTECTED]
--- In [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: help set palm-dev-form name=Craig Curry set comm-dev-forum name=Craig Curry -- Forget this message. My mistake, sent to wrong address. For information on using the Palm Developer Forums, or to unsubscribe, please see

RE: gadget enter Event

2002-12-11 Thread prasadb
Thanks for the info. PB -Original Message- From: Ben Combee [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 10:54 AM To: Palm Developer Forum Subject: RE: gadget enter Event At 10:02 2002-12-12 +0530, you wrote: Yeah right, its frmGadgetEnterEvent. Sorry for the typo.

Re: Re: using Visual Basic to program Palm OS [long]

2002-12-11 Thread kcorey
On Wed, 2002-12-11 at 22:25, Paul R. wrote: ...but I've been a card carrying geek (tete d'ampoule) for a while now. =20 Bulb head? That's a weird one. Does it imply egghead? (t=EAte d'oeuf?) *smile* I was just on a contract in Switzerland. The first French word I learned from a native was what

Re: NULL string message after calling FrmAlert

2002-12-11 Thread Jim
Do you mean the message text? No. The text is Import Complete. See log for details. Ben Combee [EMAIL PROTECTED] wrote in message news:104787@palm-dev-forum... At 17:24 2002-12-11 -0700, you wrote: I wonder if anyone can help me with this problem. I'm getting the message StringMgr.c,

Tagging subject lines... [short] ;)

2002-12-11 Thread Matthew Bevan
Just a small request, only tag messages as [long] if they are. Another one: [rant] - dennis leary style [superfluous] More could be [chaff], [crap], or [bumf]... ;) Any others that might (hopefully) become common useage? I usually leave [long] messages until the end, and read [typo] messages

Re: Printing Question

2002-12-11 Thread Markus Dresch
hi karla, there are a few printing applications out there that would do the job (printboy, irprint,...). you may also want to check out my printing library (XIrPrintLib) at www.palmside.com markus dresch (www.palmside.com) -- For information on using the Palm Developer Forums, or to

Re: Symbol and PalmOS

2002-12-11 Thread Louis
At 12:06 PM 2002-12-11 -0600, you wrote: Has Symbol abandoned new devices running PalmOS? Another developer logged on to their site and found a huge number of Windows CE and Pocket Windows 2000 devices. They have had the Pocket PC devices for a long time now. My feeling is that they wont do