home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / WIN / Programa / WSC4VB10.ZIP / SIMPGLOB.BAS < prev    next >
Encoding:
BASIC Source File  |  1996-08-20  |  709 b   |  27 lines

  1. ' Global Variables
  2. Option Explicit
  3.  
  4. Global ThePort As Integer
  5. Global TheBaudCode As Integer
  6. Global BaudRateTable(0 To 8) As String
  7. Global TheDataBits As Integer
  8. Global TheParity As Integer
  9. Global TheStopBits As Integer
  10. Global ParityText(0 To 4) As String
  11. Global OnLineFlag As Integer
  12. Global RxSelector As Integer
  13. Global TxSelector As Integer
  14. Global LockCount As Integer
  15. Global FatalFlag As Integer
  16. Global ScreenBuffer(0 To 23) As String * 80
  17. Global CurrentRow As Integer
  18. Global CurrentCol As Integer
  19. Global ParityControl As Control
  20. 'Global constants
  21. Global Const COM_PORTS = 1
  22. Global Const BAUD_RATE = 2
  23. Global Const DATA_BITS = 3
  24. Global Const STOP_BITS = 4
  25. Global Const PARITY = 5
  26.  
  27.