📄 frmgrsd7.frm
字号:
VERSION 5.00
Begin VB.Form frmgrsd7
BorderStyle = 1 'Fixed Single
Caption = "劳务报酬所得"
ClientHeight = 2385
ClientLeft = 45
ClientTop = 330
ClientWidth = 7680
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2385
ScaleWidth = 7680
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Com退出
Caption = "退 出"
Height = 375
Left = 6480
TabIndex = 1
Top = 360
Width = 975
End
Begin VB.CommandButton Com输入
Caption = "输 入"
Height = 375
Left = 5160
TabIndex = 0
Top = 360
Width = 975
End
Begin VB.Label Label4
Caption = "单击“输入”按钮,输入你一次取得的应纳税所得额。"
BeginProperty Font
Name = "微软简隶书"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 120
TabIndex = 5
Top = 120
Width = 4695
End
Begin VB.Label Label3
Caption = "您本次应缴纳个人所得税为:"
BeginProperty Font
Name = "幼圆"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 495
Left = 240
TabIndex = 4
Top = 1080
Width = 3015
End
Begin VB.Label Label2
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "元(人民币)"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 300
Left = 5640
TabIndex = 3
Top = 1680
Width = 1995
End
Begin VB.Label label1
Alignment = 1 'Right Justify
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2880
TabIndex = 2
Top = 1560
Width = 2655
End
End
Attribute VB_Name = "frmgrsd7"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim sde As Currency '声明所得额SDE为变比整型变量
Dim se As Currency '声明税额SE为变比整型变量
Private Sub Com输入_Click()
Call shuru(tmp)
sde = CCur(tmp)
If sde <= 800 Then
MsgBox ("你不用纳税!"), , "提示信息"
ElseIf sde > 800 And sde < 4000 Then
se = (sde - 800) * 0.2
label1.Caption = CStr(se)
ElseIf sde >= 4000 And sde <= 20000 Then
se = (sde * (1 - 0.2)) * 0.2
label1.Caption = CStr(se)
ElseIf sde > 20000 And sde <= 50000 Then
se = (sde * (1 - 0.3)) * 0.2 - 2000
label1.Caption = CStr(se)
ElseIf sde > 50000 Then
se = (sde * (1 - 0.4)) * 0.2 - 7000
label1.Caption = CStr(se)
End If
End Sub
Private Sub Com退出_Click()
Unload frmgrsd7
frmgrsd.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -