📄 frmaddrepair.frm
字号:
VERSION 5.00
Begin VB.Form frmAddRepair
BorderStyle = 1 'Fixed Single
Caption = "添加报修信息"
ClientHeight = 3345
ClientLeft = 45
ClientTop = 330
ClientWidth = 7380
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3345
ScaleWidth = 7380
Begin VB.TextBox txtUserName
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 5040
TabIndex = 6
Top = 960
Width = 1935
End
Begin VB.TextBox txtComment
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 1440
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 5
Top = 1680
Width = 5625
End
Begin VB.TextBox txtRepairDate
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 1470
TabIndex = 4
Top = 960
Width = 2085
End
Begin VB.TextBox txtRepairCharge
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 5040
TabIndex = 3
Top = 360
Width = 1935
End
Begin VB.TextBox txtRepairContent
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 372
Left = 1500
TabIndex = 2
Top = 360
Width = 2055
End
Begin VB.CommandButton updateCommand
Caption = "保存记录"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 492
Left = 1920
TabIndex = 1
Top = 2640
Width = 1215
End
Begin VB.CommandButton cancelCommand
Caption = "关闭退出"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 492
Left = 4440
TabIndex = 0
Top = 2640
Width = 1215
End
Begin VB.Label Label9
Alignment = 2 'Center
Caption = "备注:"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 120
TabIndex = 11
Top = 1680
Width = 855
End
Begin VB.Label Label5
Alignment = 2 'Center
Caption = "维修日期:"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 10
Top = 960
Width = 1215
End
Begin VB.Label Label4
Alignment = 2 'Center
Caption = "住户:"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3720
TabIndex = 9
Top = 960
Width = 930
End
Begin VB.Label Label2
Alignment = 2 'Center
Caption = "维修费:"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3720
TabIndex = 8
Top = 495
Width = 1095
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "报修内容:"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 7
Top = 360
Width = 1305
End
End
Attribute VB_Name = "frmAddRepair"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cancelCommand_Click()
Unload Me
End Sub
Private Sub updateCommand_Click()
Dim txtSQL As String
Dim MsgText As String
Dim mrcc As ADODB.Recordset
If Not Testtxt(txtRepairContent.Text) Then
MsgBox "请输入维修内容!", vbOKOnly + vbExclamation, "警告"
txtRepairContent.SetFocus
Exit Sub
End If
If Not IsNumeric(txtRepairCharge.Text) Then
MsgBox "请输入维修费用!", vbOKOnly + vbExclamation, "警告"
txtRepairCharge.SetFocus
Exit Sub
End If
If Not IsDate(txtRepairDate.Text) Then
MsgBox "请输入维修日期!", vbOKOnly + vbExclamation, "警告"
txtRepairDate.SetFocus
Exit Sub
End If
If Not Testtxt(txtUserName.Text) Then
MsgBox "请输入住户名称!", vbOKOnly + vbExclamation, "警告"
txtUserName.SetFocus
Exit Sub
End If
Dim tempRepair As clsRepair
Set tempRepair = New clsRepair
tempRepair.AddNew Me.txtRepairContent.Text, Me.txtRepairCharge.Text, Me.txtRepairDate.Text, Me.txtUserName.Text, Me.txtComment.Text
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -