Re: Moving from emulator to device

2002-07-16 Thread Jake Donham
Nihar == Nihar Desai [EMAIL PROTECTED] comments: Nihar Basically is there any documentation which says that this Nihar will work on the emulator but not on the device or Nihar viceversa? I am paranoid because we had a very bad Nihar experience with Microsoft's WinCE emulator.

Re: online emulator for Palm OS

2002-06-13 Thread Jake Donham
Manohar == Manohar Chapalamadugu [EMAIL PROTECTED] muses: Manohar Dear all I am planning to develop an online emulator so Manohar that clients can first check the software online and then Manohar invest to buy the product. I would be glad if someone can Manohar give me a rough

Re: Invoking an app. after Sync

2002-05-23 Thread Jake Donham
changed. -- Jake Donham I hasten to shout to you across our orbiting earth. http://www.bitmechanic.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Two Poser features to check out

2002-04-25 Thread Jake Donham
Chris Tutty [EMAIL PROTECTED] writes: From: Terry Dennis [EMAIL PROTECTED] Are there any plans (or, better yet, does a feature already exist) to implement a record stuff during debug feature that will allow playback to recreate bugs? I'm looking at putting work into this to implement

Re: Basic C question

2002-04-02 Thread Jake Donham
Ed == Ed [EMAIL PROTECTED] scribbles: Ed This works StrCopy(record.Date, Ed 34857384573498573498); This fails = Ed StrCopy(record.Date, encDate); It says that Application just Ed read from memory location X which is the unused portion of the Ed

Re: Basic C question

2002-04-02 Thread Jake Donham
Jake == Jake Donham [EMAIL PROTECTED] asserts: Jake What is the real declaration of Record? Sounds like you are Jake writing off the end of the array, and hence the stack. Um, retract :). Jake -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Re: Dynamic UI

2002-03-27 Thread Jake Donham
dan == dan mason [EMAIL PROTECTED] comments: dan You have to define an underlined font. [...] Or you can use WinSetUnderlineMode(). Jake -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: color map for offscreen windows?

2002-02-14 Thread Jake Donham
Jake == Jake Donham [EMAIL PROTECTED] mentions: Jake Hi, I'm having a problem where color operations on an Jake offscreen window sometimes don't take effect, and things are Jake drawn in the wrong color. When I run my app on a debug rom Jake (e.g. 3.5.1) it gives me an error

Re: Automated testing tools

2001-12-12 Thread Jake Donham
On Wed, 12 Dec 2001, Chris Tutty wrote: As someone searching for a way to automate our release testing I'd certainly vote for this as a good feature for POSe to have. Is there somewhere these patches could be posted for those interested in applying them? Patches against POSE 3.2 are at

Re: Automated testing tools

2001-12-11 Thread Jake Donham
On Tue, 11 Dec 2001, David Barkovic wrote: I'm currently evaluating tools for automated palm OS application regression testing. Besides POSEs scripting capabilities, I have not found much for automated testing tools. I'm leaning toward TestQuest Inc's TestQuest Pro System for the Palm OS.

Re: Automated testing tools

2001-12-11 Thread Jake Donham
On Tue, 11 Dec 2001, Keith Rollin wrote: At 11:10 AM -0800 12/11/01, Jake Donham wrote: I have written some patches to POSE to allow capturing user events from it over a socket connection, and Java APIs for this interface and the scripting interface. Together they make it very

Re: use of new and delete

2001-12-03 Thread Jake Donham
On Mon, 3 Dec 2001, Richard Bell wrote: I'm using C++ for my Palm OS application and was wondering if using new and delete for creating/destroying pointers to classes is the right approach. I would rather create a handle and lock unlock it when I access the class, are there any issues with

Re: Is this ok?? Data in a database

2001-12-03 Thread Jake Donham
On Mon, 3 Dec 2001, Johnathan Smith wrote: typedef struct { Char title[45]; } textRec; StrPrintF( tempRec.title, Row %d, i +1); DmWrite (rec, 0, tempRec, sizeof (tempRec)); Why is insider showing funny text on the lines?? You've written 45 bytes but only filled in the first 6-8

Re: Urgent problem

2001-11-19 Thread Jake Donham
On Mon, 19 Nov 2001, [EMAIL PROTECTED] wrote: For example, I have the cardNo and the dbID(I think) but after I can't have the name. char *Name=NULL; DmDatabaseInfo(cardNo,dbID,Name,NULL,NULL,NULL,NULL, NULL,NULL,NULL,NULL,Type,Creator); You need to pass DmDatabaseInfo a pointer to

Re: Urgent problem

2001-11-19 Thread Jake Donham
On Mon, 19 Nov 2001, [EMAIL PROTECTED] wrote: I have just a small problem, it works for all my arrays but not for my char *TabName[100], In this array it's always the same result for each fields of the array(the last one). Maybe I must allocate memory for this dynamic array, but I don't

Re: Saving structs to a database

2001-10-19 Thread Jake Donham
On Fri, 19 Oct 2001, gordingin wrote: typedef struct tag_DebugMessage { CharszTime[timeStringLength]; CharszDate[dateStringLength]; CharPtr pszMessage; } DEBUGMESSAGE, *pDEBUGMESSAGE; Here is my code that saves it. Err iErr =

Re: Event record/playback for automated demos

2001-08-31 Thread Jake Donham
On Fri, 31 Aug 2001, David Watson wrote: Does a tool exist which would allow a user to record an interaction with an app (in the Emulator and/or a real PalmOS device), and then play it back with the same amount of time between events, so the application would appear to run itself? I have

Re: C++ this - pointer gone lost

2001-08-27 Thread Jake Donham
Werner == Werner Poschenrieder [EMAIL PROTECTED] inscribes: Werner virtual protected MyObject::Member1( EventPtr pEvent ) { Werner Member2( ); Werner } private MyObject::Member2( void ) { Werner // operate on some members and local vars Werner } Werner