home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / NOVELL / NETBUG.ZIP / NETBUG next >
Encoding:
Text File  |  1988-07-02  |  2.0 KB  |  64 lines

  1. Dear NetLib Owners:
  2.  
  3. The following are known bugs in NetLib.  It is possible that none effect
  4. you.  The final version dated 7-4-88 corrects all these known bugs.  If any
  5. of these bugs are causing you problems, please call us for a new disk.
  6.  
  7. *** N_SETTIME()
  8.  
  9.     If the current color setting includes an Unselected color, then
  10.     N_SETTIME may not properly restore the original color setting.  This
  11.     applies to the color setting in effect when N_SETTIME is issued, NOT a
  12.     color setting that might be issued in a user defined procedure called by
  13.     N_SETTIME.  The Unselected color is the optional fifth clause of the SET
  14.     COLOR statement.  E.g.,
  15.  
  16.           * no Unselected color - this has no problem
  17.           SET COLOR TO w/n,n/w
  18.  
  19.           * Unselected color (w+/n) - may be a problem
  20.           SET COLOR TO w/n,n/w,,,w+/n
  21.  
  22. *** N_UNLOCK()
  23.  
  24.     N_UNLOCK(ALL) should not be used until you have the 7-4-88 library.  It
  25.     intereferes with the semaphore table.  Instead, use the Clipper command:
  26.     UNLOCK ALL, followed by COMMIT or N_REREAD ALL.   However, N_UNLOCK()
  27.     alone is fine.
  28.  
  29. *** TTS.OBJ: J_TRANS(ON) and J_START() always return False.
  30.  
  31.     Several people are now using the corrected library with TTS very nicely,
  32.     thankyou.
  33.  
  34. *** N_SUNLOCK()
  35.  
  36.     Eats up a tiny bit of the stack each time it is called.  You will
  37.     probably never notice it, but in case you do, call us up for the new
  38.     disk.
  39.  
  40. *** N_UNBOLT()
  41.  
  42.      May crash the machine, but then, whose looking?
  43.  
  44. *** N_SLOCK()
  45.  
  46.     May return .F. if you try to re-lock the same semaphore that you have
  47.     already successfully locked.  E.g.,
  48.  
  49.           ? N_SLOCK("testlock")
  50.             .T.
  51.           ? N_SLOCK("testlock")
  52.             .F.
  53.  
  54. *** DEMO.PRG
  55.  
  56.      A number of unforgiveable type-o's in this one.
  57.  
  58. Regards,
  59. Neil Weicher
  60. President
  61. Communication Horizons
  62.  
  63. P.S., Coming your way soon: Tom Rettig's Help for NetLib!
  64.