Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 1 -------- 09/01/2005 @ 17:46 by aldweb
visitor |
Hello Peter,
I never used Resco Explorer and I don't know what this "Appinf" is, "Appinf" which I never met with any other resources editing tool or explorer-like software. What is its content?
If you know how the databases of JFile and Pilot-DB are internally built, meaning you know their structure, then you may very well build and edit them, as well as their records, with an iziBasic program.
This is what I did for the ToDos sample program shipped with iziBasic, knowing the structure of the DB the of To Do software provided by Palm OS. Same principle with the other sample application so called MemoTitles.
And, here is a sample piece of code, that I sent to one user today for writing something to the MemoDB of the Memo Pad application:
{SECUREFILES OFF} BEGIN J=1 FOR I=1 TO 10 A$=STR$(I,2)+CHR$(10) PUTSTRING$$ A$,J J=J+LEN(A$) NEXT I OPEN "MemoDB" FOR APPEND AS #1 PRINT$$ #1 CLOSE #1 END
Cheers
@+ aldweb |