Re: Fatal Alert??? is this palm pilot ruined?

2005-06-14 Thread Mishael Kim
it doesn't have a removeable battery. has anyone experienced something similar to this? -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: Fatal Alert??? is this palm pilot ruined?

2005-06-14 Thread Mishael Kim
thanks for the input guys. I think what I'm going to do is completely uninstall all of the newer palm software and replace it with the older one. and wait about 2 weeks for the battery to completely die and erase the memory. Hopefully this works. you guys think 2 weeks is long enough? (after

Fatal Alert??? is this palm pilot ruined?

2005-06-13 Thread Mishael Kim
So i've been using this new palm pilot (i actually forget the model) but it was using Palm OS 5. and I've been syncing it with no problems. I then got rid of the Palm pilot, but got my hands on an older Palm Vx. I think it uses palm OS 3 or something. I then decided that I wanted all of the

charge for contract work?

2005-05-04 Thread Mishael Kim
just wondering how much you guys charge for contract work. It's a fairly small simple application that I think should take about a week to finish. Thanks. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Re: hotsync not working after installing CDK 4.02a HELP!

2005-04-29 Thread Mishael Kim
Hello Mishael, I have CDK 4.03, CDK 6.0.1, as well as the HotSync Manager 4.1.0 that came with Palm desktop all installed on my machine, and am able to use all 3 of them. Simply closing the previous one and starting up a new one seems to work fine for me. Occasionally I have to tweak some

anyone try using HB++ to program?

2005-04-29 Thread Mishael Kim
I was wondering what your experiences were... did you like/hate it? what are some the benefits or fallbacks to using it? I'm probably gonna give it a try since i heard it's easy and codewarrior is discontinued now. Thanks! mishael -- For information on using the Palm Developer Forums, or to

re: anyone try using HB++ to program?

2005-04-29 Thread Mishael Kim
yes I use HB++. It is a great programming tool. You can build apps quickly and you have the entire Palm API available to you. Support though their forum is the best. They give you helpful pointer, code snippets and some real good samples to learn from. The eval version is free and it never

emulator making my norton antivirus go crazy

2005-04-29 Thread Mishael Kim
It starts detecting and blocking worm intrusion attempts ever second when the emulator is running. any ideas? is this common? thanks, mishael -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

hotsync not working after installing CDK 4.02a HELP!

2005-04-28 Thread Mishael Kim
anyone else have this problem? What can I do? I think the hotsync manager in the CDK is taking over the hotsync manager that was installed with palm desktop. thanks in advance mishael -- For information on using the Palm Developer Forums, or to unsubscribe, please see

where can i get a copy of codewarrior??

2005-04-26 Thread Mishael Kim
I've been recently using the trial version of code warrior, expecting to purchase the licensing when my application got too big, but now I can't apparently. I'm on a deadline, and don't really want to mess with the other development tools due to the learning curve and time restraints. Anyone

Re: does the database backupbit get reset after it is backed up during a hotsync?

2005-04-21 Thread Mishael Kim
thanks for that conversation guys. haha. exactly what I was looking for and it definately cleared up my confusion. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

does the database backupbit get reset after it is backed up during a hotsync?

2005-04-20 Thread Mishael Kim
... or once you set it... it never changes unless you change it in code? THANKS. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

storing 2 different database records

2005-04-18 Thread Mishael Kim
in the code below, i am just initializing 2 different boolean variables into the memory (trying to at least). do i just increment the recIndex by 1? (ie recIndex++) or does DmNewRecord take care of creating different memory allocations. I'm just worried that the second DmSet() will overwrite

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

2005-04-18 Thread Mishael Kim
//authenticatedH is created and set to false recIndex = 2; authenticatedH = DmNewRecord(gDB, recIndex, recSize); if (authenticatedH) { recP = MemHandleLock(authenticatedH); DmSet(recP,0,1,false); MemHandleUnlock(authenticatedH); DmReleaseRecord(gDB, recIndex, true); } //authenticatedH is set to