Click here to Skip to main content
Licence CPOL
First Posted 1 Feb 2008
Views 16,810
Downloads 407
Bookmarked 27 times

PDA / Pocket PC Signature Capturing and Saving as BMP

By | 1 Feb 2008 | Article
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

Imports cetestapp.SignaturePDA

declare these two as global variables

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

Add following code to your form load event

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

'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

cSignature.Clear(True)

License

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

About the Author

Agha Zair Ali



Pakistan Pakistan

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThanks Pinmemberspekkie12:48 22 Sep '08  
GeneralHi PinmemberRavenet4:43 1 Feb '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 1 Feb 2008
Article Copyright 2008 by Agha Zair Ali
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid