Re: VFP9-errors

2010-02-09 Thread Stephen Russell
On Mon, Feb 8, 2010 at 9:07 PM, Sytze de Boer sytze.k...@gmail.com wrote: Can anyone suggest how this could end up in error 8, No table is open in the current work area IF FILE(POSTCODE.DBF)   WAIT WINDOW NOWAIT 'Reindexing postal codes'   Select 0   Use postcode Exclusive   IF

Re: VFP9-errors

2010-02-09 Thread Paul McNett
On 2/9/10 6:09 AM, Stephen Russell wrote: On Mon, Feb 8, 2010 at 9:07 PM, Sytze de Boersytze.k...@gmail.com wrote: Can anyone suggest how this could end up in error 8, No table is open in the current work area IF FILE(POSTCODE.DBF) WAIT WINDOW NOWAIT 'Reindexing postal codes' Select

Re: VFP9-errors

2010-02-09 Thread Pete Theisen
Paul McNett wrote: IF FILE(POSTCODE.DBF) WAIT WINDOW NOWAIT 'Reindexing postal codes' Select 0 Use postcode Exclusive IF FILE('POSTCODE.CDX') Delete Tag All Of postcode endif Index On Upper(town) Tag postc1 Index On Upper(street) +Upper(town) Tag postc2 For

RE: VFP9-errors

2010-02-09 Thread Rick Schummer
Can anyone suggest how this could end up in error 8, No table is open in the current work area You did not say which line of code is causing the error so we are all guessing. What error handling are you using, ON ERROR, or Error method? I have recently noticed VFP occasionally does not throw an

Re: VFP9-errors

2010-02-09 Thread Sytze de Boer
I'm pretty sure I've identified the issue If there was previously a cdx file, and now there isn't, it throws an error if you say use mytable excl my error routine (on error) explicitly ignores this error Which is fine, but in that case, I need to re-state/repeat the line use mytable excl before

Re: VFP9-errors

2010-02-08 Thread Tracy Pearson
A possible reason: you have an error handler that ignores the access is denied error on the opening of postcode Sytze de Boer wrote: Can anyone suggest how this could end up in error 8, No table is open in the current work area IF FILE(POSTCODE.DBF) WAIT WINDOW NOWAIT 'Reindexing

Re: VFP9 Errors don't show in development mode

2006-07-23 Thread Michael Hawksworth
I have seen errors where scope influences the run time differently, particularly w.r.t. using the debugger and very rarely some other errors where the run time is just less resilient or is ignoring the problem although these usually involve reports (ignoring incorrect variable in the run time

Re: VFP9 Errors don't show in development mode

2006-07-23 Thread KAM
running the program in development mode. - Original Message - From: Sietse Wijnker [EMAIL PROTECTED] To: profox@leafe.com Sent: Sunday, July 23, 2006 12:27 AM Subject: RE: VFP9 Errors don't show in development mode Hi KAM, All variables declared in a LOCAL statement are defaulted to .F

RE: VFP9 Errors don't show in development mode

2006-07-23 Thread Sietse Wijnker
Hi, Still, it is strange that the error does not appear while running the program in development mode. I mentioned in my previous post: Maybe you have the code that's filling the cSignatp property in a conditional block which is run when VERSION() (or even VERSION()) or _VFP.StartMode has

Re: VFP9 Errors don't show in development mode

2006-07-22 Thread Kevin Cully
Can you give an example of an error message? Kevin Cully CULLY Technologies, LLC Sponsor of Fox Forward 2006! http://foxforward.net KAM wrote: Has anyone noticed that a lot of coding errors do not show when you are using the development IDE, but they do show with you run the EXE? Is this a

RE: VFP9 Errors don't show in development mode

2006-07-22 Thread Bill Arnold
Has anyone noticed that a lot of coding errors do not show when you are using the development IDE, but they do show with you run the EXE? Is this a setting that I have incorrect? I am sure that VFP8 did show the errors. Sure, see the new SET SHOWERRORS = [ALL|SOME|NONE] and SET