📄 test_1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 5700
ClientLeft = 60
ClientTop = 348
ClientWidth = 6972
LinkTopic = "Form1"
ScaleHeight = 5700
ScaleWidth = 6972
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "退出(&X)"
Height = 495
Left = 2520
TabIndex = 11
Top = 3840
Width = 1815
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 2280
TabIndex = 8
Text = "Text1"
Top = 660
Width = 3495
End
Begin VB.TextBox Text5
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 2280
TabIndex = 3
Text = "Text5"
Top = 2760
Width = 3495
End
Begin VB.TextBox Text4
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 2280
TabIndex = 2
Text = "Text4"
Top = 2220
Width = 3495
End
Begin VB.TextBox Text3
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 2280
TabIndex = 1
Text = "Text3"
Top = 1680
Width = 3495
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 2280
TabIndex = 0
Text = "Text2"
Top = 1200
Width = 3495
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "ODBC连接方式"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 285
Left = 120
TabIndex = 10
Top = 120
Width = 1740
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "书号"
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 210
Left = 1560
TabIndex = 9
Top = 720
Width = 450
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "出版社名称"
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 210
Left = 885
TabIndex = 7
Top = 2820
Width = 1125
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "单价"
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 210
Left = 1560
TabIndex = 6
Top = 2280
Width = 450
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "作者代码"
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 330
Left = 1110
TabIndex = 5
Top = 1680
Width = 900
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "书名"
BeginProperty Font
Name = "宋体"
Size = 10.8
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 210
Left = 1560
TabIndex = 4
Top = 1260
Width = 450
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Private Sub Command1_Click()
rs.Close
cn.Close
End
End Sub
Private Sub Form_Load()
'连接到数据源,定义ADO的Connection对象
cn.CursorLocation = adUseClient
cn.Open "provider=MSDASQL;dsn=bookdb;uid=sa;pwd=;"
'定义ADO的recordset对象
mysql = "select top 1 * from book"
rs.CursorType = adOpenKeyset
rs.LockType = adLockOptimistic
rs.Open mysql, cn
ShowText
End Sub
Private Sub ShowText()
Text1.Text = rs.Fields("book_id")
Text2.Text = rs.Fields("book_name")
Text3.Text = rs.Fields("author_id")
Text4.Text = rs.Fields(3)
Text5.Text = rs.Fields!publisher
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -