home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / login.bas < prev    next >
BASIC Source File  |  1994-11-20  |  420b  |  24 lines

  1. Option Explicit
  2.  
  3. Global OraSession  As Object
  4. Global OraDatabase As Object
  5.  
  6. 'Connection Information
  7. Global UserName$
  8. Global Password$
  9. Global DatabaseName$
  10. Global Connect$
  11.  
  12. ' Show parameters
  13. Global Const MODAL = 1
  14. Global Const MODELESS = 0
  15.  
  16. Sub CenterForm (F As Form)
  17.  
  18. ' Center the specified form within the screen
  19.  
  20.     F.Move (Screen.Width - F.Width) \ 2, (Screen.Height - F.Height) \ 2
  21.  
  22. End Sub
  23.  
  24.