📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Addreader
BorderStyle = 1 'Fixed Single
Caption = "添加读者"
ClientHeight = 5775
ClientLeft = 4965
ClientTop = 3165
ClientWidth = 5880
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
ScaleHeight = 5775
ScaleWidth = 5880
Begin VB.CommandButton Command2
Caption = "关闭(&C)"
Height = 375
Left = 3960
TabIndex = 9
Top = 5160
Width = 1815
End
Begin VB.CommandButton Command1
Caption = "保存(&S)"
Height = 375
Left = 120
TabIndex = 8
Top = 5160
Width = 1695
End
Begin VB.Frame Frame1
Caption = "读者基本信息"
Height = 4815
Left = 120
TabIndex = 0
Top = 120
Width = 5655
Begin VB.TextBox Text6
BackColor = &H00C0FFFF&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 390
Left = 1320
TabIndex = 7
Top = 4320
Width = 2175
End
Begin VB.TextBox Text5
BackColor = &H00C0FFFF&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 6
Top = 3600
Width = 3615
End
Begin VB.TextBox Text4
BackColor = &H00C0FFFF&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 5
Top = 2760
Width = 2895
End
Begin VB.TextBox Text3
BackColor = &H00C0FFFF&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 4
Top = 1920
Width = 1815
End
Begin VB.ComboBox Combo1
BackColor = &H00C0FFFF&
Height = 300
IMEMode = 2 'OFF
ItemData = "Form1.frx":2C14A
Left = 4080
List = "Form1.frx":2C154
TabIndex = 3
Top = 1080
Width = 1335
End
Begin VB.TextBox Text2
BackColor = &H00C0FFFF&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 2
Top = 1080
Width = 1455
End
Begin VB.TextBox Text1
BackColor = &H00C0FFFF&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1320
TabIndex = 1
Top = 360
Width = 2775
End
Begin VB.Label Label8
BackStyle = 0 'Transparent
Caption = "格式:(XXXX年X月X日)"
Height = 255
Left = 3600
TabIndex = 17
Top = 4440
Width = 2055
End
Begin VB.Label Label7
Caption = "办证日期"
Height = 255
Left = 360
TabIndex = 16
Top = 4440
Width = 855
End
Begin VB.Label Label6
Caption = "家庭住址"
Height = 255
Left = 360
TabIndex = 15
Top = 3720
Width = 855
End
Begin VB.Label Label5
Caption = "所属单位"
Height = 255
Left = 360
TabIndex = 14
Top = 2880
Width = 855
End
Begin VB.Label Label4
Caption = "联系电话"
Height = 375
Left = 360
TabIndex = 13
Top = 2040
Width = 855
End
Begin VB.Label Label3
Caption = "性 别"
Height = 255
Left = 3120
TabIndex = 12
Top = 1200
Width = 735
End
Begin VB.Label Label2
Caption = "姓 名"
Height = 375
Left = 360
TabIndex = 11
Top = 1200
Width = 735
End
Begin VB.Label Label1
Caption = "读者编号"
Height = 375
Left = 360
TabIndex = 10
Top = 480
Width = 855
End
End
End
Attribute VB_Name = "Addreader"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Set g_rs = g_db.OpenRecordset("select * from readerinfo", dbOpenDynaset)
If Text1.Text = "" Then
MsgBox "读者编号不能为空!", vbInformation + vbOKOnly, "警告"
Exit Sub
End If
If Text2.Text = "" Then
MsgBox "读者姓名不能为空!", vbInformation + vbOKOnly, "警告"
Exit Sub
End If
If Combo1.Text = "" Then
MsgBox "读者性别不能为空!", vbInformation + vbOKOnly, "警告"
Exit Sub
End If
Do While Not g_rs.EOF
If g_rs!读者编号 = Text1.Text Then
MsgBox "对不起,读者编号不能重复,请重新输入!", vbInformation + vbOKOnly, "警告"
Text1.Text = ""
Text1.SetFocus
Exit Sub
End If
g_rs.MoveNext
Loop
g_rs.AddNew
g_rs!读者编号 = Text1.Text
g_rs!读者姓名 = Text2.Text
g_rs!读者性别 = Combo1.Text
g_rs!办证日期 = Text6.Text
g_rs!联系电话 = Text3.Text
g_rs!所属单位 = Text4.Text
g_rs!家庭住址 = Text5.Text
g_rs.Update
MsgBox "读者信息添加完毕", vbInformation + vbOKOnly, "提示"
Set g_rs = Nothing
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Text4.Text = ""
Text5.Text = ""
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text6.Text = FormatDateTime(Now, vbLongDate)
dbl
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -