Re: Data reading problem from a fingerprint reader through Ocx

2010-02-11 Thread Ajoy Khaund
Hi I have a weigh bridge app where I have set a timer which will keep checking if the weight has changed and refresh it. Regards Ajoy Khaund Neamati Road Near Bhogdoi Bridge Jorhat 785001-21 Assam, India Tel: 91-376-2351288 Cell: 91-94350-92287 Mail: akha...@hotmail.com Mail: akha...@gmail.co

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
Hi, I did that too but same problem. Any idea ? Thanks Naeem > 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:

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 reader