Click here to Skip to main content
15,886,689 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi everybody ,
please, I want to connect to fingerprint device to get log data for Employees.

Note: I just know an IP-address only for this device!
There is an application used to get this data, but I want to get this data with my own application.
Posted
Updated 25-Jul-16 2:17am
v2
Comments
Member 12609377 30-Jun-16 5:11am    
Hi fathynabil, can I know how did you accessed the sdk files of your fingerprint device? and can I know which company's device you are using? thank you.
Dave Kreskowiak 25-Jul-16 9:01am    
Considering this question is 5 years old, it's very unlikely you're ever going to get an answer. Do not do this. Start you're own thread and ask your own question.

Did you try anything? Google?

You need a SDK for that, either a 3rd party or write your own!
Have a look at this: Free cource code Fingerprint comparison[^]

Also, look at this article:
Fingerprint Reader Integration using the M2SYS SDK[^]

BTW, please don't say that the article is in C#
 
Share this answer
 
Comments
Smithers-Jones 7-Apr-11 6:35am    
Good answer. :thumbsup:
Sandeep Mewara 7-Apr-11 8:12am    
Thanks.
fathynabil 7-Apr-11 9:28am    
Realy good answer , But i didn't mean that !! :( i'm asking about How to download the log file for this machine into my app without using him app,it can be get with this machine
thnx for your interest & time
Smithers-Jones 7-Apr-11 9:37am    
Well, your question was a bit vague. But I see you already found a solution to your problem.
fathynabil 7-Apr-11 9:40am    
yes jones ;)
i found it , thnx for ur time ;)
hi , all
i'm found the solution
i think this My need :))))

'' Using C++

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using zkemkeeper;
using System.Text;
using System.Windows.Forms;


namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            int count = 0;
           zkemkeeper.CZKEMClass axczkem1 = new zkemkeeper.CZKEMClass();
            bool bIsConnected = false;
            string ip = "192.168.140.254";//write here IP Address of your biomatric m/c
            int port = 4370;
            bIsConnected = axczkem1.Connect_Net(ip, port);
            if (bIsConnected == true)
            {
                MessageBox.Show("Connection established!!!" );

                bool ret = axczkem1.ReadAllGLogData(1);
                if (ret)
                {
                    int a = 0;
                    int b = 0;
                    int c = 0;
                    int d = 0;
                    int ee = 0;
                    int f = 0;
                    int g = 0;
                    int h = 0;
                    int i = 0;
                    int j = 0;
                    int k = 0;
                    int l = 0;
                    int m = 0;
                    int n = 0;
                    int o = 0;
                    while (axczkem1.GetAllGLogData (1, ref a, ref b, ref c, ref k, ref l, ref d, ref m, ref ee, ref f, ref g))
                    {
                        if (ee == 7 && m == 4 && d == 2011)
                        {
                            count++;
                            if (b == //any Employee No)
                            {
                                MessageBox.Show(b.ToString() + " hour: " + f + "  Min: " + g);
                                MessageBox.Show(k.ToString() + " " + l.ToString());

                            }
                        }

                    }
                    //MessageBox.Show(count.ToString ());
                }

            }
            else
                MessageBox.Show("cannot Connection!!!");

            axczkem1.Disconnect();

        }
    }
}


thnx , best regards
 
Share this answer
 
v2
Comments
Saifal 30-Jan-14 2:52am    
I know this old post but i am having some problem.

the above code is running fine but it employee code/enroll number is returning 0. how can i get employee or enroll number.

Thanks in advance
Sarfaraz Ahamd 23-Feb-14 2:10am    
This Code has problem in VS2012 please help fore that
liendavid 24-Dec-15 21:38pm    
using zkemkeeper?
Please sent for me zkemkeeper.dll? Thank!
Member 12988559 8-Feb-17 2:21am    
sir i am using zkmekeeper
please data delete for machine query vb.net 2013 :(
Member 13599003 29-Dec-17 5:30am    
please guys, i want to connect fingerprint with vb 2012 for examination verification system but yet to get the code
I think you need the fingerprint device's SDK (software development kit) in order to get its scan data.

For reference see article @ http://www.devx.com/security/Article/31576/1954[^]
 
Share this answer
 
Comments
fathynabil 7-Apr-11 6:27am    
i will try it , thnx '_'
Wild-Programmer 7-Apr-11 6:51am    
My pleasure :)
Smithers-Jones 7-Apr-11 6:36am    
5'ed
Wild-Programmer 7-Apr-11 6:51am    
Thanks Jones :)
Member 14029982 25-Oct-18 17:29pm    
ihave the next cuestion

Private Sub CZKEM1_OnAttTransaction(ByVal EnrollNumber As Long, ByVal IsInValid As Long, _
ByVal AttState As Long, ByVal VerifyMethod As Long, ByVal Year As Long, ByVal Month As Long, _
ByVal Day As Long, ByVal Hour As Long, ByVal Minute As Long, ByVal Second As Long)


Text1.Text = Text1.Text & "Att Transaction: " & EnrollNumber & " " & AttState & " " & Year & "-" & _
Month & "-" & Day & " " & Hour & ":" & Minute & ":" & Second & _
Chr(13) & Chr(10)

this code


this code results in this output format .. somebody has an idea why ..
this is at the moment of checking with the finger which does not match the data

thanks

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