Click here to Skip to main content
15,881,687 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
I have used below code to disable User info in Barometric Device.It works fine as per my requirement.I would like to know below two points in this scenario.

How to change User Image when User is disable ---> I have check "SetUserFace" method but I need an example code.
2.How to set SMS for user when User is disable ---> I have check "SetUserSMS" method but I need an example code

bool bIsConnected = axCZKEM1.Connect_Net("192.168.1.142", 4370);   // 4370 is port no of attendance machine

if (bIsConnected == true)
{
    string _Name = "", _Password = "";
    int _Privilefe = 0;
    bool _Enabled = false;

    var t = axCZKEM1.SSR_GetUserInfo(1, "4634", out _Name, out _Password, out _Privilefe, out _Enabled);
    t = axCZKEM1.SSR_SetUserInfo(1, "4634", _Name, _Password, _Privilefe, false);

    axCZKEM1.SetUserFace(); // Need Example Code
    axCZKEM1.SetUserSMS(); // Need Example Code

}


What I have tried:

I have check above code in google but I can't fine any solution
Posted
Updated 9-Jun-20 21:38pm
Comments
Garth J Lancaster 10-Jun-20 1:01am    
I would have thought this question would be more appropriately directed towards the manufacturers of the device itself - do they not provide an API / SDK etc ?

You don't even say what the device is, so expecting us to guess is a waste of time

You should talk to the people who created it - we have no idea who they even are - they should provide technical support and will know more about their product than we will. If they don't, then find another supplier and demand your money back!
 
Share this answer
 
Quote:
I have used below code to disable User info in Barometric Device.It works fine as per my requirement.I would like to know below two points in this scenario.

Never thought about reading device and DSK documentation ?
Visiting a forum of users may help too, the principle of such forum is that anyone knows your device.

Note that you didn't gave reference of device.
Note that Barometric is basically about air pressure, biometric device is about ways to id people.
 
Share this answer
 

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