📄 frmsalaryedit.frm
字号:
VERSION 5.00
Begin VB.Form FrmSalaryEdit
BorderStyle = 1 'Fixed Single
Caption = "编辑工资信息"
ClientHeight = 3300
ClientLeft = 45
ClientTop = 330
ClientWidth = 6375
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3300
ScaleWidth = 6375
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Caption = "基本信息"
Height = 855
Left = 240
TabIndex = 9
Top = 240
Width = 5895
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "工资月份"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 240
TabIndex = 13
Top = 360
Width = 720
End
Begin VB.Label Label8
AutoSize = -1 'True
BackColor = &H00FFC0C0&
BackStyle = 0 'Transparent
Caption = "员工姓名"
Height = 180
Left = 3120
TabIndex = 12
Top = 360
Width = 720
End
Begin VB.Label lblMonth
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "year-month"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 1320
TabIndex = 11
Top = 360
Width = 900
End
Begin VB.Label lblName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Emp_Name"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 4560
TabIndex = 10
Top = 360
Width = 720
End
End
Begin VB.CommandButton Cmd_Cancel
Cancel = -1 'True
Caption = "取 消"
Height = 400
Left = 3810
MouseIcon = "FrmSalaryEdit.frx":0000
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 8
Top = 2640
Width = 1300
End
Begin VB.CommandButton Cmd_OK
Caption = "确 定"
Default = -1 'True
Height = 400
Left = 1440
MouseIcon = "FrmSalaryEdit.frx":030A
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 7
Top = 2640
Width = 1300
End
Begin VB.Frame Frame2
Caption = "工资信息"
Height = 1215
Left = 240
TabIndex = 0
Top = 1200
Width = 5895
Begin VB.TextBox txtQtkk
Alignment = 1 'Right Justify
Height = 270
Left = 1320
MaxLength = 5
TabIndex = 3
Top = 315
Width = 1335
End
Begin VB.TextBox txtMdbx
Alignment = 1 'Right Justify
Height = 270
Left = 4440
MaxLength = 5
TabIndex = 2
Top = 315
Width = 1335
End
Begin VB.TextBox txtYearPrize
Alignment = 1 'Right Justify
Height = 270
Left = 1320
MaxLength = 5
TabIndex = 1
Top = 795
Width = 1335
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "其它扣款"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 240
TabIndex = 6
Top = 360
Width = 720
End
Begin VB.Label Label11
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "医药费报销"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 3120
TabIndex = 5
Top = 360
Width = 900
End
Begin VB.Label Label14
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "年终奖金"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 240
TabIndex = 4
Top = 840
Width = 720
End
End
End
Attribute VB_Name = "FrmSalaryEdit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public OriEmpId As Integer
Public TmpSfgz As Single
Private Sub Cmd_Cancel_Click()
Unload Me
End Sub
Private Sub Cmd_OK_Click()
With MySal
.Qtkk = Val(txtQtkk)
.Mdbx = Val(txtMdbx)
.YearPrize = Val(txtYearPrize)
'重新计算实发工资
.Sfgz = TmpSfgz - .Qtkk + .Mdbx + .YearPrize
Call .UpdateInput(lblMonth, OriEmpId)
End With
Unload Me
End Sub
Private Sub Form_Load()
TmpSfgz = TmpSfgz + Val(txtQtkk) - Val(txtMdbx) - Val(txtYearPrize)
End Sub
Private Sub txtMdbx_KeyPress(KeyAscii As Integer)
EnterTAB (KeyAscii)
If In_Single(KeyAscii) = False Then
KeyAscii = 0
End If
End Sub
Private Sub txtQtkk_KeyPress(KeyAscii As Integer)
EnterTAB (KeyAscii)
If In_Single(KeyAscii) = False Then
KeyAscii = 0
End If
End Sub
Private Sub txtYearPrize_KeyPress(KeyAscii As Integer)
EnterTAB (KeyAscii)
If In_Single(KeyAscii) = False Then
KeyAscii = 0
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -