Click here to Skip to main content
15,886,422 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have used "ZkemKeeper sdk" to get data from BioMatrix Device.I would like to know how to get Number of Record in Device .

What I have tried:

I have check google but I can not find any proper solution
Posted
Updated 20-May-22 1:59am
Comments
Patrice T 21-Sep-18 1:00am    
Lets guess that their support service or forum of users are better places than here.

Start here: C# ZKTeco Biometric Device Getting Started[^]. There you'll find example code and programmer's guide.

Good luck!
 
Share this answer
 
Comments
edp.kharind 21-Sep-18 4:27am    
Thanks for suupport,I have already used above link but I would like to know number of record in each machine...
Maciej Los 21-Sep-18 4:38am    
I'm not familiar with this. You have to download and read programmer's guide.
Check this code

C#
string sEnrollNumber = "";
                    string sName = "";
                    string sPassword = "";
                    int iPrivilege = 0;
                    bool bEnabled = false;
int uCount=0;
                    axCZKEM1.EnableDevice(1, false);
                    axCZKEM1.ReadAllUserID(1);//read all the user information to the memory
                    while (axCZKEM1.SSR_GetAllUserInfo(1, out sEnrollNumber, out sName, out sPassword, out iPrivilege, out bEnabled))
                    {
                        uCount++;
                    }
 
Share this answer
 
v2

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