home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / objlogin.bas < prev    next >
BASIC Source File  |  1994-10-29  |  333b  |  19 lines

  1. Option Explicit
  2.  
  3. 'Connection Information
  4. Global UserName$
  5. Global Password$
  6. Global DatabaseName$
  7. Global ODBCDatabaseName$
  8. Global Connect$
  9. Global ODBCConnect$
  10.  
  11. Sub CenterForm (F As Form)
  12.  
  13. ' Center the specified form within the screen
  14.  
  15.     F.Move (Screen.Width - F.Width) \ 2, (Screen.Height - F.Height) \ 2
  16.  
  17. End Sub
  18.  
  19.