F_KYGongZiYueBuMen.frm
上传用户:xiao_xia32
上传日期:2022-07-21
资源大小:1174k
文件大小:2k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form F_KYGongZiYueBuMen 
  3.    Caption         =   "工资月部门汇总"
  4.    ClientHeight    =   4080
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   8205
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   4080
  10.    ScaleWidth      =   8205
  11.    StartUpPosition =   3  'Windows Default
  12.    WindowState     =   2  'Maximized
  13.    Begin VB.TextBox Text1 
  14.       Height          =   285
  15.       Left            =   840
  16.       TabIndex        =   3
  17.       Top             =   240
  18.       Width           =   1455
  19.    End
  20.    Begin VB.TextBox Text2 
  21.       Height          =   285
  22.       Left            =   3480
  23.       TabIndex        =   2
  24.       Top             =   240
  25.       Width           =   1455
  26.    End
  27.    Begin VB.CommandButton cmdPrint 
  28.       Caption         =   "打印预览"
  29.       Height          =   300
  30.       Left            =   5280
  31.       TabIndex        =   1
  32.       Top             =   240
  33.       Width           =   1095
  34.    End
  35.    Begin VB.CommandButton cmdClose 
  36.       Caption         =   "关闭"
  37.       Height          =   300
  38.       Left            =   6480
  39.       TabIndex        =   0
  40.       Top             =   240
  41.       Width           =   1095
  42.    End
  43.    Begin VB.Label Label1 
  44.       Caption         =   "年度"
  45.       Height          =   255
  46.       Left            =   120
  47.       TabIndex        =   5
  48.       Top             =   240
  49.       Width           =   1095
  50.    End
  51.    Begin VB.Label Label2 
  52.       Caption         =   "月份"
  53.       Height          =   255
  54.       Left            =   2520
  55.       TabIndex        =   4
  56.       Top             =   240
  57.       Width           =   975
  58.    End
  59. End
  60. Attribute VB_Name = "F_KYGongZiYueBuMen"
  61. Attribute VB_GlobalNameSpace = False
  62. Attribute VB_Creatable = False
  63. Attribute VB_PredeclaredId = True
  64. Attribute VB_Exposed = False
  65. Private Sub cmdClose_Click()
  66. RSGL.Enabled = True
  67. Unload Me
  68. End Sub
  69. Private Sub cmdPrint_Click()
  70. Dim NianDu As Integer
  71. Dim YueFen As Integer
  72. If IsNumeric(Text1) And IsNumeric(Text2) Then
  73.   NianDu = CDbl(Text1)
  74.   YueFen = CDbl(Text2)
  75. DataEnvironment1.Commands("Cmd_部门月工资").Parameters("param1").Value = NianDu
  76. DataEnvironment1.Commands("Cmd_部门月工资").Parameters("param2").Value = YueFen
  77. DRP_部门月工资.Show
  78. End If
  79. End Sub