Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Heloo friends, i am working on a .net window application using c# my question is i want to save a ink digital signature in sql server through pen tablet, i have created a form and two button save,clear and a tool in which user can sign on so i have a request that may i get the source code that i can save these signature in sqlserver against his id, i will thankful to you if you can help me to short-out this problem.
thanks in advance..
Posted

1 solution

In sql server you have to create one table for storing this .

See the below steps

1) create table like EmployeeLogin (id bigint , digitalsign varbinary(MAX))
2) covert your digital sign which ever data received on form into ByteArray.
3) Create one SP to insert / update information on above created table.
4) call this SP along with parameter (id and digitalsign ) on save button.

I have some questions
1) What you have received on winform for digital sign.
2) which control you are using to display this digital sign on form.
3) are you able to see the data from code of that control ?
 
Share this answer
 
Comments
Rajendra Koranga 2-Feb-12 0:01am    
Hi Rahul,in window form i have inported the microsoft ink picture to sign ,after signing on the ink picture tool i want just click on the save button and save button will render the form and clear the sign on the ink picture, in the other form this sigh will display in the text box , in this form i have selected a particular id, and against this id i want to save this signature in the sql server...

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900