home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / sql / vbsql / image.bas < prev    next >
Encoding:
BASIC Source File  |  1996-04-03  |  418 b   |  22 lines

  1. Rem Global Definitions
  2.  
  3. Rem temporary file for bitmap storage
  4.  
  5. Global Temp_Image_File As String
  6.  
  7. Rem These handle the SQL Server connection
  8.  
  9. Global DBLIB_VERSION$
  10. Global PrimaryWindowTitle$
  11. Global SqlConn%
  12. Global ServerName$
  13. Global LoginID$
  14. Global Password$
  15. Global DatabaseName$
  16. Global SQLStatus%
  17. Global DefServer$
  18. Global DefLogin$
  19. Global Const LoginTimeout% = 30
  20. Global Const QueryTimeout% = 60
  21.  
  22.