📄 f_wangluoyunxing.frm
字号:
DataField = "设备编号"
Height = 285
Index = 0
Left = 1800
TabIndex = 4
Top = 240
Width = 1695
End
Begin VB.Label lblLabels
Caption = "实际费用:"
Height = 255
Index = 17
Left = 4080
TabIndex = 36
Top = 2040
Width = 855
End
Begin VB.Label lblLabels
Caption = "预计维护费用:"
Height = 255
Index = 16
Left = 240
TabIndex = 34
Top = 2040
Width = 1215
End
Begin VB.Label lblLabels
Caption = "电子邮件:"
Height = 255
Index = 15
Left = 240
TabIndex = 32
Top = 4560
Width = 735
End
Begin VB.Label lblLabels
Caption = "手机:"
Height = 255
Index = 14
Left = 4080
TabIndex = 30
Top = 3480
Width = 615
End
Begin VB.Label lblLabels
Caption = "呼机:"
Height = 255
Index = 13
Left = 240
TabIndex = 28
Top = 3840
Width = 615
End
Begin VB.Label lblLabels
Caption = "传真:"
Height = 255
Index = 12
Left = 4080
TabIndex = 26
Top = 3120
Width = 615
End
Begin VB.Label lblLabels
Caption = "电话:"
Height = 255
Index = 11
Left = 240
TabIndex = 24
Top = 3480
Width = 615
End
Begin VB.Label lblLabels
Caption = "职务:"
Height = 255
Index = 10
Left = 240
TabIndex = 22
Top = 3120
Width = 615
End
Begin VB.Label lblLabels
Caption = "联系人姓名:"
Height = 255
Index = 9
Left = 4080
TabIndex = 20
Top = 2760
Width = 975
End
Begin VB.Label lblLabels
Caption = "邮政编码:"
Height = 255
Index = 8
Left = 4080
TabIndex = 18
Top = 3840
Width = 855
End
Begin VB.Label lblLabels
Caption = "通讯地址:"
Height = 255
Index = 7
Left = 240
TabIndex = 16
Top = 4200
Width = 855
End
Begin VB.Label lblLabels
Caption = "送出公司名称:"
Height = 255
Index = 6
Left = 240
TabIndex = 14
Top = 2400
Width = 1095
End
Begin VB.Label lblLabels
Caption = "送出地点:"
Height = 255
Index = 5
Left = 240
TabIndex = 12
Top = 2760
Width = 855
End
Begin VB.Label lblLabels
Caption = "送出日期:"
Height = 255
Index = 4
Left = 4080
TabIndex = 11
Top = 2400
Width = 855
End
Begin VB.Label lblLabels
Caption = "故障原因:"
Height = 255
Index = 3
Left = 240
TabIndex = 9
Top = 960
Width = 855
End
Begin VB.Label lblLabels
Caption = "设备状态:"
Height = 255
Index = 2
Left = 240
TabIndex = 7
Top = 600
Width = 735
End
Begin VB.Label lblLabels
Caption = "设备名称:"
Height = 255
Index = 1
Left = 4080
TabIndex = 5
Top = 240
Width = 855
End
Begin VB.Label lblLabels
Caption = "设备编号:"
Height = 255
Index = 0
Left = 240
TabIndex = 3
Top = 240
Width = 855
End
End
End
End
End
Attribute VB_Name = "F_WangLuoYunXing"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim WithEvents adoPrimaryRS As Recordset
Attribute adoPrimaryRS.VB_VarHelpID = -1
Dim mvBookMark As Variant
Dim mbEditFlag As Boolean
Dim mbAddNewFlag As Boolean
Private Sub Form_Load()
On Error Resume Next
For Each TextBox In Me.Controls
Next
Dim oText As TextBox
Set adoPrimaryRS = New Recordset
adoPrimaryRS.Open "select 设备编号,设备名称,设备状态,故障原因,送出日期,送出地点,送出公司名称,通讯地址,邮政编码,联系人姓名,职务,电话,传真,呼机,手机,电子邮件,预计维护费用,实际费用 from 网络设备运行状况", db, adOpenStatic, adLockOptimistic
Set DataGrid1.DataSource = adoPrimaryRS
'Set DTPicker1.DataSource = adoPrimaryRS
SetButtons True
Set DTPicker1.DataSource = adoPrimaryRS
'Bind the text boxes to the data provider
For Each oText In Me.txtFields
Set oText.DataSource = adoPrimaryRS
Next
End Sub
Private Sub Form_Unload(Cancel As Integer)
Screen.MousePointer = vbDefault
End Sub
Private Sub cmdAdd_Click()
On Error GoTo AddErr
With adoPrimaryRS
If Not (.BOF And .EOF) Then
mvBookMark = .Bookmark
End If
.AddNew
mbAddNewFlag = True
SetButtons False
End With
Exit Sub
AddErr:
MsgBox "增加操作有错误", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdDelete_Click()
On Error GoTo DeleteErr
With adoPrimaryRS
.Delete
.MoveNext
If .EOF Then .MoveLast
End With
Exit Sub
DeleteErr:
MsgBox "删除操作有错误", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdRefresh_Click()
'This is only needed for multi user apps
On Error GoTo RefreshErr
adoPrimaryRS.Requery
Exit Sub
RefreshErr:
MsgBox "刷新操作有错误", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdEdit_Click()
On Error GoTo EditErr
mbEditFlag = True
SetButtons False
Exit Sub
EditErr:
MsgBox "更改操作有错误", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdCancel_Click()
' On Error Resume Next
On Error GoTo CancelErr
mbEditFlag = False
mbAddNewFlag = False
adoPrimaryRS.CancelUpdate
If mvBookMark > 0 Then
adoPrimaryRS.Bookmark = mvBookMark
Else
adoPrimaryRS.MoveFirst
End If
SetButtons True
Exit Sub
CancelErr:
MsgBox "取消操作有错误", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdUpdate_Click()
On Error GoTo UpdateErr
adoPrimaryRS.UpdateBatch adAffectAll
If mbAddNewFlag Then
adoPrimaryRS.MoveLast 'move to the new record
End If
mbEditFlag = False
mbAddNewFlag = False
SetButtons True
Exit Sub
UpdateErr:
MsgBox "保存操作有错误", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdClose_Click()
XiTongGl.Enabled = True
Unload Me
End Sub
Private Sub SetButtons(bVal As Boolean)
Dim oText As TextBox
cmdAdd.Visible = bVal
cmdEdit.Visible = bVal
cmdUpdate.Visible = Not bVal
cmdCancel.Visible = Not bVal
cmdDelete.Visible = bVal
cmdClose.Visible = bVal
cmdRefresh.Visible = bVal
If bVal Then
Set DataGrid1.DataSource = adoPrimaryRS
Else
Set DataGrid1.DataSource = Nothing
End If
For Each oText In Me.txtFields
oText.Enabled = Not bVal
Next
DTPicker1.Enabled = Not bVal
End Sub
Private Sub txtFields_LostFocus(Index As Integer)
If Not IsNumeric(txtFields(16).Text) And (txtFields(16).Text <> "") Then
MsgBox "请在“预计维护费用”中输入数字", vbExclamation + vbOKOnly, pTitle
txtFields(16).SetFocus
txtFields(16).SelLength = Len(txtFields(16))
txtFields(16).SelStart = 0
End If
If Not IsNumeric(txtFields(17).Text) And (txtFields(17).Text <> "") Then
MsgBox "请在“实际费用”中输入数字", vbExclamation + vbOKOnly, pTitle
txtFields(17).SetFocus
txtFields(17).SelLength = Len(txtFields(17))
txtFields(17).SelStart = 0
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -