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/

Reply via email to