Re: New Category Addition

2007-05-11 Thread Michal Seliga
no, its not what i need , unfortunately example of what i need is to show list of contacts and there should be popup list of categories. but in this generated list which contains 'all',categories from contacts and 'unfiled' i want to add 'sim card contacts' and some predefined filters another

Re: Distributing a Palm OS Hack

2007-05-11 Thread Denis Faivre
Direct patching is IMHO a risky practice, because you cannot be sure that patching and, more than anything, unpatching, will be performed the same way by all applications. How about distributing a third-party hack manager? X-Master's manual says: X-Master is freeware. You can freely use it and

re: netErrTimeout error ????

2007-05-11 Thread sheshu
increase AppNetTimeout variable to 100. and see. if again you got this do the send in loop till you not get timeout -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

Re: Can shared library use class object?

2007-05-11 Thread zhaoweillhch
Thanks Sagar Mody. I use your method, it works good! -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/

system font change

2007-05-11 Thread Hynek Sladky
In one application I need to replace system font in menu. Is there any way how to do it? Application must work in OS3.5 - OS5.x It should be in one application only so YAHM+FontHack isn't the right solution... Thanks, Hynek Sladky -- For information on using the ACCESS Developer Forums, or to

Re: prc-tools and multisegment application and SysAppLaunch command

2007-05-11 Thread Michal Seliga
update, i must admit i don't have idea what exactly i was doing, but i tried to modify .ld file generated by m68k-pamos-multigen so all segments go to one coderes SECTIONS { wM1K : { *(.text) } coderes wTAMA : { *(.text) } coderes wWDI : { *(.text) } coderes

Re: prc-tools and multisegment application and SysAppLaunch command

2007-05-11 Thread Aaron Ardiri
On 5/11/07, Michal Seliga [EMAIL PROTECTED] wrote: main.prg: entry point 0xb79c too distant move your main function towards the start of the code segment. 0xb79c = 47004. this value should be, at maximum 32767, the limit of the relative jump on 68k -- // Aaron Ardiri -- For

Re: prc-tools and multisegment application and SysAppLaunch command

2007-05-11 Thread Michal Seliga
its something completely wrong, even after my changes to .ld file, generated .prg file is still with more segments bash-3.2$ m68k-palmos-objdump.exe -h main.prg main.prg: file format coff-m68k Sections: Idx Name Size VMA LMA File off Algn 0 wM1K

Re: system font change

2007-05-11 Thread Michal Seliga
probably most simple way would be to hide menu completely and use your own popup list instead? (you can open it on frmTitleSelectEvent) Hynek Sladky wrote: In one application I need to replace system font in menu. Is there any way how to do it? Application must work in OS3.5 - OS5.x It should

Re: Distributing a Palm OS Hack

2007-05-11 Thread Neil Whitworth
Thanks for the answers... Unpatching is not a problem, as the hack is installed once, and never removed. Without it things will just not work. Distributing x-master is one option (It is the hack manager I used in testing).. But we have a mixture of individual customer and corporate customers.

Re: Can shared library use class object?

2007-05-11 Thread Neil Whitworth
Yes you can you classes (C++) in shared libraries, with some limitations... You need to provide an operator new() operator delete() functions (See below) You can not make use of any global or static data, (static functions are alowwed, but data members are not). Nor can you use exceptions

long double support

2007-05-11 Thread John V Sutton
Hi all, I'm running the following code in CodeWarrior long double ldv; ldv=98765432109876543.2; When I watch the value of ldv in the debugger window, it is appearing as 9.876543210987654e+16 long double should have 19 digits! So my question - has anybody used long double with any success?

Re: long double support

2007-05-11 Thread Ben Combee
long double is the same as double on Palm OS -- they're both 64-bit numbers. long double as 80-bits is a x86 thing and supported because of the math coprocessor. On 5/11/07, John V Sutton [EMAIL PROTECTED] wrote: Hi all, I'm running the following code in CodeWarrior long double ldv;

64k Size limit for resources

2007-05-11 Thread C. Gaberial Edwards
Hi, I'm trying to figure out some way to get around the 64k file size limit for resources. Images and the like aren't bad, I can work around that, but when I'm trying to get WAV files in it's just impossible. The closest I can get is 68kb. I'm assuming that there's something I'm missing, so can

Re: 64k Size limit for resources

2007-05-11 Thread Aaron Ardiri
On 5/11/07, C. Gaberial Edwards [EMAIL PROTECTED] wrote: Hi, I'm trying to figure out some way to get around the 64k file size limit for resources. Images and the like aren't bad, I can work around that, but when I'm trying to get WAV files in it's just impossible. The closest I can get is

RE: long double support

2007-05-11 Thread John V Sutton
Many thanks Ben - I'd been banging my head against the wall trying to understand why it wouldn't work. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Combee Sent: 11 May 2007 14:51 To: Palm Developer Forum Subject: Re: long double support long