如何使用VB.Net连接指纹设备? [英] How to connect at fingerprint device using VB.Net?

查看:96
本文介绍了如何使用VB.Net连接指纹设备?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

拜托,我想连接指纹设备获取员工的日志数据。



注意:我只知道这个设备的IP地址!

有一个应用程序用来获取这些数据,但我想用我自己的应用程序获取这些数据。

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.

推荐答案

你有没有尝试过? Google?



您需要一个SDK,无论是第三方还是自己编写!

看看这个:免费资源代码指纹比较 [ ^ ]



另外,看看在这篇文章:

使用M2SYS SDK进行指纹识别器集成 [ ^ ]



BTW,请不要说文章是在C#
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#


所有

我是找到解决方案

i认为这是我的需要:))))



''使用C ++



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,最好的问候



thnx , best regards


我认为您需要指纹设备的SDK(软件开发工具包)才能获取其扫描数据。



如需参考,请参阅文章@ < a href =http://www.devx.com/security/Article/31576/1954> http://www.devx.com/security/Article/31576/1954 [ ^ ]
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[^]


这篇关于如何使用VB.Net连接指纹设备?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆