I am trying to retrieve data from an attendance device of model number IN01 of ZKteco. I registered the zkemkeeper.dll file for x64 bit operating system. I have written a piece of code to connect it to c# application, but unfortunately it is not working.
Code:
bool bIsConnected = axCZKEM1.Connect_Com(1235,201, 115200);
if (bIsConnected == true) {
MessageBox.Show("Device Connected Successfully");
} else {
MessageBox.Show("Device Not Connect");
}
but it is returning false and I am getting message from the else part.