Click here to Skip to main content
15,907,326 members
Home / Discussions / C#
   

C#

 
QuestionFingerprint Reader Pin
Member 47748683-Jun-08 19:08
Member 47748683-Jun-08 19:08 
AnswerRe: Fingerprint Reader Pin
Shree3-Jun-08 19:48
Shree3-Jun-08 19:48 
AnswerRe: Fingerprint Reader Pin
Harvey Saayman4-Jun-08 0:14
Harvey Saayman4-Jun-08 0:14 
GeneralRe: Fingerprint Reader Pin
Member 47748684-Jun-08 4:22
Member 47748684-Jun-08 4:22 
GeneralRe: Fingerprint Reader Pin
Harvey Saayman4-Jun-08 4:44
Harvey Saayman4-Jun-08 4:44 
GeneralRe: Fingerprint Reader Pin
Member 47748684-Jun-08 18:14
Member 47748684-Jun-08 18:14 
GeneralRe: Fingerprint Reader Pin
Harvey Saayman8-Jun-08 20:12
Harvey Saayman8-Jun-08 20:12 
GeneralRe: Fingerprint Reader Pin
satiss7pwr1-May-11 21:17
satiss7pwr1-May-11 21:17 
Hi friends,
I am new for finger print device
Let u know one think that i am using visual studio 2008 and i have a database in as dbf files.
I have one fingerprint device LAN based and also USB based

I have one web application , i want to use a fingerprint device as requirement

Now my question is:
I just write a code on page load as below

int count = 0;
zkemkeeper.CZKEMClass axczkem1 = new zkemkeeper.CZKEMClass();
bool bIsConnected = false;
string ip = "192.168.140.254";//write here IP Address of your biomatric m/c
int port = 4370;
bIsConnected = axczkem1.Connect_Net(ip, port);
if (bIsConnected == true)
{
MessageBox.Show("Connection established!!!" );

bool ret = axczkem1.ReadAllGLogData(1);
if (ret)
{
int a = 0;
int b = 0;
int c = 0;
int d = 0;
int ee = 0;
int f = 0;
int g = 0;
int h = 0;
int i = 0;
int j = 0;
int k = 0;
int l = 0;
int m = 0;
int n = 0;
int o = 0;
while (axczkem1.GetAllGLogData (1, ref a, ref b, ref c, ref k, ref l, ref d, ref m, ref ee, ref f, ref g))
{
if (ee == 7 && m == 4 && d == 2011)
{
count++;
if (b == //any Employee No)
{
MessageBox.Show(b.ToString() + " hour: " + f + " Min: " + g);
MessageBox.Show(k.ToString() + " " + l.ToString());

}
}

}
//MessageBox.Show(count.ToString ());
}

}
else
MessageBox.Show("cannot Connection!!!");

axczkem1.Disconnect();



this code is of window application but i just replace it with web, i get here that connection status.
I want to know that how to catch the event that a finger is put on device that send device.
i have to refresh the page every time when a any finger is put on device

I hope any one understan what i want to say, please any one help me
And one more think am i going right way or wrong.
Thank you
QuestionMessaging system betwenen users of network site Pin
Harinder Sandhu3-Jun-08 18:59
Harinder Sandhu3-Jun-08 18:59 
AnswerRe: Messaging system betwenen users of network site Pin
Sam Xavier3-Jun-08 19:09
Sam Xavier3-Jun-08 19:09 
GeneralRe: Messaging system betwenen users of network site Pin
Harinder Sandhu3-Jun-08 21:11
Harinder Sandhu3-Jun-08 21:11 
QuestionRemoving row from data table Pin
Lijo Rajan3-Jun-08 18:45
Lijo Rajan3-Jun-08 18:45 
AnswerRe: Removing row from data table Pin
PIEBALDconsult3-Jun-08 19:32
mvePIEBALDconsult3-Jun-08 19:32 
AnswerRe: Removing row from data table Pin
Sam Xavier3-Jun-08 19:37
Sam Xavier3-Jun-08 19:37 
QuestionExpression too complex Pin
joeyan3-Jun-08 18:01
joeyan3-Jun-08 18:01 
AnswerRe: Expression too complex Pin
Christian Graus3-Jun-08 18:15
protectorChristian Graus3-Jun-08 18:15 
GeneralRe: Expression too complex Pin
leppie3-Jun-08 18:24
leppie3-Jun-08 18:24 
GeneralRe: Expression too complex Pin
PIEBALDconsult3-Jun-08 19:29
mvePIEBALDconsult3-Jun-08 19:29 
GeneralRe: Expression too complex Pin
leppie3-Jun-08 23:42
leppie3-Jun-08 23:42 
GeneralRe: Expression too complex Pin
PIEBALDconsult4-Jun-08 7:34
mvePIEBALDconsult4-Jun-08 7:34 
GeneralRe: Expression too complex Pin
leppie4-Jun-08 9:05
leppie4-Jun-08 9:05 
GeneralRe: Expression too complex Pin
joeyan3-Jun-08 22:27
joeyan3-Jun-08 22:27 
GeneralRe: Expression too complex Pin
PIEBALDconsult4-Jun-08 7:33
mvePIEBALDconsult4-Jun-08 7:33 
QuestionDynamaic GridView Issue Pin
GroCareer3-Jun-08 16:46
GroCareer3-Jun-08 16:46 
AnswerRe: Dynamaic GridView Issue Pin
Ashfield3-Jun-08 21:09
Ashfield3-Jun-08 21:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.