search using 'Signature' http://kb.palmsource.com/cgi-bin/palmsource.cfg/php/enduser/std_adp.php?p_sid=ezmNDQqh&p_lva=&p_faqid=130&p_created=1032296548&p_sp=cF9zcmNoPTEmcF9ncmlkc29ydD0mcF9yb3dfY250PTImcF9zZWFyY2hfdGV4dD1jYXB0dXJlJnBfc2VhcmNoX3R5cGU9MyZwX3Byb2RfbHZsMT1_YW55fiZwX2NhdF9sdmwxPX5hbnl_JnBfc29ydF9ieT1kZmx0JnBfcGFnZT0x&p_li=
For post OS3.5, use the APIs. ----- Original Message ----- From: "Developer" <[EMAIL PROTECTED]> Newsgroups: palm-dev-forum To: "Palm Developer Forum" <[EMAIL PROTECTED]> Sent: Thursday, November 18, 2004 12:56 PM Subject: Re: Signature capture > Thank you for your answers. > > I am using Codewarrior so I am looking for a solution in C. I could not find > the sample in the palm knowledge base. Can someone help me find that if it > exists anywhere on the internet. Any help would be highly appreciated. > > "Adrian Nicolaiev" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > Is there a way to capture the user's signature on the palm and store it > in > > > the palm os database? How would it be stored in the database? > > > > Using NSBasic is as simple as this: > > (printed source code): > > > > --------------------------------------------------- > > Project = signature1 > > Program > > Startup Code > > Sub main() > > Global theSignature as String > > End Sub > > --------------------------------------------------- > > Project = signature1 > > Form Object for form = Screen1004/Screen1004 > > Id # 1006 But1006/Erase Signature > > Sub object1006() > > sig.EraseSignature > > End Sub > > --------------------------------------------------- > > Project = signature1 > > Form Object for form = Screen1004/Screen1004 > > Id # 1007 But1007/Start Capture > > Sub object1007() > > sig.startSignatureCapture > > End Sub > > --------------------------------------------------- > > Project = signature1 > > Form Object for form = Screen1004/Screen1004 > > Id # 1008 But1008/End capture > > Sub object1008() > > theSignature=sig.endSignatureCapture( ) > > End Sub > > --------------------------------------------------- > > Project = signature1 > > Form Object for form = Screen1004/Screen1004 > > Id # 1009 But1009/Display Signature > > Sub object1009() > > sig.eraseSignature > > If len(theSignature)>1 Then > > sig.displaySignature theSignature > > End If > > End Sub > > --------------------------------------------------- > > > > This is a default Signature Capture Project that comes with NSBasic (Demo > > too). > > Download it and try: > > http://www.nsbasic.com/palm/info/demo.html > > NSBasic has everything you need to deal with database (PDB). > > > > Some examples using my Color Signature Capture feature: > > http://www.niconnect.com/NSBasic/page_04.htm > > http://www.niconnect.com/NSBasic/ColorDemo8.avi > > http://www.niconnect.com/NSBasic/colordemo50.GIF > > > > HTH, > > > > Adrian Nicolaiev > > http://www.niconnect.com > > > > > > > > > > > > -- > For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
