module1.bas
来自「It Hostel Management Project」· BAS 代码 · 共 24 行
BAS
24 行
Attribute VB_Name = "Module1"
Global cn As New ADODB.Connection
Global sSQL As String
Global MatricNo As String
Sub main()
'load and display splash screen
With frmSplash
.Show
.Refresh
End With
'create connection to database to be used throughout the program
With cn
.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\dbase\hostel.mdb;Persist Security Info=False"
.Open
End With
'display log in form
frmLogin.Show
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?