Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi,
I am making a software on attendance management using sql server 2008 as backend.I am saving student information but I don't no how to use zkemkeeper to capture fingerprint and make a link of student to that image.Can anybody give me the code of how to enroll student using biometric device.
Thanks!
Posted
Comments
[no name] 25-Apr-12 12:33pm    
I am afraid that the best answer you are going to get is here[^] and here[^] since you are repeating that OP's exact same lack of relevant information AND reposting the same quesiton.
mayankkarki 26-Apr-12 1:22am    
I really didn't get any satisfactory answer.I look the link above they also not have any good response and the language used is also non professional.Don't use such kind of word to anyone.If you don't know anything then there is no need to reply like this.
Member 8626035 26-Apr-12 23:03pm    
i can't import the zkemkeeper.dll in the c# ,it doesn't exist in the COM and when i use the regsvr32 in the cmd it don't show any successful massage please help it is important.
mayankkarki 27-Apr-12 0:38am    
you can try regsvr32 in safe mode with admin account.
Member 8626035 27-Apr-12 17:32pm    
it didn't work mayankkarki ,is there a sdk for c# ?

1 solution

some Code here........


C#
this.eDatatransferNumber = checked(this.eDatatransferNumber + 1);
               this.AnyDeviceSelected = true;
               this.eDataTransfer1 = (AxCZKEM[])Utils.CopyArray((Array)this.eDataTransfer1, (Array)new AxCZKEM[checked(this.eDatatransferNumber + 1)]);
               this.eDataTransfer1[this.eDatatransferNumber] = new AxCZKEM();
               this.eDataTransfer1[this.eDatatransferNumber].AccessibleName = Conversions.ToString(index);
               this.eDataTransfer1[this.eDatatransferNumber].CreateControl();
               this.Controls.Add((Control)this.eDataTransfer1[this.eDatatransferNumber]);


C#
Application.DoEvents();
                flag3 = ((AxCZKEM)this.eDataTransfer1.GetValue(index)).Connect_Net(iPAdd, 4370);
                Application.DoEvents();


a
dd reference that dll then run above Code
 
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