Re: Betty Rides Day Dream White Widow Jacket - Women's

2010-02-10 Thread Alan Bourke
On Tue, 09 Feb 2010 21:31 -0500, "Pete Theisen" wrote: > How many names does a jacket need? No clue. Try saying that jacket's name with a mouthful of peanuts. -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to: ProFox@leafe.

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

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 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 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 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 reader

[NF] windows 2003 sb server

2010-02-10 Thread Allen Pollard
Hi foxgang I have an interesting problem, I would prefer not to have. There is a windows 2003 sb server already on site. A second 2003 sb server was added as a web server and all was ok bar the need to share a drive to the local network service user. I didn't like that at all so the web server wa

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: [NF] windows 2003 sb server

2010-02-10 Thread Tracy Pearson
WAG On the Web server, in the Configure Your Server Wizard, remove the Domain Controller. If it's not configured, there is something else going on. -Original Message- From: Allen Pollard Sent: Wednesday, February 10, 2010 1:01 PM Hi foxgang I have an interesting problem, I would prefe

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