home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- 'Connection Information
- Global UserName$
- Global Password$
- Global DatabaseName$
- Global ODBCDatabaseName$
- Global Connect$
- Global ODBCConnect$
-
- Sub CenterForm (F As Form)
-
- ' Center the specified form within the screen
-
- F.Move (Screen.Width - F.Width) \ 2, (Screen.Height - F.Height) \ 2
-
- End Sub
-
-