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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{0BA686C6-F7D3-101A-993E-0000C0EF6F5E}#1.0#0"; "THREED32.OCX"
  3. Begin VB.Form F_FuliFeiDaYin 
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "福利费"
  6.    ClientHeight    =   6090
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   11910
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    Moveable        =   0   'False
  14.    ScaleHeight     =   6090
  15.    ScaleWidth      =   11910
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  '屏幕中心
  18.    WindowState     =   2  'Maximized
  19.    Begin Threed.SSCommand cmdPrint 
  20.       Height          =   375
  21.       Left            =   9000
  22.       TabIndex        =   3
  23.       Top             =   240
  24.       Width           =   1095
  25.       _Version        =   65536
  26.       _ExtentX        =   1931
  27.       _ExtentY        =   661
  28.       _StockProps     =   78
  29.       Caption         =   "&P.打印预览"
  30.       Font3D          =   3
  31.    End
  32.    Begin VB.ComboBox Combo1 
  33.       Height          =   300
  34.       Left            =   6600
  35.       TabIndex        =   2
  36.       Top             =   240
  37.       Width           =   1695
  38.    End
  39.    Begin VB.TextBox Text1 
  40.       Appearance      =   0  'Flat
  41.       Height          =   285
  42.       Left            =   840
  43.       TabIndex        =   0
  44.       Top             =   248
  45.       Width           =   1455
  46.    End
  47.    Begin VB.TextBox Text2 
  48.       Appearance      =   0  'Flat
  49.       Height          =   285
  50.       Left            =   3480
  51.       TabIndex        =   1
  52.       Top             =   240
  53.       Width           =   1455
  54.    End
  55.    Begin Threed.SSCommand cmdClose 
  56.       Height          =   375
  57.       Left            =   10320
  58.       TabIndex        =   4
  59.       Top             =   240
  60.       Width           =   1095
  61.       _Version        =   65536
  62.       _ExtentX        =   1931
  63.       _ExtentY        =   661
  64.       _StockProps     =   78
  65.       Caption         =   "&Q.关  闭"
  66.       Font3D          =   3
  67.    End
  68.    Begin VB.Label Label3 
  69.       Caption         =   "福利项目"
  70.       Height          =   255
  71.       Left            =   5280
  72.       TabIndex        =   7
  73.       Top             =   263
  74.       Width           =   1095
  75.    End
  76.    Begin VB.Label Label1 
  77.       Caption         =   "年度"
  78.       Height          =   255
  79.       Left            =   120
  80.       TabIndex        =   6
  81.       Top             =   263
  82.       Width           =   1095
  83.    End
  84.    Begin VB.Label Label2 
  85.       Caption         =   "月  份"
  86.       Height          =   255
  87.       Left            =   2520
  88.       TabIndex        =   5
  89.       Top             =   263
  90.       Width           =   975
  91.    End
  92. End
  93. Attribute VB_Name = "F_FuliFeiDaYin"
  94. Attribute VB_GlobalNameSpace = False
  95. Attribute VB_Creatable = False
  96. Attribute VB_PredeclaredId = True
  97. Attribute VB_Exposed = False
  98. Private Sub cmdClose_Click()
  99.     RSGL.Enabled = True
  100.     Unload Me
  101. End Sub
  102. Private Sub cmdPrint_Click()
  103. Dim NianDu As Integer
  104. Dim YueFen As Integer
  105. If IsNumeric(Text1) And IsNumeric(Text2) And Combo1.Text <> "" Then
  106.   NianDu = CDbl(Text1)
  107.   YueFen = CDbl(Text2)
  108. DataEnvironment1.Commands("Cmd_福利费_Grouping").Parameters("param1").Value = NianDu
  109. DataEnvironment1.Commands("Cmd_福利费_Grouping").Parameters("param2").Value = YueFen
  110. DataEnvironment1.Commands("Cmd_福利费_Grouping").Parameters("param3").Value = Combo1.Text
  111. DRP_福利费.Show
  112. Else
  113.   MsgBox "请选择年度、月份、和费用项目!"
  114. End If
  115. End Sub
  116. Private Sub Combo1_KeyPress(KeyAscii As Integer)
  117. If KeyAscii = vbKeyReturn Then
  118.     SendKeys "{TAB}"
  119. End If
  120. End Sub
  121. Private Sub Form_Load()
  122. SqlFeiYongXiangMu = "select  distinct 费用项目 from 福利费用 where 费用项目 is not null"
  123.   Set RsFeiYongXiangMu = db.Execute(SqlFeiYongXiangMu)
  124.    
  125.   While Not RsFeiYongXiangMu.EOF
  126.     Combo1.AddItem Trim(RsFeiYongXiangMu("费用项目"))
  127.     RsFeiYongXiangMu.MoveNext
  128.   Wend
  129.   
  130. End Sub
  131. Private Sub Text1_KeyPress(KeyAscii As Integer)
  132. If KeyAscii = vbKeyReturn Then
  133.     SendKeys "{TAB}"
  134. End If
  135. End Sub
  136. Private Sub Text2_KeyPress(KeyAscii As Integer)
  137. If KeyAscii = vbKeyReturn Then
  138.     SendKeys "{TAB}"
  139. End If
  140. End Sub