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