?? f_laowufeidengji.frm
字號:
Width = 2055
End
Begin VB.Label lblLabels
Caption = "所屬部門"
Height = 255
Index = 7
Left = 360
TabIndex = 25
Top = 1320
Width = 975
End
Begin VB.Label lblLabels
Caption = "實發金額"
Height = 255
Index = 6
Left = 4320
TabIndex = 22
Top = 2640
Width = 855
End
Begin VB.Label lblLabels
Caption = "個人稅"
Height = 255
Index = 5
Left = 360
TabIndex = 21
Top = 2640
Width = 1815
End
Begin VB.Label lblLabels
Caption = "稅 率"
Height = 255
Index = 4
Left = 4320
TabIndex = 20
Top = 2040
Width = 735
End
Begin VB.Label lblLabels
Caption = "稅前工資"
Height = 255
Index = 3
Left = 360
TabIndex = 19
Top = 2040
Width = 975
End
Begin VB.Label lblLabels
Caption = "人 數"
Height = 255
Index = 2
Left = 4320
TabIndex = 18
Top = 1320
Width = 975
End
Begin VB.Label lblLabels
Caption = "項 目"
Height = 255
Index = 1
Left = 4320
TabIndex = 17
Top = 600
Width = 1815
End
Begin VB.Label lblLabels
Caption = "時 間"
Height = 255
Index = 0
Left = 360
TabIndex = 16
Top = 600
Width = 1815
End
End
End
End
End
Attribute VB_Name = "F_LaoWuFeiDengJi"
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 Combo1_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys "{TAB}"
End If
End Sub
Private Sub DTPicker1_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys "{TAB}"
End If
End Sub
Private Sub Form_Load()
On Error Resume Next
For Each TextBox In Me.Controls
TextBox.Font.Name = "宋體"
TextBox.Font.Size = 9
Next
Dim SqlBuMen As String
Set adoPrimaryRS = New Recordset
adoPrimaryRS.Open "select * from 勞務費登記", db, adOpenStatic, adLockOptimistic
Set DataGrid1.DataSource = adoPrimaryRS
SetButtons True
Set DTPicker1.DataSource = adoPrimaryRS
Dim oText As TextBox
'Bind the text boxes to the data provider
For Each oText In Me.txtFields
Set oText.DataSource = adoPrimaryRS
Next
Set DTPicker1.DataSource = adoPrimaryRS
Set Combo1.DataSource = adoPrimaryRS
SqlBuMen = "select distinct 部門名稱 from 部門維護表"
Set RsBuMen = db.Execute(SqlBuMen)
While Not RsBuMen.EOF
Combo1.AddItem Trim(RsBuMen("部門名稱"))
RsBuMen.MoveNext
Wend
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
On Error GoTo 0
Exit Sub
AddErr:
MsgBox "增加操作有錯誤", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdDelete_Click()
On Error GoTo DeleteErr
If MsgBox("確認是否刪除勞務費記錄?", vbYesNo + vbQuestion, "系統提示") = vbNo Then Exit Sub
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
On Error GoTo 0
Exit Sub
RefreshErr:
MsgBox "刷新操作有錯誤", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdEdit_Click()
On Error GoTo EditErr
mbEditFlag = True
SetButtons False
On Error GoTo 0
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
If Len(mvBookMark) = 0 Then Exit Sub
adoPrimaryRS.MoveFirst
End If
SetButtons True
On Error GoTo 0
Exit Sub
CancelErr:
MsgBox "取消操作有錯誤", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdUpdate_Click()
On Error GoTo UpdateErr
If MsgBox("是否確認此操作?", vbYesNo + vbQuestion, "系統提示") = vbNo Then Exit Sub
adoPrimaryRS.UpdateBatch adAffectAll
If mbAddNewFlag Then
adoPrimaryRS.MoveLast 'move to the new record
End If
mbEditFlag = False
mbAddNewFlag = False
SetButtons True
On Error GoTo 0
Exit Sub
UpdateErr:
MsgBox "保存操作有錯誤", vbExclamation + vbOKOnly, pTitle
End Sub
Private Sub cmdClose_Click()
RSGL.Enabled = True
Unload Me
End Sub
Private Sub SetButtons(bVal As Boolean)
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
Dim oText As TextBox
'Bind the text boxes to the data provider
For Each oText In Me.txtFields
oText.Enabled = Not bVal
Next
DTPicker1.Enabled = Not bVal
End Sub
Private Sub txtFields_Change(Index As Integer)
If IsNumeric(txtFields(3).Text) And IsNumeric(txtFields(5).Text) Then
txtFields(6) = CDbl(txtFields(3)) - CDbl(txtFields(5))
End If
End Sub
Private Sub txtFields_KeyPress(Index As Integer, KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys "{TAB}"
End If
End Sub
Private Sub txtFields_LostFocus(Index As Integer)
If Not IsNumeric(txtFields(2).Text) And (txtFields(2).Text <> "") Then
MsgBox "請在“人數”中輸入數字", vbExclamation + vbOKOnly, pTitle
txtFields(2).SetFocus
txtFields(2).SelLength = Len(txtFields(2))
txtFields(2).SelStart = 0
End If
If Not IsNumeric(txtFields(3).Text) And (txtFields(3).Text <> "") Then
MsgBox "請在“稅前工資”中輸入數字", vbExclamation + vbOKOnly, pTitle
txtFields(3).SetFocus
txtFields(3).SelLength = Len(txtFields(3))
txtFields(3).SelStart = 0
End If
If Not IsNumeric(txtFields(4).Text) And (txtFields(4).Text <> "") Then
MsgBox "請在“稅率”中輸入數字", vbExclamation + vbOKOnly, pTitle
txtFields(4).SetFocus
txtFields(4).SelLength = Len(txtFields(4))
txtFields(4).SelStart = 0
End If
If Not IsNumeric(txtFields(5).Text) And (txtFields(5).Text <> "") Then
MsgBox "請在“個人稅”中輸入數字", vbExclamation + vbOKOnly, pTitle
txtFields(5).SetFocus
txtFields(5).SelLength = Len(txtFields(5))
txtFields(5).SelStart = 0
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -