home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / pclvbw11 / readme.doc < prev    next >
Encoding:
Text File  |  1996-11-20  |  1.2 KB  |  30 lines

  1. *** PCLVBW 1.1 Release Notes ***
  2.  
  3. (1) Always choose LEVEL_8 rather than LEVEL_14 in calling SioFIFO. Windows
  4. is slow, and LEVEL_14 only allows 2 additional characters before an overun.
  5.  
  6. (2) Be sure to copy PCLVBW.DLL to the directory in which you have installed
  7. Visual Basic so it can be used by the interpreter. Also copy MIO.DLL.
  8.  
  9. (3) The module SIOERROR.BAS will print the text associated with an error code
  10. returned from any of the PCLVBW functions.
  11.  
  12. (4) If you will be using the standard PC ports COM1 to COM4, they should be
  13. disabled from Windows's control becuase Windows "virtualizes" all ports it
  14. controls. For example, to disable Windows control of COM1 and COM3 (which
  15. share IRQ3), add
  16.  
  17.        COM1Base=0
  18.        COM1Irq=-1
  19.        COM3Base=0
  20.        COM3Irq=-1
  21.  
  22. to the [386Enh] section of SYSTEM.INI in the Windows directory.
  23.  
  24. (5) We will be releasing a version of our VB communications library that
  25. uses the standard Windows API, rather than talking to the port hardware
  26. directly as is done in PCLVBW. It will be named the "Windows Standard
  27. Communications" (WSC) library, and will not require that the SYSTEM.INI
  28. file be modified. Look for WSC4VB10.ZIP to be released July 15th, 1996.
  29.  
  30.