Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Good day
actually i have no idea how to make this work i have tried all the methods available but i could not do it


any help will be well appreciated
thanks
Posted
Updated 4-Jan-18 7:43am

You should talk to the people who created it - it's probably one of these[^] - 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
 
You've to have referenced the SDK COM and namespace ZKFPengController first

and an object called ZKFPEngX1 which is going to use reference On finger touching

private void ZKFPEngX1_OnFingerTouching(object sender, EventArgs e)
        {
            lblState.Text = "TOUCH";
            ZKFPEngX1.ControlSensor(13, 1);
            ZKFPEngX1.ControlSensor(13, 0);
        }


FirstNumber 13 means BEEP sound
SecondNumber 1 means Begin
SecondNumber 0 means End

that worked for me in VS C# 2013

best regards
 
Share this answer
 
v3

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