Re: Why year 1904 is chosen for start date?

2005-10-18 Thread Chris Tutty
the 'divide by 400' rule. D'oh Not that this has anything to do with Palm OS :-) Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: odd address error

2005-10-12 Thread Chris Tutty
, but that's optimisation for you. It's never free. Are we off-topic for this list yet? :-) Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Compressing records with Lz77

2005-10-12 Thread Chris Tutty
there than starting from scratch. No idea how this compares with the Lz77 API. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: command line building for metrowerks

2005-09-22 Thread Chris Tutty
the basic build script to read a file of projects in order to automate the building of a set of libraries and the apps that used them, although if I had to do it again I'd start by finding a vbscript debugger. Chris Tutty -- For information on using the PalmSource Developer Forums

Re: Nested_FrmPopupForm().

2005-09-21 Thread Chris Tutty
on. The data module can be built as if it was an object with get() and set() methods for each field. Although C doesn't support object-oriented programming syntactically there's no reason you can't apply object-oriented design principals. Chris Tutty -- For information on using the PalmSource

Re: The File vs Database Paradigm

2005-09-14 Thread Chris Tutty
structures - the conduit API does that for you). Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to find a bug that crashes Simulator?

2005-09-13 Thread Chris Tutty
than a bug in the Palm OS source and, if it is a bug in the Palm OS source you're down to debugging assembler because you're not going to get access to the Palm OS source. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http

Re: How to find a bug that crashes Simulator?

2005-09-13 Thread Chris Tutty
the location of the crash. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to find a bug that crashes Simulator?

2005-09-13 Thread Chris Tutty
. Is that intended to replace the simulator as the primary debugging tool or is it just for low level tech stuff? Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to find a bug that crashes Simulator?

2005-09-13 Thread Chris Tutty
that it's a gray area, but I'm thinking that this at least would allow us to gradually improve the robustness of the simulator as a debugging tool, although it depends on PalmSource being willing to apply resources to those bug reports. Chris Tutty -- For information on using the PalmSource

Re: Fatal Exception on Zire 71 and 72

2005-09-08 Thread Chris Tutty
up on-line, but I just don't have the time to debug and document it. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: problem adding rsrc to mcp project

2005-09-01 Thread Chris Tutty
with run-time language selection). It takes a bit of setting up and generally isn't necessary or desirable so I'm only mentioning that it's possible as an interim measure. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev

Re: Duplicating an asp database web tool

2005-08-16 Thread Chris Tutty
From: Ornstein, Adam [EMAIL PROTECTED] 1. (brute force?) I was thinking that we could spider the tool, and produce a large number of files, that could be linked to one another from the PDA tool's main interactive page. Making it seem interactive... but is there something out there that can

Re: OS 5 is messing up certain numbers

2005-08-16 Thread Chris Tutty
isn't a good way to obtain an accurate conversion of a floating value because you don't have control over issues like truncation. I think you should be using an explicit conversion function so that 1409.99... is rounded to 1410 rather than being truncated to 1409. Chris Tutty -- For information

Re: Need some help determing what might be crashing this code

2005-08-13 Thread Chris Tutty
at least shows signs that he's investigating these problems himself. We've had posters in the past that have said I can't do this, please write the code for me and I need it by tomorrow. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http

Re: Database: memory reading error

2005-08-10 Thread Chris Tutty
manager’s data structures. Any help will be appreciated!! And an excellent error message it is. The last sentence about writing past the end of the buffer says it all. Check the logic that limits the amount of data written and the size of the buffers allocated. Chris Tutty -- For information

Re: Need some help determing what might be crashing this code

2005-08-10 Thread Chris Tutty
a Close() function to reverse this. Of course if Open() does something else entirely then your bug is elsewhere. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to I load a text file into a Database?

2005-08-04 Thread Chris Tutty
you're not trying to fit the whole data block into a single memory object so 64K becomes completely irrelevant (as long as you're not talking about a database with only one record). Multi-megabyte databases are common with Palm apps. Chris Tutty -- For information on using the PalmSource Developer

Re: preload a field on a popup form

2005-07-31 Thread Chris Tutty
at least you've got some alternatives to think about. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: A user that has a full mail box!

2005-07-30 Thread Chris Tutty
. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Trying to test for false and break routine

2005-07-27 Thread Chris Tutty
more chance of doing something useful. Chris Tutty (snip) Boolean nofield = false; static Boolean frmMain_frmTestButton_OnSelect(EventPtr event) { // Insert code for frmTestButton GetFieldData( fldTest, testdata, 255 ); if (nofield) status = FrmAlert(frmAleart); nofield = false

Re: form - return to previous form

2005-07-27 Thread Chris Tutty
via the header. While this is still global from the compilers point of view it provides good modularity for code management. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: revisit the alert issue

2005-07-27 Thread Chris Tutty
essentially just using the loop to step through a sequence (a simple state machine) to ensure that the before and after logic in always consistent. Chris Tutty #include PalmOS.h #include testaleart.h #include testaleart_res.h Char testdata[256], testdata1[256]; Boolean nofield = false; UInt16

Re: Checking to see if field has data in it before passing it routine

2005-07-24 Thread Chris Tutty
more complicated if you're building a string up and concatenating because you need to take the existing length of the string into account but for StrNCopy it's generally just a matter of passing the defined length -1. Chris Tutty Boolean GetFieldData (UInt16 fldNbr, Char *text, UInt16 maxLen

Re: Checking to see if field has data in it before passing it routine

2005-07-24 Thread Chris Tutty
From: Chris Tutty [EMAIL PROTECTED] From: druid [EMAIL PROTECTED] Here's a better way that has error checking, default processing and takes advantage of a unique feature of the PalmOS StrNCat() function to prevent stack corruption: Are you sure it's StrNCat you want and not StrNCopy

Re: Checking to see if field has data in it before passing it routine

2005-07-23 Thread Chris Tutty
hText = FldGetTextHandle(fldP); if (hText) { MemPtr *pMem = MemHandleLock( hText ); StrCopy( text, (Char*)pMem ); StrNCopy( text, (Char*)pMem, length ); text[length - 1] = '\0'; MemHandleUnlock( hText ); } } else { MemSet(text, length, '\0'); } } Chris Tutty

Re: Checking to see if field has data in it before passing it routine

2005-07-23 Thread Chris Tutty
From: Jonathan King [EMAIL PROTECTED] Here is a simple way to do what you are doing. static void GetFieldData( UInt16 fld, Char *text ) { FormPtr frm = FrmGetActiveForm(); FieldPtrfldP = FrmGetObjectPtr(frm, FrmGetObjectIndex(frm,fld)); if(FldGetTextLegnth(fldP)) which needs to

Re: Checking to see if field has data in it before passing it routine

2005-07-23 Thread Chris Tutty
. This means that the function is safe regardless of what's passed to it. You just need to check the fldP for null and I think the function as written is fine. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support

Re: Checking to see if field has data in it before passing it routine

2005-07-23 Thread Chris Tutty
of the field or whether the start of the constant is wrong by four bytes but the data has been written to the wrong location. There are some compiler settings for how constants are handled but I wouldn't have thought they'd cause this sort of problem. Chris Tutty -- For information on using

Re: Palm dedicated to one application

2005-07-20 Thread Chris Tutty
, but I was pleasantly surprised by how easy it was - of course this requires devices that have flashable ROM. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: im stumped could use some ideas

2005-07-20 Thread Chris Tutty
PDBGo that will let you write custom scripts to extract database contents to exact specifications (there also used to be a PDBC tool that allowed COM access to PDB files from memory). Google should answer this. Chris Tutty -- For information on using the PalmSource Developer Forums

Re: Ideas on how to do this

2005-07-19 Thread Chris Tutty
that implement the forms so it's easy to extend these simple examples without stopping to think that at some point their underlying design has to be re-examined. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support

Re: Why does this cause a low byte fault solved update I think

2005-07-18 Thread Chris Tutty
as long as you don't change the active window. It's good that you can continue moving forwards, but I'd treat the underlying problem as mising rather than fixed. Chris Tutty UInt16 entered_name = 0; static Boolean frmMain_fldName_OnfldEnter(EventPtr event) { // Insert code for fldName

Re: Crash if I click button twice

2005-07-18 Thread Chris Tutty
the GetFieldData() know to limit the data to 256? I would have thought that this function would also need to be passed a buffer length. Aside from that it all looks sensible. Chris Tutty - Original Message - From: druid [EMAIL PROTECTED] To: Palm Developer Forum palm-dev-forum@news.palmos.com

Re: Crash if I click button twice

2005-07-18 Thread Chris Tutty
dbPtr - if it's owned externally then the db find, open and close should be external, if the open and close are going to be done by this function then it needs to own the dbPtr. A fast fix is to set dbPtr to null after the close. Chris Tutty static Boolean frmMain_saveButton_OnSelect(EventPtr

Re: windows console application

2005-07-17 Thread Chris Tutty
this group should be able to fix those for you fairly quickly. At least with that approach you get your head into the right space in terms of the design, code, debug cycle. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com

Re: Using the Table Control

2005-07-17 Thread Chris Tutty
widths you're likely to start wanting to make all sorts of detailed changes. Biting the bullet to go to custom drawing pays off when you're fine-tuning the list style. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev

Re: Why does this cause a low byte fault

2005-07-15 Thread Chris Tutty
doing something suggests that by the time you get here something in the first two interations has corrupted memory or the heap. The problem might not be in this code at all. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http

Re: freelance help / active posters

2005-07-15 Thread Chris Tutty
hug? Come on, don't be shy). And apologies to druid for starting a side-conversation without re-subjecting his thread. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: freelance help

2005-07-14 Thread Chris Tutty
money because without this group they'd have to provide real support :-) Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Tungsten W emulator mangles bitmaps.

2005-07-14 Thread Chris Tutty
? Paging the GamesMeister...). Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: -1 madness?

2005-07-13 Thread Chris Tutty
handling mechanisms. Feel free to flame me for issuing a condescending lecture on code style rather than working out what the problem is. :-) Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: -1 madness?

2005-07-13 Thread Chris Tutty
). When you add register colouring to the equation it gets even more complicated. My suggestion is to add an else clause that does something different whichcauses sufficient side-effect that the compiler is forced to execute it and see what the debugger shows when you test that. Chris Tutty

Re: freelance help

2005-07-13 Thread Chris Tutty
world im going broke LOL I've trained several Palm OS developers and have mentored people working through self-teach programs via email. If you're interested contact me off-list and we can discuss rates and structure. Chris Tutty -- For information on using the PalmSource Developer Forums

Re: libexpat?

2005-07-11 Thread Chris Tutty
of the smaller stack. You generally have to refactor the code to use memory-based mechanisms for building and iterating the tree, making the job more complex than a simple port. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev

Re: ptr is handle error?

2005-07-07 Thread Chris Tutty
some work into trying to reproduce it. See if you can get a copy of the emulator session your client is working with, or any details as to the sequence of events that cause it. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http

Re: Re-arranging functions in a code segment

2005-07-05 Thread Chris Tutty
that have more complex inter-connectivity it can get complicated. I'm not sure how easy it is to compile a PODS project under CW, but that might give you the info you need to make the app single-segment. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe

Re: Object Library for Palm OS (was Re: Old SDKs)

2005-06-27 Thread Chris Tutty
to contribute is too big a job for anyone to take on as a hobby. It's a pity and, IMHO, the sort of thing that stays unresolved unless someone puts up a stack of money to fund the framework and, as for IBM and eclipse, there's got to be a good business reason to do that. Chris Tutty -- For information

Re: Visual FoxPro/Palm Custom Conduit Help

2005-06-26 Thread Chris Tutty
in the conduit area since then. As an example I've seen examples in this group of Delphi-based conduits that seemed to do a great deal of work fairly easily. So I'm not suggesting that these ideas are the best way to do things, just some alternatives you might keep in mind. Chris Tutty

Re: Perl scripts for POSE

2005-06-26 Thread Chris Tutty
downloads include them. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: New guy questions

2005-06-26 Thread Chris Tutty
bids. I'm sure that this has been done half a dozen times before so another approach might be to search PalmGear and google for existing products. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Old SDKs

2005-06-25 Thread Chris Tutty
can save some pain downstream. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: PluggedIn Site

2005-06-21 Thread Chris Tutty
From: epross [EMAIL PROTECTED] Thanks for the quick response. Just to note, I only get this with Netscape. With IE it works just fine. What browser are you using? It's showing a problem that has something to do with cookie handling - do you have cookies turned off? Chris Tutty

Re: giving error as app1 just read from memory location 0*000000001,which is in low memory

2005-06-13 Thread Chris Tutty
code making sure that every pointer is tested for null. This is time-consuming but is useful to ensure that your code is robust. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: HTML

2005-06-09 Thread Chris Tutty
project on. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: HTML

2005-06-09 Thread Chris Tutty
it for. I couldn't find any info on using AddIt in this way - all documentation assumes that it is downloaded for use as a software portal and so doesn't talk about distribution or licensing for other uses. Can you point me to the documents that cover the legal and pricing details? Chris Tutty

Re: White screen with Treo 650?

2005-06-07 Thread Chris Tutty
sequence you will receive when a form opens. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Treo 650 question

2005-06-03 Thread Chris Tutty
of the information you want regarding free space. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: A question, v.valev

2005-05-28 Thread Chris Tutty
Atari1040 had been squeezed into a 'top-pocket' device but that was a while ago now and the OS is really starting to show its age. What I'm more interested in is whether the Linux kernel will be accessible or whether it will be locked away the same way the original threaded kernel was. Chris Tutty

Re: How to make a NOT-EVEN length struct?

2005-05-27 Thread Chris Tutty
still be useful if you're writing many strings and want to quickly extract one without reading the preceeding strings. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to develop an application to support other than english language?

2005-05-27 Thread Chris Tutty
. As an aside - the SDK used to have a spreadsheet buried somewhere wityh european translations of the standard Palm OS text. Useful if you're doing internationalisation yourself on the cheap. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http

Re: displaying a text string that is longer then the screen is wide

2005-05-21 Thread Chris Tutty
aren't usable it isn't that hard to write a function that wraps text to the screen. Come back if you need more detail on this option. Chris Tutty -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: MemPtrResize

2005-05-09 Thread Chris Tutty
) + 1, twice. Sorry if this is confusing but, as I say, it's been covered very well just recently by someone. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: MemPtrResize (oops)

2005-05-09 Thread Chris Tutty
My apologies, I didn't read your message carefully enough (thanks to Vesselin for answering properly). Please ignore my earlier reponse. From: Orasanu Iuliana [EMAIL PROTECTED] I'm finding very difficult to work with memory allocation on this platform... :-( I'm trying to reallocate a memory

Re: MemPtrResize

2005-05-09 Thread Chris Tutty
API call would return a locked error, but my guess was that it was an old doc error, or a side-effect of the low-level code that handles ptrs and chunks. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: default application database

2005-05-08 Thread Chris Tutty
://www.palmos.com/dev/support/docs/protein_books/File_Formats/Intro.html#970019 http://www.palmos.com/dev/support/docs/protein_books/File_Formats/PDBandPRCFormat.html#972428 With the oft-repeated note that there are a number of tools available for working with these files (par, pdbc, ...). Chris

Re: shut down problem

2005-05-04 Thread Chris Tutty
itself shouldn't produce a reset so you might be looking for a different problem completely, with the unfreed chunk just a side-issue. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Re[2]: T5 database HotSync file size problem

2005-05-03 Thread Chris Tutty
anyone that's taken this step got an opinion on whether it can be implemented as a wrapper lib without code changes? Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to determine available storage space

2005-05-03 Thread Chris Tutty
storage gets tight - it's worth helping users to keep some spare space if you can. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Strange error when trying to intercept sysNotifyVolumeMountedEvent

2005-04-30 Thread Chris Tutty
certainly has the credibility to sign into an agreement with PalmSource. Now I've never done this, but I've worked with hardware developers for whom it's commonplace. Has your organisation contacted PalmSource with a view to gaining access to their internal resources? Chris Tutty -- For information

Re: Strange error when trying to intercept sysNotifyVolumeMountedEvent

2005-04-29 Thread Chris Tutty
work in DOS and do in Palm OS. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Strange error when trying to intercept sysNotifyVolumeMountedEvent

2005-04-28 Thread Chris Tutty
like this. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: DmOpenDatabase returns ErrCantOpen

2005-04-28 Thread Chris Tutty
that if you had an AppInfoArea but didn't storing categories (the PDB spec doesn't provide any way to identify this). Does this sound about right? Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Any ideas when Mac version of Eclipse IDE will be out?

2005-04-27 Thread Chris Tutty
This is who we are and we want it now. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Please explain why this solution works...

2005-04-26 Thread Chris Tutty
be possible to identify the source of the difference, but that it might take weeks of work, some seriously low-level debugging and disassemblies of the NetLib code on both the device and the Simulator. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see

Re: error checking and debuging on the device

2005-04-25 Thread Chris Tutty
work to write your own so... Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: the specified index is out of range.... when using DmReleaseRecord

2005-04-19 Thread Chris Tutty
releasing the record, but that's just me). Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: one simple question about Delay funcation in Palm OS

2005-04-19 Thread Chris Tutty
the library so I had good control over both sides of the relationship. Chris Tutty. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Flashing Palm Logo

2005-04-15 Thread Chris Tutty
. Just bail out and return control to the user. Now that's the kind of excellent technique that's obvious once someone's suggested it. I'll just steal that idea and tuck it away in my things to add to my default startup project pile. Chris Tutty -- For information on using the Palm Developer

Re: external databases

2005-04-15 Thread Chris Tutty
? Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: reading stored memory

2005-04-13 Thread Chris Tutty
processing that describe how to organise your event loop and avoid hogging the device, many relating to serial comms handling, but providing generic solutions. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: C++ Save to Database, from field (codewarrior) problems

2005-04-12 Thread Chris Tutty
about setting index to DmNumRecords to add a record at the end. Although it's probably fine, is there any reason you can't use dmMaxRecordIndex as the documentation for DmNewRecord suggests? Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Re: DmFindRecordByID API is Failing?? plz help

2005-04-06 Thread Chris Tutty
to the palmos dev forums page) has more detail on this. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: memory

2005-04-05 Thread Chris Tutty
is failing for some other reason. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: pdb

2005-04-01 Thread Chris Tutty
and come back to this group with specific questions. Reading the source for a sample such as MemoPad will also provide insight as to how the database functions work in practice. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com

Re: PDB file format

2005-03-31 Thread Chris Tutty
suspect from your bio that I don't need to explain this to you. :-) Don't expect anything of value in the UniqueID field, it's only significant on the device and can be zeros for created PDBs. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http

Re: OS 5.x and the sysNotifyAppLaunchingEvent event

2005-03-27 Thread Chris Tutty
that notification is meant to tell you. Of course most apps aren't interested in the launcher launch, because it almost always follows an application exit but Palm OS has to tell you so you have to check for it and ignore it. Chris Tutty -- For information on using the Palm Developer Forums

Re: OS 5.x and the sysNotifyAppLaunchingEvent event

2005-03-27 Thread Chris Tutty
launcher, then it's the launcher who gets called. Now that's much better than my answer, I wasn't detecting custom launchers at all (scurries off to change his code). Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support

Re: No form event handler error at notification

2005-03-26 Thread Chris Tutty
, this will happen before the event handler for the form is in place. Or am I missing something? Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Dates prior to 1904

2005-03-25 Thread Chris Tutty
to parse floats in text was more of a deficiency than no multi-century date math. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Dates prior to 1904

2005-03-25 Thread Chris Tutty
From: Clive Walden [EMAIL PROTECTED] Chris Tutty wrote: After all, if we're talking about missing functions I would have thought that not providing a function to parse floats in text was more of a deficiency than no multi-century date math. OKs I had no intention of starting one of those

Re: How to intercept application launching?

2005-03-23 Thread Chris Tutty
From: Vesselin Bontchev [EMAIL PROTECTED] From: Chris Tutty The real problem is that HackMaster was created because the trap redirection can cause the device to become unstable if multiple apps try to hook into the same trap - I can't OK, I have researched the issue and here is what I've

Re: How to intercept application launching?

2005-03-23 Thread Chris Tutty
- Original Message - From: Vesselin Bontchev [EMAIL PROTECTED] To: Palm Developer Forum palm-dev-forum@news.palmos.com Sent: Thursday, March 24, 2005 4:03 AM Subject: Re: How to intercept application launching? The real problem is that HackMaster was created because the trap

Re: How to intercept application launching?

2005-03-23 Thread Chris Tutty
(My apologies for the double post - OE obviously has problems with multiple messages open for posting). From: Vesselin Bontchev [EMAIL PROTECTED] From: Chris Tutty From memory you create a code segment, attach it to your app as a resource (Ben's answer to my question on how to do

Re: DmOpenRef error

2005-03-22 Thread Chris Tutty
the first create does the second start working? Have you checked that the DBName is different? How do you know that it doesn't exist? Databases and prcs with the same CRID are often reported as a lump in the Palm OS info screens so you need to use an app such as Filez if you want more info. Chris

Re: App launch and SysAppLaunch() function.

2005-03-22 Thread Chris Tutty
. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: How to intercept application launching?

2005-03-21 Thread Chris Tutty
they are). You will also need to give a loud warning to the user that your hack cannot be used in conjunction with any other hack. Annoying, but it's the only option - one hack per device or only use HackMaster compatible apps. Chris Tutty -- For information on using the Palm Developer

Re: How to intercept application launching?

2005-03-21 Thread Chris Tutty
to turn that code into a sample and document it. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Very Urgent (Please respond by the end of today, my job depends on it :)

2005-03-20 Thread Chris Tutty
into strings and might need to be converted back into numbers before you can calculate with it. On the other hand if you're just displaying these values it doesn't matter. Chris Tutty -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev

Re: Very Urgent (Please respond by the end of today, my job depends on it :)

2005-03-20 Thread Chris Tutty
To be correct, this needs changing from: From: Chris Tutty [EMAIL PROTECTED] All that pack really means is that instead of storing strings padded with spaces to a constant length as in '2938012 AUTO_ADD 100.20 ' '2938013SOME OTHER DATA100.20 ' '2938013THREE

  1   2   3   4   5   6   >