📄 addbook.frm
字号:
VERSION 5.00
Begin VB.Form addbook
BorderStyle = 1 'Fixed Single
Caption = "添加图书信息"
ClientHeight = 3960
ClientLeft = 3780
ClientTop = 3750
ClientWidth = 7305
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
ScaleHeight = 3960
ScaleWidth = 7305
Begin VB.CommandButton Command2
Caption = "关闭(&C)"
Height = 375
Left = 5400
TabIndex = 18
Top = 3480
Width = 1695
End
Begin VB.CommandButton Command1
Caption = "添加(&A)"
Enabled = 0 'False
Height = 375
Left = 3600
TabIndex = 17
Top = 3480
Width = 1695
End
Begin VB.Frame Frame1
Caption = "书籍信息"
Height = 3255
Left = 120
TabIndex = 0
Top = 120
Width = 7095
Begin VB.TextBox Text1
BackColor = &H00C0FFFF&
Height = 375
Left = 1200
TabIndex = 3
Top = 360
Width = 2175
End
Begin VB.TextBox Text5
BackColor = &H00C0FFFF&
Height = 375
Left = 1200
TabIndex = 11
Top = 1560
Width = 2175
End
Begin VB.TextBox Text7
BackColor = &H00C0FFFF&
Height = 375
Left = 1200
TabIndex = 14
Top = 2160
Width = 2175
End
Begin VB.TextBox Text6
BackColor = &H00C0FFFF&
Height = 375
Left = 4680
TabIndex = 12
Top = 1560
Width = 2175
End
Begin VB.TextBox Text3
BackColor = &H00C0FFFF&
Height = 375
Left = 1200
TabIndex = 7
Top = 960
Width = 2175
End
Begin VB.TextBox Text4
BackColor = &H00C0FFFF&
Height = 375
Left = 4680
TabIndex = 9
Top = 960
Width = 2175
End
Begin VB.TextBox Text2
BackColor = &H00C0FFFF&
Height = 375
Left = 4680
TabIndex = 5
Top = 360
Width = 2175
End
Begin VB.TextBox Text8
BackColor = &H00C0FFFF&
Height = 375
Left = 4680
TabIndex = 16
Top = 2160
Width = 2175
End
Begin VB.Label Label8
Caption = "登记日期"
Height = 255
Left = 3720
TabIndex = 15
Top = 2280
Width = 855
End
Begin VB.Label Label7
Caption = "书籍页码"
Height = 255
Left = 240
TabIndex = 13
Top = 2280
Width = 855
End
Begin VB.Label Label6
Caption = "书籍价格"
Height = 255
Left = 3720
TabIndex = 1
Top = 1680
Width = 975
End
Begin VB.Label Label5
Caption = "作者姓名"
Height = 255
Left = 240
TabIndex = 10
Top = 1680
Width = 855
End
Begin VB.Label Label4
Caption = "出 版 社"
Height = 255
Left = 3720
TabIndex = 8
Top = 1080
Width = 855
End
Begin VB.Label Label3
Caption = "类别代码"
Height = 375
Left = 240
TabIndex = 6
Top = 1080
Width = 855
End
Begin VB.Label Label2
Caption = "书籍名称"
Height = 255
Left = 3720
TabIndex = 4
Top = 480
Width = 855
End
Begin VB.Label Label1
Caption = "书籍编号"
Height = 375
Left = 240
TabIndex = 2
Top = 480
Width = 855
End
End
End
Attribute VB_Name = "addbook"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim InsertStr As String '定义变量接受用户添加信息的值
'向学生基本信息表添加文本框中输入的信息
InsertStr = "INSERT INTO 学生基本信息表 VALUES('" & Text1.Text & "','" & Text2.Text & "','" & Text3.Text & "','" & Text4.Text & "','" & Text5.Text & "')"
On Error GoTo errhander '添加程序错误时执行errhander
'输入信息正确时执行
Mycon.BeginTrans
Mycon.Execute (InsertStr)
Mycon.CommitTrans
MsgBox "添加成功" '添加成功时给出提示
'添加成功后将文本框内容清空
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text4.Text = ""
Text5.Text = ""
Exit Sub '强制退出
errhander:
MsgBox "添加失败" '错误时给出提示
Mycon.RollbackTrans
End Sub
Private Sub Command2_Click() '退出按钮
Unload Me '回到主菜单
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -