Overlay with OS 3.0?

2008-05-28 Thread Sebastian Voges
Can I get the Overlay functionality with Palm OS 3.5 by linking with the PalmOSGlue.lib ? The Palm OS Companion.pdf is not clear at this point(at least not for me) thanks, Sebastian -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see

how to implement a dynamic editable tree view

2008-05-28 Thread Sebastian Voges
the user almost don't realize the difference of 2 and 3. I assume this would be faster for scrolling since I can bitblit and do not have to move fields Any thoughts, ideas welcome !! Thanks, Sebastian -- Sebastian Voges DataViz Palm Development [EMAIL PROTECTED] http://www.dataviz.com

Re: How to detect Control-X, Control-C, Control-V on the Palm Stowaway keyboard

2008-05-28 Thread Sebastian Voges
Dave Carrigan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Sebastian Voges [EMAIL PROTECTED] writes: I am trying to detect the ctrl-x/c/v on the Stowaway keyboard. I do not receive any keyDown events when pressing these keys.( However I do get key events e.g. when pressing

How to detect Control-X, Control-C, Control-V on the Palm Stowaway keyboard

2008-05-28 Thread Sebastian Voges
Hi, I am trying to detect the ctrl-x/c/v on the Stowaway keyboard. I do not receive any keyDown events when pressing these keys.( However I do get key events e.g. when pressing ctrl-a) I do not use any Palm input fields, which handle the commands properly. thanks for any help, Sebastian

RE: allocation more than 64K

2004-03-29 Thread Sebastian Voges
On Mon, 29 Mar 2004 18:37:03 +0530, wax wacky wrote: thanks for your suggestions but i am facing a problem . I want to allocate a memory of 99KB. and MemGlueNewPtr() is failing. the pointer is getting a null value. Why this is happening?? Any advice please ... thanks wax you

Re: information regarding JAVA for TREO PalmOS

2004-03-26 Thread Sebastian Voges
On Fri, 26 Mar 2004 13:32:08 +0100, aline simonotti wrote: Hello I'm a JAVA developer and i'm seeking informations regarding Wireless JAVA (J2ME) over PalmOS for TREO mobile. Someone may help me please. I hava trouble to find informations about it. And I want if it's possible to develop

Re: Menu being displayed causes memory leaks - newbie question I'm sure!

2004-03-26 Thread Sebastian Voges
On Fri, 26 Mar 2004 10:59:04 +, Salli wrote: Hi, I'm testing my app on an emulator running Palm OS 3.0. If I'm in my app and I display the menu and then hit the launcher button I get an error saying that 2 memory leaks were detected. Does anyone have any ideas? Thanks very

Re: Records left locked... - not an easy case

2004-03-26 Thread Sebastian Voges
On Fri, 26 Mar 2004 10:00:46 +0100, Wojtek wrote: Hi. My app runs fine - till HotSync. Every launch after HotSync gives Records left locked in closed unprotected DB when I call DmCloseDatabase. I tried to check all records in this DB for dmRecAttrBusy just before closing - all records are

Re: tables with color rows - Someone Know ?

2004-03-25 Thread Sebastian Voges
On Thu, 25 Mar 2004 09:15:59 -0300, Roberto Pedrozo Mendes wrote: Hi How i put color in specific row or colunm in one table ? I resolve part of the problem when I invert the color of window but i would want to put colors in this row. Thanks Hi, do you use a custom draw function for your

Re: Calling Network Prefs Pannel and back to app

2004-01-08 Thread Sebastian Voges
On Thu, 08 Jan 2004 10:12:47 -0200, Régis Daniel de Oliveira wrote: Hy all How can I call the Network Preferences Pannel from my Application, and, after editing the setting, switch back to my app? Thanks all Régis Daniel de Oliveira Ben decribed that recently on his website:

Re: 'SetFieldText()' memory problem?

2004-01-07 Thread Sebastian Voges
On Wed, 07 Jan 2004 06:12:21 -0800, Joe Siebenmann wrote: Hi All, In my utilities, I have the 'stardard' SetFieldText() function: void SetFieldText(FieldPtr fldP, Char * string) { UInt16 size; MemHandle textH; Char * textP; size = StrLen((const

Re: Non-relocatable chunk leaked

2003-08-14 Thread Sebastian Voges
the dump from the log file is as following. any clue? thanks. 0.000: WARNING: 0.000: WARNING: Memory Leaks 0.000: WARNING: 0.000: WARNING: Begin Memory Leak Dump 0.000:

Re: HotSynk trouble

2003-08-14 Thread Sebastian Voges
On Thu, 14 Aug 2003 10:19:00 +0200, Eugene wrote: Hello, We are developing testing program on CodeWarrior 9.0. When we try to install prc file to Palm M550 it stops during HotSync operation. And it's written cleaning up on the palm screen. And then only hard reset helps. When we

Re: CtlNewControl textbuffer damaged of others under PalmOS 3.5 de ezdbg.rom

2003-06-27 Thread Sebastian Voges
I sequentially created a number of controls using CtlNewControl with labels A to Z: CtlNewControl(ppFrm, wIdCtl, pushButtonCtl, rtcBuf, Rect.topLeft.x, Rect.topLeft.y, Rect.extent.x,

Re: getting registered directories

2003-06-25 Thread Sebastian Voges
On Tue, 24 Jun 2003 20:03:31 -0400, Carlos Junco wrote: Is there a function for getting all the registered directories for a specific media type? (VFS) Hi, isn't there only *one* directory assigned to a specific media type?? at least that's how I understand it. VFSGetDefaultDirerctory()

Re: How to Implement Version Update

2003-06-25 Thread Sebastian Voges
On Tue, 24 Jun 2003 16:28:58 +0800, Andrew wrote: Hi All, The application we are doing now has been designed to have VERSION UPDATE function. It means that the application can download the latest version from server via network and then the running application replace itself with the new

Re: How to capture the left way and the right way of 5-ways button?

2003-06-24 Thread Sebastian Voges
On Tue, 24 Jun 2003 17:26:02 +0800, Sean Yang wrote: I know use 'vchrPageUp' and 'vchrPageDown' in kewDownEvent that can capture the up way and the down way, But I don't know how to capture the left way and the right way of 5-ways button? Hi Sean, there is a 5way-navigator sdk at the

offtopic: who can figure out this for loop

2003-06-24 Thread Sebastian Voges
Not really PalmOS related, but hey you can run it on your Handheld: int x = 1; for( int i = 0; i 100; ++i ); // What will the next line do? Increment???/ ++x; what's the value of x after this code ran on a standard c++ compiler? Sebastian -- For information on using

Re: offtopic: who can figure out this for loop

2003-06-24 Thread Sebastian Voges
2. why? for( int i = 0; i 100; ++i ); -- see that ';' the compiler interprets this code as: int x = 1; for (int i=0; i100; i++) { } ++x; basic C :) nice try Aaron, unfortunately not correct :-p Still looking for the correct answer :-)) -- For information on using

RE: offtopic: who can figure out this for loop

2003-06-24 Thread Sebastian Voges
2 close :-)) Look at the code carefully. Did I mention it is a trick question? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

RE: offtopic: who can figure out this for loop

2003-06-24 Thread Sebastian Voges
, 24 Jun 2003 15:36:01 -0400, Kevin OKeefe wrote: The semi at the end of the for loop makes it an empty loop, the formatting of the ++x is irrelevant, the answer is 2. -Original Message- From: Sebastian Voges [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2003 12:30 PM

RE: offtopic: who can figure out this for loop

2003-06-24 Thread Sebastian Voges
On Tue, 24 Jun 2003 15:44:38 -0400, Kevin OKeefe wrote: this slash '\' is continuation not '/'... I guess depending on the compiler it interprets '??/' as a'\' from: http://www.gotw.ca/gotw/086.htm T Nikolai Smirnov writes: Probably, what's happened in the program is obvious for you

Re: Need PDA Replacement

2003-06-24 Thread Sebastian Voges
On Tue, 24 Jun 2003 16:06:30 -0400, Dave Mottorn wrote: I developed an application for the Handera 330 that is now in beta test. Now that Handera has quit manufacturing we need a replacement. We need high resolution and we liked having two expansion slots - one for memory and another

RE: offtopic: who can figure out this for loop

2003-06-24 Thread Sebastian Voges
On Tue, 24 Jun 2003 15:43:17 -0500, Ben Combee wrote: I guess depending on the compiler it interprets '??/' as a'\' from: http://www.gotw.ca/gotw/086.htm CW will only interpret trigraphs if you turn on the Expand Trigraphs option in the C/C++ Language panel. The value of that switch

Re: How to decide if global variables are available when sysAppLaunchCmdAttention is received

2003-06-09 Thread Sebastian Voges
On Mon, 09 Jun 2003 19:28:14 +0800, Tony Cheung wrote: Hi All, I was having a problem with sysAppLaunchCmdAttention (received from Attention Manager). I would like to know if my application is active and if my global variables are available, when that launch code is received.

Re: Segments memory repartition with CWxx

2003-06-06 Thread Sebastian Voges
On Thu, 05 Jun 2003 14:17:50 +0200, Rodolphe Bréjaude wrote: Hello, I have trouble reparting my different sources .cpp into the 4 segments. What are the maximal size of each segment? Is there any rules to respect? I succeed the repartition, the exection is good on my Palm, but when I

RE: Memory problem and Zire debugging

2003-06-06 Thread Sebastian Voges
That's kind of like cleaning up the kitchen before burning down the house (or am I the only one who does that?). how many housed did you already burn down? You should talk to somebody about that... :-) sebastian -- For information on using the Palm Developer Forums, or to unsubscribe,

RE: problem writing to database (beginner)

2003-06-06 Thread Sebastian Voges
On Fri, 06 Jun 2003 15:01:45 -0500, denni wrote: Char * pChar = (Char*)MemPtrNew(5 * sizeof(Char*)); StrCopy(pChar, Orders\0); You have not allocated sufficient space in pChar. You probably don't want to say 5 * sizeof(Char *) as this allocates space for 5

Re: problem writing to database (beginner)

2003-06-06 Thread Sebastian Voges
On Fri, 06 Jun 2003 15:52:46 -0500, Matt Andreko wrote: ok, i've seen my mistakes there, and the application is running fine, no crashes. However, do you see any reason why in my data, there would be random letters placed there? i'm looking at the data when i'm pulling it off into a text

Re: Convert Codepage 932 (Japanese) to Unicode

2003-01-10 Thread Sebastian Voges
Hi Brian Brian Rhodes [EMAIL PROTECTED] wrote in message news:108398@palm-dev-forum... Does anyone have any experience converting Japanese characters on the Palm to Unicode characters on the PC? Do I need to just bite the bullet and make my own mapping table? If you do the conversion on the

Re: HandEra 330 POSE Now Available

2001-05-07 Thread Sebastian Voges
This version of POSE is based on the emulator 3.1 sources, and is currently only available for windows. Our modifications will be sent back to Palm for inclusion in future versions of the emulator. are there plans to release a Macintosh version in the near future( 1-3 month) ? best regards,

Re: OS 4 Debug ROM Error

2001-04-02 Thread Sebastian Voges
"Alan Ingleby" [EMAIL PROTECTED] wrote in message news:44337@palm-dev-forum... Lately, my gremlin runs have been bombing out with a "Form.c, Line:177, Form already loaded" error. All my form switching is done using FrmGotoForm, and I ignore all frmCloseForm events, making sure they get

PrvFixup Pointers Was: Re: Access to PalmOS structures

2001-03-26 Thread Sebastian Voges
http://www.escribe.com/computing/pcpqa/m36651.html I guess my question here would be: since you can set the font in the resource description or in the call to FrmNewControl, why do you need write access to that field? at some point we were forced *not* to use "New" functions to

Overlay with OS 3.0?

2000-11-20 Thread Sebastian Voges
Can I get the Overlay functionality with Palm OS 3.5 by linking with the PalmOSGlue.lib ? The Palm OS Companion.pdf is not clear at this point(at least not for me) thanks, Sebastian -- For information on using the Palm Developer Forums, or to unsubscribe, please see

how to implement a dynamic editable tree view

2000-11-10 Thread Sebastian Voges
the user almost don't realize the difference of 2 and 3. I assume this would be faster for scrolling since I can bitblit and do not have to move fields Any thoughts, ideas welcome !! Thanks, Sebastian -- Sebastian Voges DataViz Palm Development [EMAIL PROTECTED] http://www.dataviz.com

How to detect Control-X, Control-C, Control-V on the Palm Stowaway keyboard

2000-09-07 Thread Sebastian Voges
Hi, I am trying to detect the ctrl-x/c/v on the Stowaway keyboard. I do not receive any keyDown events when pressing these keys.( However I do get key events e.g. when pressing ctrl-a) I do not use any Palm input fields, which handle the commands properly. thanks for any help, Sebastian

Re: How to detect Control-X, Control-C, Control-V on the Palm Stowaway keyboard

2000-09-07 Thread Sebastian Voges
"Dave Carrigan" [EMAIL PROTECTED] wrote in message news:23393@palm-dev-forum... "Sebastian Voges" [EMAIL PROTECTED] writes: I am trying to detect the ctrl-x/c/v on the Stowaway keyboard. I do not receive any keyDown events when pressing these keys.( However I do get