opendatabase.bas
来自「多种图表的绘制及其运用」· BAS 代码 · 共 36 行
BAS
36 行
Attribute VB_Name = "OpenDatabase"
Global cnn As New ADODB.Connection
Global cmd As New ADODB.Command
Global rst As New ADODB.Recordset
Public Sub Open_Database()
'# Opes a connection to the NorthWind Database #
'# The DataSource section MUST match the path to the database on #
'# your own computer (i.e. Data Source= [Correct Path] & "\NWIND.MDB #
Dim sFileName As String
sFileName = App.Path & "/" & "Monitor_data.mdb"
cnn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" _
& " Data Source= " & sFileName & ";Persist Security Info=False"
cnn.Open
End Sub
Public Sub Close_Database()
cnn.Close
End Sub
Public Function Wait(ByVal TimeToWait As Long) 'Time In seconds
'//
' Function waits for seconds given
'\\
Dim EndTime As Long
EndTime = GetTickCount + TimeToWait * 1000 '* 1000 Cause u give seconds and GetTickCount uses Milliseconds
Do Until GetTickCount > EndTime
DoEvents
Loop
End Function
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?