📄 form3.frm
字号:
VERSION 5.00
Begin VB.Form Form我的工资
BackColor = &H00FFC0C0&
Caption = "我的工资"
ClientHeight = 7665
ClientLeft = 60
ClientTop = 390
ClientWidth = 10965
LinkTopic = "Form3"
ScaleHeight = 7665
ScaleWidth = 10965
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command1
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 8520
TabIndex = 6
Top = 6120
Width = 1455
End
Begin VB.TextBox Text5
Height = 615
Left = 3120
TabIndex = 5
Text = " "
Top = 3000
Width = 5055
End
Begin VB.TextBox Text2
Height = 495
Left = 3120
TabIndex = 3
Text = " "
Top = 1440
Width = 5055
End
Begin VB.TextBox Text1
Height = 495
Left = 3120
TabIndex = 1
Text = " "
Top = 240
Width = 5055
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "基本工资+特殊项总金额+工龄×30"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 3120
TabIndex = 7
Top = 2280
Width = 5055
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "工资总额"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 720
TabIndex = 4
Top = 3240
Width = 1455
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "职工编号"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 720
TabIndex = 2
Top = 1800
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "姓名"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 720
TabIndex = 0
Top = 360
Width = 1455
End
End
Attribute VB_Name = "Form我的工资"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1 = Form发放.Text5
Text2 = Form发放.Text7
Text5 = Val(Form发放.Text3) + Val(Form发放.Text6) + 30 * Val(Form发放.Text2)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -