Re: SysSetTrapAddress in OS5

2003-03-30 Thread Aaron Ardiri
setting/replacing the trap address is not possible anymore on PalmOS 5. Sure it is possible, just not officially supported. Patching the system table is what OS updates are doing, AFIK. Unless somebody shows me how to do it myself, it's not possible ;) if you want to do it, you need to

PostScipt or TrueType versions of stdFont etc?

2003-03-30 Thread Jeff Ishaq
I'm looking for postscript or truetype (i.e., Windows-compatible) versions of Palm OS's stdFont, boldFont, largeFont, largeBoldFont, symbol 7, 9, 11. This is so I can make convincing UI mock-ups for my Palm projects. Any ideas? Thanks, -Jeff -- For information on using the Palm Developer

Re: Multi-section apps / calling functions

2003-03-30 Thread John Marshall
On Mon, Mar 24, 2003 at 08:13:01PM -0700, Eddie Ludema wrote: SRC=$(APP).c section1.c section2.c SECTIONS=$(APP)-sections CC=m68k-palmos-gcc MULTIGEN=m68c-palmos-multigen ...you would think that the typo here was a signal that $(MULTIGEN) is not in fact being used... $(APP): $(SRC:.c=.o)

Trouble changing dialog's colors

2003-03-30 Thread Richard Coutts
I have a simple function that I use to set an Item's color: void SetItemColor (UIColorTableEntries item, UInt8 color) { if (ColorDepth() = 8) { RGBColorType rgb; WinIndexToRGB (color, rgb); UIColorSetTableEntry (item, rgb);

Re: POSE crashing when GremlinMinimize...ing

2003-03-30 Thread Keith Rollin
At 9:05 AM -0500 3/29/03, Richard Coutts wrote: I've tried several times to use the Minimize feature of gremlins. Lately, I get to the #LAST pass and then it hangs and I don't get the report telling me the steps I need to follow to replicate the crash. I'm using POSE 3.5 with

Re: Retrieve password of palmOS?

2003-03-30 Thread apple k
do u have the website? i need to explore from there. Pls do help. Thank you very much! --- Aaron Ardiri [EMAIL PROTECTED] wrote: No you can't. If anyone get retrieve the password then what purpose does the security have? sure you can. dont you remember the security bulletin released a

Ignore this - Re: Retrieve password of palmOS?

2003-03-30 Thread apple k
thanks, i got the archieve. --- apple k [EMAIL PROTECTED] wrote: do u have the website? i need to explore from there. Pls do help. Thank you very much! --- Aaron Ardiri [EMAIL PROTECTED] wrote: No you can't. If anyone get retrieve the password then what purpose does the security

Trouble building and test Memo application in PalmOS SDK

2003-03-30 Thread Çö´ö±º
Hi all, I want to build memo application and test is palmOS simulator but, some error occurred, says 'The Palm OS database already exist on the device and cannot be deleted' I'm using CodeWarrior 9.0 now. anybody knows about this, please let me know why this problem occurred, and how can I test

SourceCode of General Preference?

2003-03-30 Thread apple k
Hi, Is there any source code provided in internet for the palm built-in application :Preferences - General ? __ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -- For information

Re: Trouble building and test Memo application in PalmOS SDK

2003-03-30 Thread Oliver
'The Palm OS database already exist on the device and cannot be deleted' I have never tried this, but I suspect that you probably didn't change the application ID, and are now trying to install an application with the same ID as the (simulated) ROM application. Just like a real device

Re: Trouble building and test Memo application in PalmOS SDK

2003-03-30 Thread chris
I can fix my problem, changing database name in project settings :) thanks oliver. I have one more questtion. Does application ID mean creator ID? or is there some difference exists? thanks for your kindness again - chris Oliver [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] 'The

Retrieval of PalmOS password

2003-03-30 Thread apple k
Hi, I have gone through the PalmOS archieve in regards to this matter. What i have found that the SyncCallRemoteModule is only able to set the palm password through Synching. However, when the time we have to sync back to DB, are we able to retrieve the palmOS password through conduit? This is

Setting font for lists

2003-03-30 Thread Stephen Beuzenberg
I must be missing something obvious. I'm trying to upgrade code to run on the Tungsten and that means not sneaking around behind the APIs, right? Well I can't find an API to set the font for lists, and the only font recognised in lists seems to be stdFont. I've set up a callback function to draw

dmHdrAttrReadOnly?

2003-03-30 Thread apple k
Hi, Is the dmHdrAttrReadOnly can be set on any pdb? how come i have encountered the illegal accessing memory problem? snippet code: dbID = DmFindDatabase(0, ABCDB); if (dbID!=0) { error = DmSetDatabaseInfo(0, dbID,NULL,(UInt16*) dmHdrAttrReadOnly ,0,0,0,0,0,0,0,0,0);