Click here to Skip to main content
15,886,006 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I'm connected to the biometric device IP and Port but I don't how to get Attendance log using zkemkeeper ?

I'm using the code below and have a message input string was not in a correct format

What I have tried:

try
           {
               ShowStatusBar(string.Empty, true);

               ICollection<MachineInfo> lstMachineInfo = manipulator.GetLogData(objZkeeper, int.Parse(tbxMachineNumber.Text));

               if (lstMachineInfo != null && lstMachineInfo.Count > 0)
               {
                   BindToGridView(lstMachineInfo);
                   ShowStatusBar(lstMachineInfo.Count + " records found !!", true);
               }
               else
                   DisplayListOutput("No records found");
           }
           catch (Exception ex)
           {
               DisplayListOutput(ex.Message);
           }
Posted
Comments
Richard MacCutchan 26-Feb-18 4:35am    
"and have a message"
Please explain where this message occurs, and what data and variables are involved.
racuin2593 26-Feb-18 19:19pm    
when I click the button get log data, how can I get attendance database using zzkkemkeeper?
Richard MacCutchan 27-Feb-18 3:44am    
Studying the zzkkemkeeper documentation would be a good place to start.
racuin2593 1-Mar-18 0:41am    
thank you

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