⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmgrsd5.frm

📁 个人所得税 学习(VB)
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmgrsd5 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "财产转让所得,利息、股息、红利所得,偶然所得"
   ClientHeight    =   2400
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   7515
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2400
   ScaleWidth      =   7515
   StartUpPosition =   3  'Windows Default
   Begin VB.CommandButton Com退出 
      Caption         =   "退   出"
      Height          =   375
      Left            =   6360
      TabIndex        =   1
      Top             =   480
      Width           =   975
   End
   Begin VB.CommandButton Com输入 
      Caption         =   "输  入"
      Height          =   375
      Left            =   5040
      TabIndex        =   0
      Top             =   480
      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            =   0
      TabIndex        =   5
      Top             =   240
      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            =   120
      TabIndex        =   4
      Top             =   1200
      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            =   5520
      TabIndex        =   3
      Top             =   1800
      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            =   2760
      TabIndex        =   2
      Top             =   1680
      Width           =   2655
   End
End
Attribute VB_Name = "frmgrsd5"
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 <= 0 Then
        MsgBox ("你不用纳税!"), , "提示信息"
    ElseIf sde > 0 Then
        se = sde * 0.2
        label1.Caption = CStr(se)
    
    End If
    
    
End Sub

Private Sub Com退出_Click()
    Unload frmgrsd5
    frmgrsd.Show
    
End Sub


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -