home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / bit / listserv / dbasel / 916 < prev    next >
Encoding:
Text File  |  1992-09-08  |  1.4 KB  |  51 lines

  1. Newsgroups: bit.listserv.dbase-l
  2. Path: sparky!uunet!utcsri!skule.ecf!torn!cunews!s187318
  3. From: s187318@alfred.carleton.ca (Bing Wen ~{NB1y~})
  4. Subject: Re: Help needed to interpret Clipper error message
  5. Message-ID: <s187318.715743499@cunews>
  6. Sender: news@cunews.carleton.ca (News Administrator)
  7. Organization: Carleton University
  8. References: <01GODPDFOQPC0009X5@VAXA.CIS.UWOSH.EDU>
  9. Date: Sun, 6 Sep 1992 01:38:19 GMT
  10. Lines: 39
  11.  
  12. Thanks for your suggestions. I checked the mainmenu.prg and found the
  13. problem was caused by the DO WHILE statement.
  14.  
  15. The original statement went like this:
  16.  
  17.           ok=.t.
  18.           do while ok
  19.           ....
  20.           1. enter...
  21.           2. retrieve...
  22.           ....
  23.           0. exit
  24.           enddo
  25.  
  26. I have changed it into something like this:
  27.  
  28.           ok=' '
  29.           do while ok # '0'
  30.           ....
  31.           enddo
  32.  
  33. The problem no longer appears. But I still would like to know where
  34. (in what CLIPPER 5.01 booklet and on which page) the error message is
  35. documented.
  36.  
  37. Thank you for your time.
  38.  
  39. Bing
  40. p.s. Here is the error message again:
  41.  
  42.           Error BASE/1066 Argument error: conditional
  43.                           Quit?
  44.  
  45. ---------------------------Included Text--------------------------
  46.  
  47.  
  48. PS-     I have Clipper 5.01 and this error message IS documented. As a
  49.         general rule if the error message comes in a red box with option
  50.         to QUIT etc. that will be documented
  51.