如何使用VB.Net连接指纹设备?

编程入门 行业动态 更新时间:2024-10-11 07:26:27
本文介绍了如何使用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(软件开发工具包)才能获取其扫描数据。 如需参考,请参阅文章@ www.devx/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 @ www.devx/security/Article/31576/1954[^]

更多推荐

如何使用VB.Net连接指纹设备?

本文发布于:2023-10-27 04:19:11,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1532289.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:指纹   如何使用   设备   Net   VB

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!