Re: Data reading problem from a fingerprint reader through Ocx

2010-02-11 Thread Ajoy Khaund
M To: Subject: Data reading problem from a fingerprint reader through Ocx > Hi, > > I recently deployed a biometric fingerprint reader for time attendance. > The local supplier gave us an ocx written in VB so that I can communicate > with the device in real time. This device is on our

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-11 Thread Bill Arnold
Naeem, Did you try something simple, like: == Event OnData == *** ActiveX Control Event *** LPARAMETERS cindata THISFORM.TxtPollData.Value = "Data: "+ cindata THISFORM.TxtPollData.Refresh * if this doesn't work, try logging the "Data: ..." message each time it's

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-11 Thread naeem
t; To: profoxt...@leafe.com > Subject: Re: Data reading problem from a fingerprint reader through Ocx > > Hi, > > I don't think so. Here is the code that runs when a person registers on > the fingerprint reader. > > == > Event OnData >

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-11 Thread naeem
Hi, Foxpro program is running under windows xp professional. The machine is using TCP protocol with a fixed IP address on my Lan. The local supplier also gave me the VB source code for their ocx. Does anyone help me to check this vb code? Thanks Naeem > I know it may not make a lot of sense, but

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread naeem
Hi, I tried your suggestion but same problem. Thanks Naeem > I know it may not make a lot of sense, but Events should call Methods. > > == > Event OnData > == > *** ActiveX Control Event *** > LPARAMETERS s > RETURN THISFORM.onData(s) > > > == > Met

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread Tracy Pearson
I know it may not make a lot of sense, but Events should call Methods. == Event OnData == *** ActiveX Control Event *** LPARAMETERS s RETURN THISFORM.onData(s) == Method OnData == LPARAMETERS s THISFOR

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread Richard Kaye
Did you try DOVENTS FORCE? rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of na...@syedjunaidalam.com Sent: Wednesday, February 10, 2010 12:55 PM To: profoxt...@leafe.com Subject: Re: Data reading problem from a fingerprint

Re: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread naeem
Hi, I don't think so. Here is the code that runs when a person registers on the fingerprint reader. == Event OnData == *** ActiveX Control Event *** LPARAMETERS s THISFORM.TxtPollData.Value = "Data: "+ S THISFORM.TxtPollData.Refresh *DOEVENTS && I even tried to

Re: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread Tracy Pearson
Is it just a refresh problem of the display? In the end of your code that updates the screen, add a THISFORM.CLS(). na...@syedjunaidalam.com wrote: > Hi, > > I did that too but same problem. Any idea ? > > Thanks > Naeem > >> Have you set the _VFP.Autoyield property to .F. >> >> Dave Crozier >

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread naeem
; Sent: 10 February 2010 05:02 > To: profox@leafe.com > Subject: Data reading problem from a fingerprint reader through Ocx > > Hi, > > I recently deployed a biometric fingerprint reader for time attendance. > The local supplier gave us an ocx written in VB so that I can communi

RE: Data reading problem from a fingerprint reader through Ocx

2010-02-10 Thread Dave Crozier
Have you set the _VFP.Autoyield property to .F. Dave Crozier -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of na...@syedjunaidalam.com Sent: 10 February 2010 05:02 To: profox@leafe.com Subject: Data reading problem from a fingerprint

Data reading problem from a fingerprint reader through Ocx

2010-02-09 Thread naeem
Hi, I recently deployed a biometric fingerprint reader for time attendance. The local supplier gave us an ocx written in VB so that I can communicate with the device in real time. This device is on our LAN and I can connect it through its local IP and port number. This ocx is working fine in VB f