Click here to Skip to main content
15,881,898 members
Home / Discussions / C#
   

C#

 
AnswerRe: printDocument Pin
Gerry Schmitz1-Oct-20 19:11
mveGerry Schmitz1-Oct-20 19:11 
GeneralRe: printDocument Pin
Member 149437371-Oct-20 22:54
Member 149437371-Oct-20 22:54 
AnswerRe: printDocument Pin
OriginalGriff1-Oct-20 20:03
mveOriginalGriff1-Oct-20 20:03 
GeneralRe: printDocument Pin
Member 149437371-Oct-20 22:37
Member 149437371-Oct-20 22:37 
GeneralRe: printDocument Pin
OriginalGriff1-Oct-20 22:40
mveOriginalGriff1-Oct-20 22:40 
QuestionHow to compare on DPFP.Template to another DPFP.Template Pin
Member 144684061-Oct-20 3:07
Member 144684061-Oct-20 3:07 
AnswerRe: How to compare on DPFP.Template to another DPFP.Template Pin
Gerry Schmitz1-Oct-20 4:49
mveGerry Schmitz1-Oct-20 4:49 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Member 144684061-Oct-20 8:39
Member 144684061-Oct-20 8:39 
A fingerprint template in c#

I want to compare fingerprints between them. The templates are already stored in MySQL database.

streamCompare = new MemoryStream((Byte[])lignemysql["FingerprintRight"]);
TemplateCompare = new DPFP.Template(streamCompare);

ImmatriculationCompare = (String)lignemysql["Immatriculation"];

foreach (DataRow lignemysqlTemp in tablemysqlTemp.Rows)
{
if (lignemysqlTemp["FingerprintRight"] != DBNull.Value)
{
streamTemp = new MemoryStream((Byte[])lignemysqlTemp["FingerprintRight"]);
TemplateTemp = new DPFP.Template(streamTemp);

if (TemplateCompare == TemplateTemp)
{
MessageBox.Show("Fingerprints matched"]);
}

}
}

I want you to help me please
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Gerry Schmitz2-Oct-20 4:31
mveGerry Schmitz2-Oct-20 4:31 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Member 144684062-Oct-20 20:35
Member 144684062-Oct-20 20:35 
GeneralRe: How to compare on DPFP.Template to another DPFP.Template Pin
Gerry Schmitz3-Oct-20 3:11
mveGerry Schmitz3-Oct-20 3:11 
QuestionCopy DataTable into a Ms Access table Pin
Member 1464251030-Sep-20 21:31
Member 1464251030-Sep-20 21:31 
AnswerRe: Copy DataTable into a Ms Access table Pin
OriginalGriff30-Sep-20 21:59
mveOriginalGriff30-Sep-20 21:59 
GeneralRe: Copy DataTable into a Ms Access table Pin
Member 1464251030-Sep-20 22:15
Member 1464251030-Sep-20 22:15 
GeneralRe: Copy DataTable into a Ms Access table Pin
OriginalGriff30-Sep-20 23:06
mveOriginalGriff30-Sep-20 23:06 
AnswerRe: Copy DataTable into a Ms Access table Pin
Gerry Schmitz1-Oct-20 5:14
mveGerry Schmitz1-Oct-20 5:14 
Questionwant to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
shwetaliv23-Sep-20 2:12
shwetaliv23-Sep-20 2:12 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
OriginalGriff23-Sep-20 2:30
mveOriginalGriff23-Sep-20 2:30 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Dave Kreskowiak23-Sep-20 4:07
mveDave Kreskowiak23-Sep-20 4:07 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Victor Nijegorodov23-Sep-20 8:45
Victor Nijegorodov23-Sep-20 8:45 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Mycroft Holmes23-Sep-20 12:12
professionalMycroft Holmes23-Sep-20 12:12 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
GenJerDan24-Sep-20 21:37
GenJerDan24-Sep-20 21:37 
GeneralRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Mycroft Holmes25-Sep-20 12:21
professionalMycroft Holmes25-Sep-20 12:21 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
Richard Andrew x6423-Sep-20 13:48
professionalRichard Andrew x6423-Sep-20 13:48 
AnswerRe: want to insert leave dates for weekdays excluding weekends from given date range using c# ASP.net Pin
shwetaliv23-Sep-20 20:41
shwetaliv23-Sep-20 20:41 

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.