I m using zkemkeeper.dll to download attendance record from biometric device.
if (axCZKEM1.ReadGeneralLogData(iMachineNumber))//read all the attendance records to the memory
{
while (axCZKEM1.SSR_GetGeneralLogData(iMachineNumber, out idwEnrollNumber, out idwVerifyMode
, out idwInOutMode, out idwYear, out idwMonth, out idwDay, out idwHour, out idwMinute, out idwSecond, ref idwWorkCode))//get records from the memory
{
//code here
}
}
My question is how can I download attendance record with specified time (date range) via zkemkeeper.
The function ReadGeneralLogData loads all the record from the device which is taking too much time which nearly hangs the device as device contains more than 15 thousand records.
Also don't know how to use GetDataFile function, i mean where it saves the file.
Please help