FldSetTextPtr

2000-10-03 Thread Nathan Peterson
I'm trying to update a field with text. The field is being drawn, but no text shows up. Here's the code I'm using: form = FrmGetActiveForm(); FrmDrawForm(form); FldSetTextPtr(FrmGetObjectPtr(form,FrmGetObjectIndex(form,AboutField)),"testing..."); FldDawField (FrmGetObjectPtr(form,FrmGetObjectIn

Re: Bug in 3.5-fr-dbg ?

2000-10-03 Thread Denis Faivre
Easy ! In palmos35-fr-ezdbg.rom, simply replace 0x0F by 0x10 at offset 0x87D7B. More generally, find the "Find:" equivalent (in french, "Chercher:"), then look for 0x2907 word : starting from the 0x29, the 0x0F is 29 (decimal) bytes further. After this patch, the ROM checksum control fails, but

Multimail launch codes

2000-10-03 Thread David Thacker
Greetings, I've been waiting many weeks for Palm Devsupp to answer my email regarding Multimail launch codes, so I'll try posing the same question here. [I first tried to email Actual Software several times, but their email just bounces with a mailbox full error...] Does Multimail Pro currently

Re: TCP/IP, SSL and PALM

2000-10-03 Thread Tom Zerucha
On Tue, Oct 03, 2000 at 04:27:08PM +0200, Christian Vandendorpe wrote: > When I finish with my current stuff I will take a look. However I am > only going to spend time on this if I find existing code that is not GPL > (LGPL, BSD, Mozilla licenses would be ok). There is not much point for > me to

Re: TextTableItem wider than column width?

2000-10-03 Thread Richard Burmeister
From: "Ken Hejmanowski" <[EMAIL PROTECTED]> Subject: Re: TextTableItem wider than column width? > Thanks for the reply! The first column is not editable, but the second _is_ > editable, so I need to stick to using two columns. Would you suggest doing > the custom draw function for the first co

Converting text to float manager type

2000-10-03 Thread Ian Alston
Guys, I'm trying to convert a number that is fed in as ., to the float manager type, to use FplAToF. Is there a quick way to do this, or do I use a series of StrCopy and StrCat calls? Regs Ian -- For information on using the Palm Developer Forums, or to unsubscribe, please see htt

Re: Bug in 3.5-fr-dbg ?

2000-10-03 Thread John Marshall
Denis Faivre <[EMAIL PROTECTED]> wrote: > Right, but it prevents us from fully testing our apps on French versions of > PalmOS... Would an updated version of the DEBUG rom be possible ? True, although there are probably other bugs as well in various ROMs that similarly prevent proper testing of p

Re: How to update a specified field in the database

2000-10-03 Thread chongwm
Probably an artifact issue. I don't think she null-terminated her char arrays. So, if the old string is longer than the new one, she'ld be reading past the new one into the old one. Remember that she didn't DmResizeRecord() on the record either. Richard Hartman wrote: > > Wait a sec ... if the

A thank you to Palm nee 3com

2000-10-03 Thread JoshNarins
The Reference in PDF ROCKS! I could not have come close without it. The content seems very well suited to the format. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: trapping TrapIDs over A800

2000-10-03 Thread gcw
Keith, Pardon my ignorance. Clearly I'm in unfamiliar territory... [EMAIL PROTECTED] wrote: > > Is the trap dispatcher a system call that I can patch via > > SysSetTrapAddress ? > > Hmmm...you seem a little unclear on the concept here. The trap dispatcher is > what invokes system functions.

Category Mangager Help

2000-10-03 Thread Michael P. Hutchens, M.D., M.A.
I'm having some trouble using the Category Manager. Specifically, my call to CategoryCreateList halts with "Nil ID" error. The call is below, FYI. CategoryCreateList(MyAppDB,listP,CurrentCategory,false,true,1,AppInfoStringsAppInfoStr,true); AppInfoStringsAppInfoStr is the name of the app inf

Re: C vs. C++

2000-10-03 Thread Stormgate Communications
In my experience (both on the Palm and in the embedded systems world) it's certainly possible to use C++ and stay almost as efficient as pure C, while gaining a lot of the advantages that C++ provides. I'd suggest approaching it as an embedded system (i.e. firmware) as opposed to a desktop applic

Re: Any custom fonts out there?

2000-10-03 Thread Richard Hartman
Lots. Start at http://www.sergem.net Also try searching for "font" on PalmGear -- -Richard M. Hartman [EMAIL PROTECTED] 186,000 mi/sec: not just a good idea, it's the LAW! Jim Duffy wrote in message <26162@palm-dev-forum>... > >Does anyone know if there are any custom font resources availabl

Re: APPID

2000-10-03 Thread Grounderyoyo22
In a message dated 10/2/00 10:25:37 PM Mountain Daylight Time, [EMAIL PROTECTED] writes: > > What's the difference between the APPLICATION ID in the .rcp file and > the APPID used as a parameter for build-prc? > nothing... ( }#^} Ritz -- For information on using the Palm Developer Forum

Re: trapping TrapIDs over A800

2000-10-03 Thread krollin
> Is the trap dispatcher a system call that I can patch via > SysSetTrapAddress ? Hmmm...you seem a little unclear on the concept here. The trap dispatcher is what invokes system functions. Therefore, it can't be a system function itself...otherwise, how could you use it to call it? Let's sk

Any custom fonts out there?

2000-10-03 Thread Jim Duffy
Does anyone know if there are any custom font resources available to developers?? I am looking for a font about the same size as the LED font except with a complete character set or at least letters and the ':' so I can display the time. thanx Jim -- For information on using the Palm Devel

Re: trapping TrapIDs over A800

2000-10-03 Thread gcw
Keith, Thanx for the suggestions: > > > One approach would be to replace the trap dispatcher with one of your own. This > trap dispatcher would be looking for dispatch numbers with the right values > (A801, A802, etc.), and for the appropriate library refNum on the stack. Is the trap dispatcher

Re: APPID

2000-10-03 Thread John Marshall
Nathan Peterson <[EMAIL PROTECTED]> wrote: > What's the difference between [...] > the APPID used as a parameter for build-prc? One determines the creator ID in the application database's header, which is used by the system and others all over the place > [and] the APPLICATION ID in the .rcp fil

Re: How to update a specified field in the database

2000-10-03 Thread Richard Hartman
[EMAIL PROTECTED] wrote in message <26058@palm-dev-forum>... > > > >I was trying to write the whole record with updates before and failed. The >problem is in the update data. If the sizes of old and new data are the same, >no problem. If old data size is bigger, it erases data from the follo

Re: Data Moving Problem

2000-10-03 Thread Richard Hartman
[EMAIL PROTECTED] wrote in message <26051@palm-dev-forum>... > > > >I didn't miss the extra one. Just look at the line followed the FOR statement, >which adds number of char* fields to variable length. Ok, I see that ... it isn't obvious why you're adding "frp_facilityCount" to the length until

Re: TextTableItem wider than column width?

2000-10-03 Thread Ken Hejmanowski
> If these columns are not editable, an easy way to do this is to use one > column with a custom draw procedure. Set the style with > TblSetItemStyle(tableP,row,col,customTableItem). Set the callback function > with TblSetCustomDrawProcedure(tableP,col,YourCustomDrawFunc). Then use > WinDrawCha

RE: WinScreenMode on pre-3.5

2000-10-03 Thread Fitzsimons, Jeff
Thanks for your -- as always -- helpful response! :) Jeff > -Original Message- > From: Aaron Ardiri [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, October 03, 2000 1:31 PM > To: Palm Developer Forum > Subject: Re: WinScreenMode on pre-3.5 > > > I (foolishly) only noticed today that

RE: Pre Processor directives

2000-10-03 Thread Scott Johnson (Bellevue)
> From: Labhesh Patel [mailto:[EMAIL PROTECTED]] > Where in the project settings in Code Warrior would you need to > specify the pre-processor directives? Read up on multiple targets and prefix files. -slj- -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: TextTableItem wider than column width?

2000-10-03 Thread Richard Burmeister
From: "Ken Hejmanowski" <[EMAIL PROTECTED]> Subject: TextTableItem wider than column width? > Is it possible to set the width of a TextTableItem in a table to be wider > than the table column it is in? I have a table with two columns, both > containing TextTableItems. I want text that appears

Pre Processor directives

2000-10-03 Thread Labhesh Patel
Hi, I wanted conditional compilation of the code based on some pre-processor directives. Where in the project settings in Code Warrior would you need to specify the pre-processor directives? bye Labhesh _ Get Your Pri

Re: Greyscale picture

2000-10-03 Thread Jim Duffy
I had problems with this also, here's how I got ti working with help from this group. in your source code, put: #include in the pilotmain() function put: UInt32 depth = 2; // if you wanted 16 gray scale that 2 would be a 4. WinScreenMode(winScreenModeSet,NULL,NULL,&depth,NULL); that should b

TextTableItem wider than column width?

2000-10-03 Thread Ken Hejmanowski
Is it possible to set the width of a TextTableItem in a table to be wider than the table column it is in? I have a table with two columns, both containing TextTableItems. I want text that appears in the first column to run over into the second column when the text is too wide to fit completely i

TIMEPICKER bug?

2000-10-03 Thread Brian Beatty
The Query Form Element TIMEPICKER will not allow the user to assign a value of 00:00 to the time. This should overwrite the TIMEPICKER value to 12:00 AM, but it doesn't work. However overwriting the value with 00:01 will set the time to 12:01 AM. I have also tried a value of 24:00 which doesn't wo

Re: WinScreenMode on pre-3.5

2000-10-03 Thread Aaron Ardiri
> I (foolishly) only noticed today that WinScreenMode is "implemented only if > 3.5 New Feature Set is present." My first question is, therefore, why has > it been working flawlessly for me on POSEr with 3.1 and 3.3 debug ROMs? ignore that :)) its >= 3.0 :P > Also, the Palm docs say prior to

WinScreenMode on pre-3.5

2000-10-03 Thread Fitzsimons, Jeff
Hi all, Yes, it is yet another question on WinScreenMode and setting bit depth in general! I (foolishly) only noticed today that WinScreenMode is "implemented only if 3.5 New Feature Set is present." My first question is, therefore, why has it been working flawlessly for me on POSEr with 3.1 a

Springboard Module Cases???

2000-10-03 Thread Jay
Is anyone here familiar with any company that makes the cases for the Springboard Modules?? Any companies list on the net?? Any help would be much appreciated. Jay Canale Software Engineer -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palm

Re: PalmSource - Travel Info

2000-10-03 Thread Ben Combee
"Chris DiPierro" <[EMAIL PROTECTED]> wrote in message news:26122@palm-dev-forum... > > I know this is slightly OT, but I assume a lot of people here are going to > PalmSource. > > On Palm's website, they list ETMI as a travel agency to make reservations > through. However, upon calling them, I fou

Re: SystemMgr.c Line 154 Fatal Alert

2000-10-03 Thread Dave Lippincott
> > We have extracted the ROM image from one of these 5x devices to load it into > the emulator. However, the emulator complains that the ROM image has a > checksum error and refuses to run with the image. (Downloaded by emulator > and rom image transfer prc on palm device). > If the ROM was modif

Chinese tools

2000-10-03 Thread Shannon Pekary
I would like to create a chinese version of a product, but I am confused about how to do that. I understand there are add-ons that can allow the Palm to display Big-5 characters, and I can get resources translated. The thing that I am worried about is whether the PalmRez Post Linker can handle i

Re: PalmSource - Travel Info

2000-10-03 Thread John Fullerton
Not intending to try anyone's reading patience www.travelocity.com has been helpful to me in finding good prices on fares. It's just a utility and there's no guarantee from me :) Have a nice day John Paul Fullerton [EMAIL PROTECTED] -- For information on using the Palm Developer Forums, or t

Re: PalmSource - Travel Info

2000-10-03 Thread David Fedor
Thanks for the info about ETMI. I've forwarded it along to the right folks. > (I assume the conference goes >late on the 15th, so making it to San Jose will be problematic). I think the last session is ending at 2:00 or something, so you might be able to make an afternoon flight. But I'm not

Re: SystemMgr.c Line 154 Fatal Alert

2000-10-03 Thread David Fedor
>Users with Palm 5x, running OS 3.5.0 report getting: > >Fatal Alert: >SystemMgr.c Line 154 >Unimplemented Error You'd only get this if you call a system trap that isn't implemented on the device. (Or if you called SysUnimplemented directly, for some strange reason...) I've never heard of this

Problem Writing Updates To Database

2000-10-03 Thread Chang . Elizabeth
- Forwarded by Elizabeth Chang/R9/USEPA/US on 10/03/00 11:54 AM - |+> || Elizabeth | || Chang | ||| || 10/02/00 06:07| || PM| |

PalmSource - Travel Info

2000-10-03 Thread Chris DiPierro
I know this is slightly OT, but I assume a lot of people here are going to PalmSource. On Palm's website, they list ETMI as a travel agency to make reservations through. However, upon calling them, I found them to be relatively uninformed about the conference. They were unaware that they were pro

Re: Greyscale picture

2000-10-03 Thread SK
I thought about 2 bit bitmap. How can I do that? Thanks Sandi "Tom Zerucha" <[EMAIL PROTECTED]> wrote in message news:25810@palm-dev-forum... > > On Thu, Sep 28, 2000 at 06:47:23PM +0200, SK wrote: > > Please, > > > > > can anybody point me to the right direction how to put 4-greyscale bitmap on

RE: Compilation error with C++

2000-10-03 Thread Paul Bohme
Hrm, I'm behind on my coffee, you're right. I brainfarted the UInt8 to UInt32 - my bad. We did both miss the address-of on that one. Lattes on me, I suppose. ;-) -P -Original Message- From: Neil Rhodes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 03, 2000 10:51 AM To: Palm De

RE: Compilation error with C++

2000-10-03 Thread krollin
Paul, recPtr is a UInt8*, so Neil's math is correct. recPtr[sizeof(UInt32)] is recPtr[4], which is 4 bytes from the beginning of the buffer. However, I'm pretty sure that that second parameter should be be the *address* of the element. That is, "&recPtr[sizeof(UInt32)]". -- Keith Paul B

Re: Compilation error with C++

2000-10-03 Thread Neil Rhodes
>> Do the following instead: >> UInt8 *recPtr; >> recPtr = (UInt8 *) MemHandleLock(recHandle); >> ... >> MemMove(pSig, recPtr[sizeof(UInt32)], > MemPtrSize(recPtr)-sizeof(UInt32)); > > Yipes! Almost. The above will actually move it forward sizeof(UInt32) * > sizeof(UInt32) -

RE: Compilation error with C++

2000-10-03 Thread Paul Bohme
> Do the following instead: > UInt8 *recPtr; > recPtr = (UInt8 *) MemHandleLock(recHandle); > ... > MemMove(pSig, recPtr[sizeof(UInt32)], MemPtrSize(recPtr)-sizeof(UInt32)); Yipes! Almost. The above will actually move it forward sizeof(UInt32) * sizeof(UInt32) - probably mor

RE: Overflowed Stack !

2000-10-03 Thread Scott Johnson (Bellevue)
> From: Rajesh Patidar [mailto:[EMAIL PROTECTED]] >CodeWarrior Release 6 >Sybase Ultralite Version 6.0.3 > While running the application I am getting following error-- >"The application has just overflowed the stack." Well, where in your app does the overflow happen? Use the debugger

Re: Maximum size of an application ?

2000-10-03 Thread Tilo Christ
Hi! > Alas Aaron, CW Lite doesn't include a runtime library that supports multiple > segment applications. Rajesh will either need to upgrade to the full > CodeWarrior or switch to GCC development. It is also possible to apply the SDK 3.5 upgrade to CW Lite. And suddenly you can develop multi-

Re: Compilation error with C++

2000-10-03 Thread Neil Rhodes
> I had this working perfectly using C with > > MemPtr recPtr; > recPtr = MemHandleLock(recHandle); ... > MemMove(pSig, recPtr[sizeof(UInt32)], MemPtrSize(recPtr)-sizeof(UInt32)); > > I know that this is messy - but for various reasons it wouldn't work well > for me using structs - how

resource related screen freeze

2000-10-03 Thread Rick Gadbois
Using programs I have written; After using my modem, my palm sometimes "freezes", unitl a power off/on occurs. It seems to be resource related; i.e. If I change around formID's, the problem occurs less often. But I have not nailed down the fix...exactly. Does anyone have any helpful information wi

Compilation error with C++

2000-10-03 Thread Fergal Moran
I am trying to lock a chunk, read a UInt32 from the start and a BitmapPtr from the end and I had this working perfectly using C with MemHandle recHandle; MemPtr recPtr; UInt16 theSize; BitmapPtr pSig; UInt32 nID; recHandle = DmQueryRecord(m_db, m_nPointer); recPtr = MemHandleLock(

Table Question from beginner

2000-10-03 Thread JoshNarins
I'm almost done with my little App! Yay! (and Boo!) I'm working on my last table and I realize now that my lack of foresight or experience has left me in a quandry. I've got a table with two columns (checkbox and text). For some of the rows, I don't WANT a checkbox to appear at all. The table is

RE: trapping TrapIDs over A800

2000-10-03 Thread Tim Spurrell
What about defining a new library which wraps an existing one, then trapping on SysLibFind() to return a refnum to the wrapper library? Library calls get redirected to the wrapper library. The wrapper is the able to alter standard behaviour or forward off to the actual library. T. -Orig

Re: trapping TrapIDs over A800

2000-10-03 Thread krollin
It can be done, but not in a supported fashion. I can think of two totally gross ways of doing this. One approach would be to replace the trap dispatcher with one of your own. This trap dispatcher would be looking for dispatch numbers with the right values (A801, A802, etc.), and for the approp

Re: Maximum size of an application ?

2000-10-03 Thread Ben Combee
"Aaron Ardiri" <[EMAIL PROTECTED]> wrote in message news:26080@palm-dev-forum... > try switching to a multiple segment application - your code is just > too big :)) Alas Aaron, CW Lite doesn't include a runtime library that supports multiple segment applications. Rajesh will either need to u

Re: TCP/IP, SSL and PALM

2000-10-03 Thread Christian Vandendorpe
When I finish with my current stuff I will take a look. However I am only going to spend time on this if I find existing code that is not GPL (LGPL, BSD, Mozilla licenses would be ok). There is not much point for me to spend time on this if my entire app is going to be infected with the GPL virus

Design Documentation / Coding Standards

2000-10-03 Thread Rick Gadbois
Does anyone here use design documentation and/or coding standards that are particularly friendly to the palm/code warrior environment? p.s. I use WinNT. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

Re: i need a suggetion for my recoeds...

2000-10-03 Thread Eliah Ninyo
so what u suggest??? Richard Anderson wrote: > > I dont think you should use const in your struct, as you will not be able > to assign values to the variables (as their constant). > > Rik > > > -Original Message- > > From: Eliah Ninyo [SMTP:[EMAIL PROTECTED]] > > Sent: 03 October 2000

RE: i need a suggetion for my recoeds...

2000-10-03 Thread Richard Anderson
I dont think you should use const in your struct, as you will not be able to assign values to the variables (as their constant). Rik > -Original Message- > From: Eliah Ninyo [SMTP:[EMAIL PROTECTED]] > Sent: 03 October 2000 15:53 > To: Palm Developer Forum > Subject: i need a sugg

Do I need to hack MailRsc.h if I change the resources?

2000-10-03 Thread jw
In the mail application there is a MailRsc.c and MailRsc.h file. Is MailRsc.h the sum of all the automatically generated _rsc.h files? Do I need to hack this file if I change the resources? Thanks, /Jenny -- For information on using the Palm Developer Forums, or to unsubscribe, please see htt

i need a suggetion for my recoeds...

2000-10-03 Thread Eliah Ninyo
hello, i made a struct with diffrent kinds of fields. here it is: typedef struct { SDWord FormID; // a number id const char *SrvCall; // 8 digit number const char *date; // the date when the form opened/created UInt statuse; // 0 =

Re: how to have multiple code resources in a shared library?

2000-10-03 Thread Rob Dugal
Thanks Ken, a collegue also spotted this problem and I have the code resource working in my shared library. It's good to hear that Metrowerks is working on Multi-segment shared libraries. I hope they fix the problem with supporting globals as well. It would also be nice if the linker had the optio

localization and CodeWarrior

2000-10-03 Thread Stephen Bentley
Are there specific settings inside of CW to set which locale you are compiling for? I'm trying to find out why my overlay isn't working. If there are, I can't find them. Stephen Bentley www.middlecross.com -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: Overflowed Stack !

2000-10-03 Thread M. Edward Wilborne III
Another possibility is temporary variables using up too much stack space (which affects CodeWarrior... I never had this problem with PRC-Tools v0.5 or 2.0). Check out this message from the archive: http://www.egroups.com/message/palm-dev-forum/38218 Ed - Original Message - From: "Rajes

Re: hot sync programatically?

2000-10-03 Thread sumita_malik
Another method is to add this event to queue: EventType NewEvent; MemSet( &NewEvent,sizeof(NewEvent),0); NewEvent.eType = keyDownEvent; NewEvent.data.keyDown.chr= hardCradleChr; NewEvent.data.keyD

Re: OS with no built in apps

2000-10-03 Thread Aaron Ardiri
> > Is it possible to get a version of PalmOS with no built in apps of any kind > > - that would just run our application and nothing else. > > http://www.trgpro.com/software/imagepro.html or.. a cheaper alternative called "editrom" :)) i dont have the URL offhand, however, the website is in

Re: Maximum size of an application ?

2000-10-03 Thread Aaron Ardiri
> Hi everybody, > I am getting the following error while loading my application on the > emulator--- > "Application size increased 64K.(0x0201) "dmErrMemError" > > I am developing the application using CW Lite Release 6.(Single Segment) > I want to know exactly what is the maximum size of the app

Re: OS with no built in apps

2000-10-03 Thread Stuart Uleman
> Is it possible to get a version of PalmOS with no built in apps of any kind > - that would just run our application and nothing else. http://www.trgpro.com/software/imagepro.html = Stuart Uleman [EMAIL PROTECTED] http://hanachan.org/ ===

Maximum size of an application ?

2000-10-03 Thread Rajesh Patidar
Hi everybody, I am getting the following error while loading my application on the emulator--- "Application size increased 64K.(0x0201) "dmErrMemError" I am developing the application using CW Lite Release 6.(Single Segment) I want to know exactly what is the maximum size of the app.

Re: hot sync programatically?

2000-10-03 Thread sumita_malik
Just run the hotsync application , say , with SysUIAppSwitch. LocalID syncID = DmFindDatabase (0, "HotSync"); ... SysUIAppSwitch ( 0, syncID,0,0); Regards, Sumita rub-a-dub <[EMAIL PROTECTED]> on 10/03/2000 12:37:32 AM hope everyone is well. i was curious if it is possible to invoke

Re: Overflowed Stack !

2000-10-03 Thread singhkri
Are you using a recursive function without a stopping condition?? -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/

RE: Overflowed Stack !

2000-10-03 Thread Richard Anderson
Too much stuff on the stack. Two main causes: 1. Recursive functions, ie you function calls a function which calls your function, effectivily calling a function from within the same that function, ie: void my_func (char tem) { my_func; } this would cause

Overflowed Stack !

2000-10-03 Thread Rajesh Patidar
I am using --- CodeWarrior Release 6 Sybase Ultralite Version 6.0.3 POSE v 3.0a7 I compiled and linked the application successfully. While running the application I am getting following error-- "The application has just overflowed the stack." What might be the cause? -- For

Re: C vs. C++

2000-10-03 Thread Tilo Christ
Hi! > I'll second this recommendation. I have heard this approach been called "Objectless >C++" or "next generation C". My two years of > project development on the PalmOS has been a trend from object implementation to >only using object design. Things like templates, > v-tables and virtual

OS with no built in apps

2000-10-03 Thread Fergal Moran
Hi, Is it possible to get a version of PalmOS with no built in apps of any kind - that would just run our application and nothing else. Regards, Fergal -- WASP Technologies http://www.wasptech.com Wireless Application Solutions Provider -- For information on using the Palm Developer Forums,

trapping TrapIDs over A800

2000-10-03 Thread gcw
I need to trap the system calls SysLibOpen, SysLibClose, etc. ( they have trap IDs over A800 apparently). Unfortunately, the call SysSetTrapAddress() doesn't seem to let me set traps for trapIDs over the value of the constant "sysTrapLastTrapNumber", which is A3E8.Is it possible to patch the