Click here to Skip to main content
15,881,882 members
Articles / Mobile Apps / Windows Mobile
Article

PDA / Pocket PC Signature Capturing and Saving as BMP

Rate me:
Please Sign up or sign in to vote.
3.38/5 (5 votes)
1 Feb 2008CPOL 35.8K   999   30   2
A way to capture signature on Pocket PC and saving as BMP file

Introduction

This control class allows a user to take a signature, and save it as BMP file in the Pocket PC.

Background

I was looking for a free Signature control written in VB.net but did not find any help regarding that, but I found an article on codeproject.com regarding capturing the signatures but it was written in C# (you can find the article here). So I decided to use the idea and write the code again in VB.net in a pretty simple way so that it will be more easy and useable for everyone.

Using the code

add reference

VB.NET
Imports cetestapp.SignaturePDA

declare these two as global variables

VB.NET
//
Private cSignature As New Sigature
Private AppPath As String = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase)
//

Add following code to your form load event

VB.NET
cSignature.Location = pnlSignature.Location
cSignature.Size = pnlSignature.Size
Me.Controls.Add(cSignature)
cSignature.Clear(True)
Cursor.Current = Cursors.Default
cSignature.SetPenColor(Color.Blue)
cSignature.Focus()

On save button click event add the following code snippt

VB.NET
'Save to a File

Cursor.Current = Cursors.WaitCursor
cSignature.Save(Path.Combine(AppPath, "CapturedSignature1.bmp"))
Cursor.Current = Cursors.Default

On clear button click event add this

VB.NET
cSignature.Clear(True)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralThanks Pin
spekkie22-Sep-08 12:48
spekkie22-Sep-08 12:48 
GeneralHi Pin
Ravenet1-Feb-08 4:43
Ravenet1-Feb-08 4:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.