Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP bug
Message
 
To
04/08/1998 09:31:34
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00123494
Message ID:
00123783
Views:
29
>>If there is a bug here it is that there is no error with out an error handler.
>>I, personally, prefer relagating this to the error handler.
>
>Well I added this check to my error handler. I do appreciate the information. I did waste a whole day tracking down this one but that goes with the job. BTW is there any other "Features" you know of that I have to code around in my error handler?
>
>TIA.

Kevin,

The only other one that comes to mind is this;

SUBSTR() allows you specify a length longer than the string if SET TALK is ON, but if SET TALK is OFF then it generates an Attempt to read past end of string error. So;
lcString = "ABC"
SET TALK ON
?SUBSTR(lcString,2,3) && No error BC is displayed
SET TALK OFF
?SUBSTR(lcString,2,3) && Error "Attempt to read past end of string"
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform