在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 中控考勤机开发二次开发包及说明

中控考勤机开发二次开发包及说明

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:60.71M
  • 下载次数:14
  • 浏览次数:194
  • 发布时间:2023-02-20
  • 实例类别:C#语言基础
  • 发 布 人:635827443
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】中控考勤机开发二次开发包及说明

中控科技指纹考勤机,人脸机二次开发包。脱机版设备可用

【实例截图】



//If your device supports the TCP/IP communications, you can refer to this.
        //when you are using the tcp/ip communication,you can distinguish different devices by their IP address.
        private void btnConnect_Click(object sender, EventArgs e)
        {
            if (txtIP.Text.Trim() == "" || txtPort.Text.Trim() == "")
            {
                MessageBox.Show("IP and Port cannot be null", "Error");
                return;
            }
            int idwErrorCode = 0;

            Cursor = Cursors.WaitCursor;
            if (btnConnect.Text == "DisConnect")
            {
                axCZKEM1.Disconnect();
                bIsConnected = false;
                btnConnect.Text = "Connect";
                lblState.Text = "Current State:DisConnected";
                Cursor = Cursors.Default;
                return;
            }

            bIsConnected = axCZKEM1.Connect_Net(txtIP.Text, Convert.ToInt32(txtPort.Text));
            if (bIsConnected == true)
            {
                btnConnect.Text = "DisConnect";
                btnConnect.Refresh();
                lblState.Text = "Current State:Connected";
                iMachineNumber = 1;//In fact,when you are using the tcp/ip communication,this parameter will be ignored,that is any integer will all right.Here we use 1.
                axCZKEM1.RegEvent(iMachineNumber, 65535);//Here you can register the realtime events that you want to be triggered(the parameters 65535 means registering all)
            }
            else
            {
                axCZKEM1.GetLastError(ref idwErrorCode);
                MessageBox.Show("Unable to connect the device,ErrorCode=" idwErrorCode.ToString(), "Error");
            }
            Cursor = Cursors.Default;
        }

【核心代码】

.
├── 好例子网_中控考勤机开发二次开发包及说明.zip
└── 中控考勤机开发二次开发包及说明
    ├── APP
    │   ├── APP.csproj
    │   ├── APP.csproj.user
    │   ├── APP.sln
    │   ├── APP.suo
    │   ├── App.Designer.cs
    │   ├── App.cs
    │   ├── App.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── Settings.cs
    │   ├── app.config
    │   ├── bin
    │   │   └── Debug
    │   │       ├── APP.exe
    │   │       ├── APP.exe.config
    │   │       ├── APP.pdb
    │   │       ├── APP.vshost.exe
    │   │       └── Interop.zkemkeeper.dll
    │   └── obj
    │       └── Debug
    │           ├── APP.App.resources
    │           ├── APP.Properties.Resources.resources
    │           ├── APP.csproj.FileListAbsolute.txt
    │           ├── APP.csproj.GenerateResource.Cache
    │           ├── APP.csproj.ResolveComReference.cache
    │           ├── APP.exe
    │           ├── APP.pdb
    │           ├── Interop.zkemkeeper.dll
    │           ├── Refactor
    │           └── TempPE
    ├── AccessControl
    │   ├── ACMain.Designer.cs
    │   ├── ACMain.cs
    │   ├── ACMain.resx
    │   ├── Access.sln
    │   ├── Access.suo
    │   ├── AccessControl.csproj
    │   ├── AccessControl.csproj.user
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   └── x86
    │   │       └── Release
    │   │           ├── AccessControl.exe
    │   │           ├── AccessControl.pdb
    │   │           ├── AccessControl.vshost.exe
    │   │           ├── AccessControl.vshost.exe.manifest
    │   │           └── Interop.zkemkeeper.dll
    │   ├── images
    │   │   └── top.jpg
    │   └── obj
    │       ├── Debug
    │       │   └── TempPE
    │       └── x86
    │           └── Release
    │               ├── AccessControl.ACMain.resources
    │               ├── AccessControl.Properties.Resources.resources
    │               ├── AccessControl.csproj.FileListAbsolute.txt
    │               ├── AccessControl.csproj.GenerateResource.Cache
    │               ├── AccessControl.csproj.ResolveComReference.cache
    │               ├── AccessControl.exe
    │               ├── AccessControl.pdb
    │               ├── Interop.zkemkeeper.dll
    │               └── TempPE
    │                   └── Properties.Resources.Designer.cs.dll
    ├── AttLogs
    │   ├── AttLogs.csproj
    │   ├── AttLogs.csproj.user
    │   ├── AttLogs.sln
    │   ├── AttLogs.suo
    │   ├── AttLogsMain.Designer.cs
    │   ├── AttLogsMain.cs
    │   ├── AttLogsMain.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── AttLogs.exe
    │   │   │   ├── AttLogs.pdb
    │   │   │   ├── AttLogs.vshost.exe
    │   │   │   └── Interop.zkemkeeper.dll
    │   │   └── Release
    │   │       ├── AttLogs.exe
    │   │       ├── AttLogs.pdb
    │   │       ├── AttLogs.vshost.exe
    │   │       ├── AttLogs.vshost.exe.manifest
    │   │       └── Interop.zkemkeeper.dll
    │   ├── images
    │   │   └── top550.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── AttLogs.AttLogsMain.resources
    │       │   ├── AttLogs.Properties.Resources.resources
    │       │   ├── AttLogs.csproj.FileListAbsolute.txt
    │       │   ├── AttLogs.csproj.GenerateResource.Cache
    │       │   ├── AttLogs.csproj.ResolveComReference.cache
    │       │   ├── AttLogs.exe
    │       │   ├── AttLogs.pdb
    │       │   ├── Interop.zkemkeeper.dll
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── AttLogs.AttLogsMain.resources
    │           ├── AttLogs.Properties.Resources.resources
    │           ├── AttLogs.csproj.FileListAbsolute.txt
    │           ├── AttLogs.csproj.GenerateResource.Cache
    │           ├── AttLogs.csproj.ResolveComReference.cache
    │           ├── AttLogs.exe
    │           ├── AttLogs.pdb
    │           ├── Interop.zkemkeeper.dll
    │           ├── Refactor
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── Bell
    │   ├── Bell.Designer.cs
    │   ├── Bell.cs
    │   ├── Bell.csproj
    │   ├── Bell.csproj.user
    │   ├── Bell.resx
    │   ├── Bell.sln
    │   ├── Bell.suo
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── app.config
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── Bell.exe
    │   │   │   ├── Bell.exe.config
    │   │   │   ├── Bell.pdb
    │   │   │   ├── Bell.vshost.exe
    │   │   │   ├── Bell.vshost.exe.config
    │   │   │   ├── Bell.vshost.exe.manifest
    │   │   │   └── Interop.zkemkeeper.dll
    │   │   └── Release
    │   │       ├── Bell.exe
    │   │       ├── Bell.exe.config
    │   │       ├── Bell.pdb
    │   │       ├── Bell.vshost.exe
    │   │       ├── Bell.vshost.exe.manifest
    │   │       └── Interop.zkemkeeper.dll
    │   └── obj
    │       ├── Debug
    │       │   ├── Bell.Bell.resources
    │       │   ├── Bell.Properties.Resources.resources
    │       │   ├── Bell.csproj.FileListAbsolute.txt
    │       │   ├── Bell.csproj.GenerateResource.Cache
    │       │   ├── Bell.csproj.ResolveComReference.cache
    │       │   ├── Bell.exe
    │       │   ├── Bell.pdb
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── Refactor
    │       │   └── TempPE
    │       └── Release
    │           ├── Bell.Bell.resources
    │           ├── Bell.Properties.Resources.resources
    │           ├── Bell.csproj.FileListAbsolute.txt
    │           ├── Bell.csproj.GenerateResource.Cache
    │           ├── Bell.csproj.ResolveComReference.cache
    │           ├── Bell.exe
    │           ├── Bell.pdb
    │           ├── Interop.zkemkeeper.dll
    │           ├── Refactor
    │           └── TempPE
    ├── Card Management
    │   ├── Card Management.sln
    │   ├── Card Management.suo
    │   ├── Card.csproj
    │   ├── Card.csproj.user
    │   ├── CardMain.Designer.cs
    │   ├── CardMain.cs
    │   ├── CardMain.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── CardManagement.exe
    │   │       ├── CardManagement.pdb
    │   │       ├── CardManagement.vshost.exe
    │   │       ├── CardManagement.vshost.exe.manifest
    │   │       └── Interop.zkemkeeper.dll
    │   ├── images
    │   │   └── top.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── Card.csproj.FileListAbsolute.txt
    │       │   ├── Card.csproj.ResolveComReference.cache
    │       │   ├── Interop.zkemkeeper.dll
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── Card.CardMain.resources
    │           ├── Card.Properties.Resources.resources
    │           ├── Card.csproj.FileListAbsolute.txt
    │           ├── Card.csproj.GenerateResource.Cache
    │           ├── Card.csproj.ResolveComReference.cache
    │           ├── CardManagement.exe
    │           ├── CardManagement.pdb
    │           ├── Interop.zkemkeeper.dll
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── ConsoleMThreads
    │   ├── ConsoleMThreads.csproj
    │   ├── ConsoleMThreads.csproj.user
    │   ├── ConsoleMThreads.sln
    │   ├── ConsoleMThreads.suo
    │   ├── Program.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── ConsoleMThreads.exe
    │   │       ├── ConsoleMThreads.pdb
    │   │       ├── ConsoleMThreads.vshost.exe
    │   │       ├── ConsoleMThreads.vshost.exe.manifest
    │   │       └── Interop.zkemkeeper.dll
    │   ├── data
    │   │   ├── AttLogs.ldb
    │   │   └── AttLogs.mdb
    │   └── obj
    │       ├── Debug
    │       │   ├── ConsoleMThreads.csproj.FileListAbsolute.txt
    │       │   ├── ConsoleMThreads.csproj.ResolveComReference.cache
    │       │   ├── Interop.zkemkeeper.dll
    │       │   └── TempPE
    │       └── Release
    │           ├── ConsoleMThreads.csproj.FileListAbsolute.txt
    │           ├── ConsoleMThreads.csproj.ResolveComReference.cache
    │           ├── ConsoleMThreads.exe
    │           ├── ConsoleMThreads.pdb
    │           ├── Interop.zkemkeeper.dll
    │           └── TempPE
    ├── Device Management
    │   ├── Device.csproj
    │   ├── Device.csproj.user
    │   ├── DeviceMain.Designer.cs
    │   ├── DeviceMain.cs
    │   ├── DeviceMain.resx
    │   ├── DeviceManagement.sln
    │   ├── DeviceManagement.suo
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── Device.exe
    │   │       ├── Device.pdb
    │   │       ├── Device.vshost.exe
    │   │       ├── Device.vshost.exe.manifest
    │   │       └── Interop.zkemkeeper.dll
    │   ├── images
    │   │   └── top955.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── Device.csproj.FileListAbsolute.txt
    │       │   ├── Device.csproj.ResolveComReference.cache
    │       │   ├── Interop.zkemkeeper.dll
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── Device.DeviceMain.resources
    │           ├── Device.Properties.Resources.resources
    │           ├── Device.csproj.FileListAbsolute.txt
    │           ├── Device.csproj.GenerateResource.Cache
    │           ├── Device.csproj.ResolveComReference.cache
    │           ├── Device.exe
    │           ├── Device.pdb
    │           ├── Interop.zkemkeeper.dll
    │           ├── Refactor
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── Online Enroll
    │   ├── OnEnrollMain.Designer.cs
    │   ├── OnEnrollMain.cs
    │   ├── OnEnrollMain.resx
    │   ├── OnlineEnroll.csproj
    │   ├── OnlineEnroll.csproj.user
    │   ├── OnlineEnroll.sln
    │   ├── OnlineEnroll.suo
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── Interop.zkemkeeper.dll
    │   │       ├── OnlineEnroll.exe
    │   │       ├── OnlineEnroll.pdb
    │   │       ├── OnlineEnroll.vshost.exe
    │   │       └── OnlineEnroll.vshost.exe.manifest
    │   ├── data
    │   │   └── Templates.mdb
    │   ├── images
    │   │   └── top485.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── OnlineEnroll.csproj.FileListAbsolute.txt
    │       │   ├── OnlineEnroll.csproj.ResolveComReference.cache
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── Interop.zkemkeeper.dll
    │           ├── OnlineEnroll.OnEnrollMain.resources
    │           ├── OnlineEnroll.Properties.Resources.resources
    │           ├── OnlineEnroll.csproj.FileListAbsolute.txt
    │           ├── OnlineEnroll.csproj.GenerateResource.Cache
    │           ├── OnlineEnroll.csproj.ResolveComReference.cache
    │           ├── OnlineEnroll.exe
    │           ├── OnlineEnroll.pdb
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── Others
    │   ├── Others.csproj
    │   ├── Others.csproj.user
    │   ├── Others.sln
    │   ├── Others.suo
    │   ├── OthersMain.Designer.cs
    │   ├── OthersMain.cs
    │   ├── OthersMain.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── Interop.zkemkeeper.dll
    │   │       ├── Others.exe
    │   │       ├── Others.pdb
    │   │       ├── Others.vshost.exe
    │   │       └── Others.vshost.exe.manifest
    │   ├── images
    │   │   ├── top.jpg
    │   │   ├── top875.jpg
    │   │   └── zk.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── Others.csproj.FileListAbsolute.txt
    │       │   ├── Others.csproj.ResolveComReference.cache
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── Interop.zkemkeeper.dll
    │           ├── Others.OthersMain.resources
    │           ├── Others.Properties.Resources.resources
    │           ├── Others.csproj.FileListAbsolute.txt
    │           ├── Others.csproj.GenerateResource.Cache
    │           ├── Others.csproj.ResolveComReference.cache
    │           ├── Others.exe
    │           ├── Others.pdb
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── PullSpecialInterface
    │   ├── AttLogs.suo
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── PullSpecial.csproj
    │   ├── PullSpecial.csproj.user
    │   ├── PullSpecial.sln
    │   ├── PullSpecial.suo
    │   ├── PullSpecialMain.Designer.cs
    │   ├── PullSpecialMain.cs
    │   ├── PullSpecialMain.resx
    │   ├── SearchforUSBCom.cs
    │   ├── Settings.cs
    │   ├── UserPhto.suo
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── Interop.zkemkeeper.dll
    │   │   │   ├── PullSpecial.exe
    │   │   │   ├── PullSpecial.pdb
    │   │   │   ├── PullSpecial.vshost.exe
    │   │   │   ├── PullSpecial.vshost.exe.manifest
    │   │   │   └── UserPhto.vshost.exe.manifest
    │   │   ├── Release
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── Interop.zkemkeeper.dll
    │   │           ├── PullSpecial.exe
    │   │           ├── PullSpecial.pdb
    │   │           ├── PullSpecial.vshost.exe
    │   │           └── PullSpecial.vshost.exe.manifest
    │   ├── images
    │   │   └── top550.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── AttLogs.csproj.FileListAbsolute.txt
    │       │   ├── AttLogs.csproj.ResolveComReference.cache
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── PullSpecial.Properties.Resources.resources
    │       │   ├── PullSpecial.PullSpecialMain.resources
    │       │   ├── PullSpecial.csproj.FileListAbsolute.txt
    │       │   ├── PullSpecial.csproj.GenerateResource.Cache
    │       │   ├── PullSpecial.csproj.ResolveComReference.cache
    │       │   ├── PullSpecial.exe
    │       │   ├── PullSpecial.pdb
    │       │   ├── Refactor
    │       │   ├── TempPE
    │       │   │   └── Properties.Resources.Designer.cs.dll
    │       │   ├── UserPhto.Properties.Resources.resources
    │       │   ├── UserPhto.UserPhtoMain.resources
    │       │   ├── UserPhto.csproj.FileListAbsolute.txt
    │       │   ├── UserPhto.csproj.GenerateResource.Cache
    │       │   └── UserPhto.csproj.ResolveComReference.cache
    │       ├── Release
    │       │   ├── AttLogs.Properties.Resources.resources
    │       │   ├── AttLogs.csproj.FileListAbsolute.txt
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── TempPE
    │       │   │   └── Properties.Resources.Designer.cs.dll
    │       │   ├── UserPhto.Properties.Resources.resources
    │       │   ├── UserPhto.UserPhtoMain.resources
    │       │   ├── UserPhto.csproj.FileListAbsolute.txt
    │       │   ├── UserPhto.csproj.GenerateResource.Cache
    │       │   ├── UserPhto.csproj.ResolveComReference.cache
    │       │   ├── UserPhto.exe
    │       │   └── UserPhto.pdb
    │       └── x86
    │           └── Debug
    │               ├── Interop.zkemkeeper.dll
    │               ├── PullSpecial.Properties.Resources.resources
    │               ├── PullSpecial.PullSpecialMain.resources
    │               ├── PullSpecial.csproj.FileListAbsolute.txt
    │               ├── PullSpecial.csproj.GenerateResource.Cache
    │               ├── PullSpecial.csproj.ResolveComReference.cache
    │               ├── PullSpecial.exe
    │               ├── PullSpecial.pdb
    │               └── TempPE
    │                   └── Properties.Resources.Designer.cs.dll
    ├── RTEvents
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── RTEvents.csproj
    │   ├── RTEvents.csproj.user
    │   ├── RTEvents.sln
    │   ├── RTEvents.suo
    │   ├── RTEventsMain.Designer.cs
    │   ├── RTEventsMain.cs
    │   ├── RTEventsMain.resx
    │   ├── SearchforUSBCom.cs
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── AxInterop.zkemkeeper.dll
    │   │   │   ├── Interop.zkemkeeper.dll
    │   │   │   ├── RTEvents.exe
    │   │   │   ├── RTEvents.pdb
    │   │   │   └── RTEvents.vshost.exe
    │   │   ├── Release
    │   │   │   ├── AxInterop.zkemkeeper.dll
    │   │   │   ├── Interop.zkemkeeper.dll
    │   │   │   ├── RTEvents.exe
    │   │   │   ├── RTEvents.pdb
    │   │   │   ├── RTEvents.vshost.exe
    │   │   │   └── RTEvents.vshost.exe.manifest
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── AxInterop.zkemkeeper.dll
    │   │           ├── Interop.zkemkeeper.dll
    │   │           ├── RTEvents.exe
    │   │           ├── RTEvents.pdb
    │   │           ├── RTEvents.vshost.exe
    │   │           └── RTEvents.vshost.exe.manifest
    │   ├── images
    │   │   └── top485.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── AxInterop.zkemkeeper.dll
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── RTEvents.Properties.Resources.resources
    │       │   ├── RTEvents.RTEventsMain.resources
    │       │   ├── RTEvents.csproj.FileListAbsolute.txt
    │       │   ├── RTEvents.csproj.GenerateResource.Cache
    │       │   ├── RTEvents.csproj.ResolveComReference.cache
    │       │   ├── RTEvents.exe
    │       │   ├── RTEvents.pdb
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       ├── Release
    │       │   ├── AxInterop.zkemkeeper.dll
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── RTEvents.Properties.Resources.resources
    │       │   ├── RTEvents.RTEventsMain.resources
    │       │   ├── RTEvents.csproj.FileListAbsolute.txt
    │       │   ├── RTEvents.csproj.GenerateResource.Cache
    │       │   ├── RTEvents.csproj.ResolveComReference.cache
    │       │   ├── RTEvents.exe
    │       │   ├── RTEvents.pdb
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── x86
    │           └── Debug
    │               ├── AxInterop.zkemkeeper.dll
    │               ├── Interop.zkemkeeper.dll
    │               ├── RTEvents.Properties.Resources.resources
    │               ├── RTEvents.RTEventsMain.resources
    │               ├── RTEvents.csproj.FileListAbsolute.txt
    │               ├── RTEvents.csproj.GenerateResource.Cache
    │               ├── RTEvents.csproj.ResolveComReference.cache
    │               ├── RTEvents.exe
    │               ├── RTEvents.pdb
    │               ├── Refactor
    │               └── TempPE
    │                   └── Properties.Resources.Designer.cs.dll
    ├── SDK
    │   ├── x64
    │   │   ├── Delete_SDK x64.bat
    │   │   ├── Register_SDK x64.bat
    │   │   ├── ZKCommuCryptoClient.dll
    │   │   ├── commpro.dll
    │   │   ├── comms.dll
    │   │   ├── plcommpro.dll
    │   │   ├── plcomms.dll
    │   │   ├── plrscagent.dll
    │   │   ├── plrscomm.dll
    │   │   ├── pltcpcomm.dll
    │   │   ├── plusbcomm.dll
    │   │   ├── rscagent.dll
    │   │   ├── rscomm.dll
    │   │   ├── tcpcomm.dll
    │   │   ├── usbcomm.dll
    │   │   ├── usbstd.dll
    │   │   ├── zkemkeeper.dll
    │   │   ├── zkemsdk.dll
    │   │   └── 使用64位SDK注意事项.txt
    │   └── x86
    │       ├── Delete_SDK.bat
    │       ├── Register_SDK.bat
    │       ├── ZKCommuCryptoClient.dll
    │       ├── commpro.dll
    │       ├── comms.dll
    │       ├── plcommpro.dll
    │       ├── plcomms.dll
    │       ├── plrscagent.dll
    │       ├── plrscomm.dll
    │       ├── pltcpcomm.dll
    │       ├── plusbcomm.dll
    │       ├── rscagent.dll
    │       ├── rscomm.dll
    │       ├── tcpcomm.dll
    │       ├── usbcomm.dll
    │       ├── usbstd.dll
    │       ├── zkemkeeper.dll
    │       └── zkemsdk.dll
    ├── Short Messages
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SMSMain.Designer.cs
    │   ├── SMSMain.cs
    │   ├── SMSMain.resx
    │   ├── SearchforUSBCom.cs
    │   ├── Short Messages.sln
    │   ├── Short Messages.suo
    │   ├── ShortMessages.csproj
    │   ├── ShortMessages.csproj.user
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── Interop.zkemkeeper.dll
    │   │       ├── ShortMessages.exe
    │   │       ├── ShortMessages.pdb
    │   │       ├── ShortMessages.vshost.exe
    │   │       └── ShortMessages.vshost.exe.manifest
    │   ├── images
    │   │   └── top.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── ShortMessages.csproj.FileListAbsolute.txt
    │       │   ├── ShortMessages.csproj.ResolveComReference.cache
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── Interop.zkemkeeper.dll
    │           ├── ShortMessages.Properties.Resources.resources
    │           ├── ShortMessages.SMSMain.resources
    │           ├── ShortMessages.csproj.FileListAbsolute.txt
    │           ├── ShortMessages.csproj.GenerateResource.Cache
    │           ├── ShortMessages.csproj.ResolveComReference.cache
    │           ├── ShortMessages.exe
    │           ├── ShortMessages.pdb
    │           └── TempPE
    │               └── Properties.Resources.Designer.cs.dll
    ├── Udisk Data Management
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Raw.cs
    │   ├── Structs.cs
    │   ├── UDiskDataMain.Designer.cs
    │   ├── UDiskDataMain.cs
    │   ├── UDiskDataMain.resx
    │   ├── Udisk.csproj
    │   ├── Udisk.csproj.user
    │   ├── Udisk.sln
    │   ├── Udisk.suo
    │   ├── bin
    │   │   ├── Debug
    │   │   └── Release
    │   │       ├── Udisk.exe
    │   │       ├── Udisk.vshost.exe
    │   │       └── Udisk.vshost.exe.manifest
    │   ├── images
    │   │   └── top750.jpg
    │   └── obj
    │       ├── Debug
    │       │   └── TempPE
    │       │       └── Properties.Resources.Designer.cs.dll
    │       └── Release
    │           ├── TempPE
    │           │   └── Properties.Resources.Designer.cs.dll
    │           ├── Udisk.csproj.FileListAbsolute.txt
    │           ├── Udisk.csproj.GenerateResource.Cache
    │           ├── Udisk.exe
    │           ├── UdiskData.Properties.Resources.resources
    │           └── UdiskData.UDiskDataMain.resources
    ├── UserInfo
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── UserInfo.csproj
    │   ├── UserInfo.csproj.user
    │   ├── UserInfo.idc
    │   ├── UserInfo.sln
    │   ├── UserInfo.suo
    │   ├── UserInfoMain.Designer.cs
    │   ├── UserInfoMain.cs
    │   ├── UserInfoMain.resx
    │   ├── bin
    │   │   ├── Debug
    │   │   ├── x64
    │   │   │   └── Debug
    │   │   │       ├── Interop.zkemkeeper.dll
    │   │   │       ├── UserInfo.exe
    │   │   │       ├── UserInfo.pdb
    │   │   │       ├── UserInfo.vshost.exe
    │   │   │       └── UserInfo.vshost.exe.manifest
    │   │   └── x86
    │   │       ├── Debug
    │   │       │   ├── Interop.zkemkeeper.dll
    │   │       │   ├── UserInfo.exe
    │   │       │   └── UserInfo.pdb
    │   │       └── Release
    │   │           ├── Interop.zkemkeeper.dll
    │   │           ├── UserInfo.exe
    │   │           ├── UserInfo.pdb
    │   │           └── UserInfo.vshost.exe
    │   ├── images
    │   │   └── top.jpg
    │   └── obj
    │       ├── Debug
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── TempPE
    │       │   │   └── Properties.Resources.Designer.cs.dll
    │       │   ├── UserInfo.Properties.Resources.resources
    │       │   ├── UserInfo.UserInfoMain.resources
    │       │   ├── UserInfo.csproj.FileListAbsolute.txt
    │       │   ├── UserInfo.csproj.GenerateResource.Cache
    │       │   ├── UserInfo.csproj.ResolveComReference.cache
    │       │   ├── UserInfo.exe
    │       │   ├── UserInfo.pdb
    │       │   └── build.force
    │       ├── Release
    │       │   ├── Interop.zkemkeeper.dll
    │       │   ├── TempPE
    │       │   │   └── Properties.Resources.Designer.cs.dll
    │       │   ├── UserInfo.Properties.Resources.resources
    │       │   ├── UserInfo.UserInfoMain.resources
    │       │   ├── UserInfo.csproj.FileListAbsolute.txt
    │       │   ├── UserInfo.csproj.GenerateResource.Cache
    │       │   ├── UserInfo.csproj.ResolveComReference.cache
    │       │   ├── UserInfo.exe
    │       │   └── UserInfo.pdb
    │       ├── x64
    │       │   └── Debug
    │       │       ├── Interop.zkemkeeper.dll
    │       │       ├── TempPE
    │       │       │   └── Properties.Resources.Designer.cs.dll
    │       │       ├── UserInfo.Properties.Resources.resources
    │       │       ├── UserInfo.UserInfoMain.resources
    │       │       ├── UserInfo.csproj.FileListAbsolute.txt
    │       │       ├── UserInfo.csproj.GenerateResource.Cache
    │       │       ├── UserInfo.csproj.ResolveComReference.cache
    │       │       ├── UserInfo.exe
    │       │       ├── UserInfo.pdb
    │       │       └── build.force
    │       └── x86
    │           ├── Debug
    │           │   ├── Interop.zkemkeeper.dll
    │           │   ├── Refactor
    │           │   ├── TempPE
    │           │   │   └── Properties.Resources.Designer.cs.dll
    │           │   ├── UserInfo.Properties.Resources.resources
    │           │   ├── UserInfo.UserInfoMain.resources
    │           │   ├── UserInfo.csproj.FileListAbsolute.txt
    │           │   ├── UserInfo.csproj.GenerateResource.Cache
    │           │   ├── UserInfo.csproj.ResolveComReference.cache
    │           │   ├── UserInfo.exe
    │           │   └── UserInfo.pdb
    │           └── Release
    │               ├── Interop.zkemkeeper.dll
    │               ├── TempPE
    │               │   └── Properties.Resources.Designer.cs.dll
    │               ├── UserInfo.Properties.Resources.resources
    │               ├── UserInfo.UserInfoMain.resources
    │               ├── UserInfo.csproj.FileListAbsolute.txt
    │               ├── UserInfo.csproj.GenerateResource.Cache
    │               ├── UserInfo.csproj.ResolveComReference.cache
    │               ├── UserInfo.exe
    │               └── UserInfo.pdb
    ├── UserPhoto
    │   ├── Access.sln
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── SearchforUSBCom.cs
    │   ├── Settings.cs
    │   ├── UserPhoto.csproj
    │   ├── UserPhoto.csproj.user
    │   ├── UserPhoto.sln
    │   ├── UserPhoto.suo
    │   ├── UserPhto.suo
    │   ├── UserPhtoMain.Designer.cs
    │   ├── UserPhtoMain.cs
    │   ├── UserPhtoMain.resx
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── Interop.zkemkeeper.dll
    │   │   │   ├── Photo
    │   │   │   │   └── Thumbs.db
    │   │   │   ├── UserPhoto.exe
    │   │   │   ├── UserPhoto.pdb
    │   │   │   ├── UserPhoto.vshost.exe
    │   │   │   ├── commpro.pdb
    │   │   │   ├── comms.pdb
    │   │   │   ├── plcommpro.pdb
    │   │   │   ├── plcomms.pdb
    │   │   │   ├── plrscagent.pdb
    │   │   │   ├── plrscomm.pdb
    │   │   │   ├── pltcpcomm.pdb
    │   │   │   ├── plusbcomm.pdb
    │   │   │   ├── rscagent.pdb
    │   │   │   ├── rscomm.pdb
    │   │   │   ├── tcpcomm.pdb
    │   │   │   ├── usbcomm.pdb
    │   │   │   ├── usbstd.pdb
    │   │   │   ├── zkemkeeper.pdb
    │   │   │   └── zkemsdk.pdb
    │   │   └── Release
    │   │       ├── Interop.zkemkeeper.dll
    │   │       ├── Photo
    │   │       │   ├── 20130909104840-2.jpg.jpg
    │   │       │   └── Thumbs.db
    │   │       ├── UserPhoto.exe
    │   │       ├── UserPhoto.pdb
    │   │       ├── UserPhoto.vshost.exe
    │   │       ├── UserPhoto.vshost.exe.manifest
    │   │       ├── commpro.pdb
    │   │       ├── comms.pdb
    │   │       ├── plcommpro.pdb
    │   │       ├── plcomms.pdb
    │   │       ├── plrscagent.pdb
    │   │       ├── plrscomm.pdb
    │   │       ├── pltcpcomm.pdb
    │   │       ├── plusbcomm.pdb
    │   │       ├── rscagent.pdb
    │   │       ├── rscomm.pdb
    │   │       ├── tcpcomm.pdb
    │   │       ├── usbcomm.pdb
    │   │       ├── usbstd.pdb
    │   │       ├── zkemkeeper.pdb
    │   │       └── zkemsdk.pdb
    │   ├── commpro.pdb
    │   ├── comms.pdb
    │   ├── images
    │   │   └── top550.jpg
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── AttLogs.csproj.FileListAbsolute.txt
    │   │   │   ├── AttLogs.csproj.ResolveComReference.cache
    │   │   │   ├── Interop.zkemkeeper.dll
    │   │   │   ├── Refactor
    │   │   │   ├── TempPE
    │   │   │   │   └── Properties.Resources.Designer.cs.dll
    │   │   │   ├── UserPhoto.Properties.Resources.resources
    │   │   │   ├── UserPhoto.UserPhotoMain.resources
    │   │   │   ├── UserPhoto.csproj.FileListAbsolute.txt
    │   │   │   ├── UserPhoto.csproj.GenerateResource.Cache
    │   │   │   ├── UserPhoto.csproj.ResolveComReference.cache
    │   │   │   ├── UserPhoto.exe
    │   │   │   ├── UserPhoto.pdb
    │   │   │   ├── UserPhto.Properties.Resources.resources
    │   │   │   ├── UserPhto.UserPhtoMain.resources
    │   │   │   ├── UserPhto.csproj.FileListAbsolute.txt
    │   │   │   ├── UserPhto.csproj.GenerateResource.Cache
    │   │   │   ├── UserPhto.csproj.ResolveComReference.cache
    │   │   │   ├── UserPhto.exe
    │   │   │   └── UserPhto.pdb
    │   │   └── Release
    │   │       ├── AttLogs.Properties.Resources.resources
    │   │       ├── AttLogs.csproj.FileListAbsolute.txt
    │   │       ├── Interop.zkemkeeper.dll
    │   │       ├── Refactor
    │   │       ├── TempPE
    │   │       │   └── Properties.Resources.Designer.cs.dll
    │   │       ├── UserPhoto.Properties.Resources.resources
    │   │       ├── UserPhoto.UserPhotoMain.resources
    │   │       ├── UserPhoto.csproj.FileListAbsolute.txt
    │   │       ├── UserPhoto.csproj.GenerateResource.Cache
    │   │       ├── UserPhoto.csproj.ResolveComReference.cache
    │   │       ├── UserPhoto.exe
    │   │       ├── UserPhoto.pdb
    │   │       ├── UserPhto.Properties.Resources.resources
    │   │       ├── UserPhto.UserPhtoMain.resources
    │   │       ├── UserPhto.csproj.FileListAbsolute.txt
    │   │       ├── UserPhto.csproj.GenerateResource.Cache
    │   │       ├── UserPhto.csproj.ResolveComReference.cache
    │   │       ├── UserPhto.exe
    │   │       └── UserPhto.pdb
    │   ├── plcommpro.pdb
    │   ├── plcomms.pdb
    │   ├── plrscagent.pdb
    │   ├── plrscomm.pdb
    │   ├── pltcpcomm.pdb
    │   ├── plusbcomm.pdb
    │   ├── rscagent.pdb
    │   ├── rscomm.pdb
    │   ├── tcpcomm.pdb
    │   ├── usbcomm.pdb
    │   ├── usbstd.pdb
    │   ├── zkemkeeper.pdb
    │   └── zkemsdk.pdb
    └── 中控脱机通讯开发包开发手册-中文-v2.0.docx

201 directories, 711 files



实例下载地址

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警