上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:14k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Query_Frm_ComputeSalary 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "查询条件"
  5.    ClientHeight    =   2145
  6.    ClientLeft      =   2760
  7.    ClientTop       =   3750
  8.    ClientWidth     =   3930
  9.    Icon            =   "查询条件_计算工资.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2145
  14.    ScaleWidth      =   3930
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   1  '所有者中心
  17.    Begin VB.CommandButton Command1 
  18.       Caption         =   "条件(&M)"
  19.       Height          =   300
  20.       Left            =   2745
  21.       TabIndex        =   6
  22.       Top             =   1755
  23.       Width           =   1120
  24.    End
  25.    Begin VB.CommandButton Cmd_OK 
  26.       Caption         =   "确定(&O)"
  27.       Height          =   300
  28.       Left            =   390
  29.       TabIndex        =   3
  30.       Top             =   1770
  31.       Width           =   1120
  32.    End
  33.    Begin VB.CommandButton Cmd_Cancel 
  34.       Caption         =   "取消(&C)"
  35.       Default         =   -1  'True
  36.       Height          =   300
  37.       Left            =   1575
  38.       TabIndex        =   2
  39.       Top             =   1770
  40.       Width           =   1120
  41.    End
  42.    Begin VB.Frame Frame1 
  43.       Height          =   1380
  44.       Left            =   150
  45.       TabIndex        =   0
  46.       Top             =   105
  47.       Width           =   3720
  48.       Begin VB.TextBox LrText 
  49.          Height          =   300
  50.          Index           =   1
  51.          Left            =   1005
  52.          TabIndex        =   9
  53.          Text            =   "1"
  54.          Top             =   570
  55.          Width           =   1650
  56.       End
  57.       Begin VB.TextBox LrText 
  58.          Height          =   300
  59.          Index           =   0
  60.          Left            =   1005
  61.          TabIndex        =   7
  62.          Text            =   "0"
  63.          Top             =   180
  64.          Width           =   1650
  65.       End
  66.       Begin VB.CommandButton Ydcommand1 
  67.          Height          =   300
  68.          Index           =   2
  69.          Left            =   2655
  70.          Picture         =   "查询条件_计算工资.frx":1042
  71.          Style           =   1  'Graphical
  72.          TabIndex        =   5
  73.          Top             =   975
  74.          Visible         =   0   'False
  75.          Width           =   300
  76.       End
  77.       Begin VB.TextBox LrText 
  78.          Height          =   300
  79.          Index           =   2
  80.          Left            =   1005
  81.          TabIndex        =   1
  82.          Text            =   "2"
  83.          Top             =   960
  84.          Width           =   1650
  85.       End
  86.       Begin VB.Label Lab_Note 
  87.          AutoSize        =   -1  'True
  88.          Caption         =   "会计期间:"
  89.          Height          =   180
  90.          Index           =   1
  91.          Left            =   105
  92.          TabIndex        =   10
  93.          Top             =   660
  94.          Width           =   810
  95.       End
  96.       Begin VB.Label Lab_Note 
  97.          AutoSize        =   -1  'True
  98.          Caption         =   "会计年:"
  99.          Height          =   180
  100.          Index           =   0
  101.          Left            =   105
  102.          TabIndex        =   8
  103.          Top             =   270
  104.          Width           =   630
  105.       End
  106.       Begin VB.Label Lab_Note 
  107.          AutoSize        =   -1  'True
  108.          Caption         =   "工资类别:"
  109.          Height          =   180
  110.          Index           =   2
  111.          Left            =   105
  112.          TabIndex        =   4
  113.          Top             =   1050
  114.          Width           =   810
  115.       End
  116.    End
  117. End
  118. Attribute VB_Name = "Query_Frm_ComputeSalary"
  119. Attribute VB_GlobalNameSpace = False
  120. Attribute VB_Creatable = False
  121. Attribute VB_PredeclaredId = True
  122. Attribute VB_Exposed = False
  123. '******************************************************************
  124. '*    模 块 名 称 :计划查询条件
  125. '*    功 能 描 述 :设置计划查询条件
  126. '*    程序员姓名  :奚俊峰
  127. '*    最后修改人  :
  128. '*    最后修改时间:
  129. '*    备        注:程序中所有依实际情况自定义部分均用[>>  <<]括起
  130. '******************************************************************
  131. Dim Tsxx As String                       '系统信息提示
  132. Public sSqlWhereMe As String
  133. Public sSqlWhereMore As String
  134. Public sSqlWhere As String
  135. '以下为固定使用变量(文本框)
  136. Dim Textvar() As Variant                 '存储变体型文本框信息
  137. Dim Textboolean() As Boolean             '存储布尔型文本框信息
  138. Dim Textint() As Integer                 '存储整型文本框信息
  139. Dim Textstr() As String                  '存储字符型文本框信息
  140. Dim Max_Text_Index As Integer            '最大录入文本框索引值
  141. Dim TextGroupCode As String              '文本框录入分组编码
  142. Dim TextValiLock As Boolean              '文本框失去焦点是否进行有效性控制判断
  143. Dim TextValiJudgeLock() As Boolean       '文本框录入有效性判断控制锁
  144. Dim CurTextIndex As Integer              '当前文本框索引值
  145. Dim TextChangeLock As Boolean            '文本框内容变换控制锁
  146. Dim Bln_Cancel As Boolean                '取消按钮信息传递
  147. Private Sub Form_KeyPress(KeyAscii As Integer)   '控 制 焦 点 转 移
  148.    Dim jdzygs As Integer                         '控件焦点转移个数
  149.    jdzygs = 30
  150.    Select Case KeyAscii
  151.       Case vbKeyReturn
  152.            If Kjjdzy(jdzygs) Then
  153.               KeyAscii = 0
  154.            End If
  155.       Case 39           '屏蔽"'"
  156.         KeyAscii = 0
  157.    End Select
  158. End Sub
  159. Private Sub Form_Load()
  160.    '以下为文本框处理程序
  161.    TextGroupCode = "Pm_QuerySimple"
  162.    Call Drwbkxx(TextGroupCode, Textvar(), Textboolean(), Textint(), Textstr())  '读入文本框录入信息
  163.    Call Wbkcsh
  164. End Sub
  165. Private Sub Cmd_OK_Click()                                   '确 定
  166.     '录入条件有效性判断
  167.     If Not Lrtjyxxpd Then
  168.        Exit Sub
  169.     End If
  170.     
  171.     Dim s As String
  172.     s = ""
  173.     
  174.     With Me
  175.         s = "where PM_PayRoll.KjYear=" & .LrText(0).Text & " and PM_PayRoll.Period=" & .LrText(1).Text & " and PM_PayRoll.SortID='" & .LrText(2).Tag & "' " & Chr(10)
  176.         s = s & " and PM_PayRoll.DeptCode in (Select DeptCode from PM_OpeDept ) " & Chr(10)
  177.         .sSqlWhereMe = s
  178.         
  179.         If Trim(.sSqlWhereMore) <> "" Then
  180.             .sSqlWhere = .sSqlWhereMe & " and " & .sSqlWhereMore
  181.         Else
  182.             .sSqlWhere = .sSqlWhereMe
  183.         End If
  184.         
  185.     End With
  186.     
  187.     '激活查询过程
  188.     
  189.     Salary_Frm_Compute.Timer1.Enabled = True
  190. End Sub
  191. Private Sub QxCommand_Click()                                    '取消
  192.     Me.Hide
  193. End Sub
  194. Private Function Lrtjyxxpd() As Boolean                          '用户录入条件有效性判断
  195.  Dim Jsqte As Integer
  196.  Lrtjyxxpd = False
  197.  
  198. '对需要进行事后判断的文本框录入内容进行有效性判断 (固定不变)
  199.   For Jsqte = 0 To Max_Text_Index
  200.     If Textint(Jsqte, 9) = 0 Or Textint(Jsqte, 9) = 2 Then
  201.       If Not TextYxxpd(Jsqte) Then
  202.          Exit Function
  203.       End If
  204.     End If
  205.   Next Jsqte
  206.    
  207.  '[>>以下为依据实际情况自定义部分
  208.  
  209.  
  210.   
  211.  '<<]以上为依据实际情况自定义部分
  212.  
  213.  Lrtjyxxpd = True
  214. End Function
  215. '************以下为文本框录入处理程序(固定不变部分)*************'
  216. Private Sub Wbklrwbcl(Index As Integer)    '文本框录入事后处理程序
  217.   '以下为依据实际情况自定义部分[
  218.   
  219.       '在此填写文本框录入事后处理程序
  220.    
  221.   ']以上为依据实际情况自定义部分
  222. End Sub
  223. Private Sub LrText_Change(Index As Integer)
  224.    '屏蔽程序改变控制
  225.    If TextChangeLock Then
  226.       Exit Sub
  227.    End If
  228.    
  229.    TextValiJudgeLock(Index) = False    '打开有效性判断锁
  230.     
  231.     '限制字段录入长度
  232.           
  233.      TextChangeLock = True  '加锁(防止执行Lrtext_Change)
  234.      
  235.      Call TextChangeLimit(LrText(Index), Textint(Index, 1))  '去掉无效字符
  236.      
  237.         Select Case Textint(Index, 1)
  238.            Case 8, 11      '金额型
  239.              Call Sjgskz(LrText(Index), Xtjezws - Xtjexsws - 1, Xtjexsws)
  240.            Case 9, 12      '数量型
  241.              Call Sjgskz(LrText(Index), Xtslzws - Xtslxsws - 1, Xtslxsws)
  242.            Case 10          '单价型
  243.              Call Sjgskz(LrText(Index), Xtdjzws - Xtdjxsws - 1, Xtdjxsws)
  244.            Case Else        '其他小数类型控制
  245.               If Textint(Index, 6) <> 0 Or Textint(Index, 7) <> 0 Then
  246.                  Call Sjgskz(LrText(Index), Textint(Index, 6), Textint(Index, 7))
  247.               End If
  248.         End Select
  249.      TextChangeLock = False '解锁
  250. End Sub
  251. Private Sub LrText_GotFocus(Index As Integer)                                                 '文本框得到焦点,显示相应信息
  252.    Call TextShow(Index)
  253.    CurTextIndex = Index
  254.    LrText(Index).SelStart = Len(LrText(Index))
  255. End Sub
  256. Private Sub LrText_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)            '字段按F2键提供帮助
  257.    Select Case KeyCode
  258.       Case vbKeyF2
  259.         Call Text_Help(Index)
  260.    End Select
  261. End Sub
  262. Private Sub LrText_KeyPress(Index As Integer, KeyAscii As Integer)                            '文本框录入事中控制
  263.    Call InputFieldLimit(LrText(Index), Textint(Index, 1), KeyAscii)
  264. End Sub
  265. Private Sub LrText_LostFocus(Index As Integer)                                                '文本框失去焦点进行有效性判断及相应处理
  266.   If Textint(Index, 9) = 0 Or Textint(Index, 9) = 1 Then '事中判断
  267.      Call TextYxxpd(Index)
  268.   End If
  269. End Sub
  270. Private Sub Ydcommand1_MouseDown(Index As Integer, Button As Integer, Shift As Integer, x As Single, y As Single)     '按钮提供帮助
  271.    Call Text_Help(Index)
  272. End Sub
  273. Private Sub Text_Help(Index As Integer)                                                       '录入字段帮助
  274.     If Not Textboolean(Index, 1) Then
  275.        Exit Sub
  276.     End If
  277.     TextValiJudgeLock(Index) = True
  278.    
  279.      '先进行有效性判断
  280.     If Not TextYxxpd(CurTextIndex) Then
  281.        Exit Sub
  282.     End If
  283.     
  284.      '[>>调入参照窗体
  285.     If Index = 3 Then
  286.         sParam = Trim(Me.LrText(2).Tag)
  287.     End If
  288.         
  289.     Call Drbmhelp(Textint(Index, 2), Textstr(Index, 4), Trim(LrText(Index).Text))
  290.      
  291.      '<<]
  292.     If Len(Xtfhcs) <> 0 Then
  293.        If Textint(Index, 3) = 1 Then
  294.           LrText(Index).Text = Xtfhcsfz
  295.           LrText(Index).Tag = Xtfhcs
  296.        Else
  297.           LrText(Index).Text = Xtfhcs
  298.           LrText(Index).Tag = Xtfhcsfz
  299.        End If
  300.     
  301.     End If
  302.    TextValiJudgeLock(Index) = False
  303.    LrText(Index).SetFocus
  304. End Sub
  305. Private Sub TextShow(Index As Integer)        '文本框得到焦点,显示相应信息
  306.    '填写文本框得到焦点,进行相应信息处理程序
  307.    
  308. End Sub
  309. Private Sub Wbkcsh()                          '录入文本框初始化
  310.   Dim Jsqte As Integer
  311.   
  312.   '最大录入文本框索引值
  313.   Max_Text_Index = Textvar(1)
  314.   
  315.   ReDim TextValiJudgeLock(Max_Text_Index)
  316.   For Jsqte = 0 To Max_Text_Index
  317.      
  318.      If Len(Trim(Textstr(Jsqte, 1))) <> 0 Then
  319.         If Textboolean(Jsqte, 1) Then
  320.             If Jsqte <> 0 And Not Textboolean(Jsqte, 3) Then
  321.                 Load Ydcommand1(Jsqte)
  322.             End If
  323.             Ydcommand1(Jsqte).Visible = True
  324.             Ydcommand1(Jsqte).Move LrText(Jsqte).Left + LrText(Jsqte).Width, LrText(Jsqte).Top
  325.         End If
  326.         TextChangeLock = True
  327.          LrText(Jsqte).Text = ""
  328.          LrText(Jsqte).Tag = ""
  329.          If Textint(Jsqte, 5) <> 0 Then
  330.             LrText(Jsqte).MaxLength = Textint(Jsqte, 5)
  331.          End If
  332.         TextChangeLock = False
  333.      End If
  334.      TextValiJudgeLock(Jsqte) = True
  335.   Next Jsqte
  336. End Sub
  337. Private Function TextYxxpd(Index As Integer) As Boolean           '文本框有效性判断
  338.   Dim Sqlstr As String
  339.   Dim Findrec As ADODB.Recordset
  340.   If TextValiJudgeLock(Index) Then    '文本框内容未曾改变不进行有效性判断
  341.      TextYxxpd = True
  342.      Exit Function
  343.   End If
  344.   If Trim(LrText(Index)) = "" Then
  345.      LrText(Index).Tag = ""
  346.      Call Wbklrwbcl(Index)
  347.      TextValiJudgeLock(Index) = True
  348.      TextYxxpd = True
  349.      Exit Function
  350.   End If
  351.        Select Case Textint(Index, 4)
  352.          Case 1      '编码型
  353.             Sqlstr = Trim(Textstr(Index, 5))
  354.             Sqlstr = Replace(Sqlstr, "@", "'" + Trim(LrText(Index).Text) + "'")
  355.             Set Findrec = Cw_DataEnvi.DataConnect.Execute(Sqlstr)
  356.             If Findrec.EOF Then
  357.                Call Xtxxts(Trim(Textstr(Index, 6)), 0, 1)
  358.                LrText(Index).SetFocus
  359.                Exit Function
  360.             Else
  361.                Select Case Textint(Index, 3)
  362.                  Case 0
  363.                    If Len(Trim(Textstr(Index, 2))) <> 0 Then
  364.                       LrText(Index).Text = Trim(Findrec.Fields(Trim(Textstr(Index, 2))))
  365.                    End If
  366.                     If Len(Trim(Textstr(Index, 3) & "")) <> 0 Then
  367.                       LrText(Index).Tag = Trim(Findrec.Fields(Trim(Textstr(Index, 3))))
  368.                    End If
  369.                  Case 1
  370.                    If Len(Trim(Textstr(Index, 3) & "")) <> 0 Then
  371.                       LrText(Index).Text = Trim(Findrec.Fields(Trim(Textstr(Index, 3))))
  372.                    End If
  373.                     If Len(Trim(Textstr(Index, 2))) <> 0 Then
  374.                       LrText(Index).Tag = Trim(Findrec.Fields(Trim(Textstr(Index, 2))))
  375.                    End If
  376.                End Select
  377.             End If
  378.          Case 2      '日期型
  379.             If IsDate(LrText(Index).Text) Then
  380.                LrText(Index).Text = Format(LrText(Index).Text, "yyyy-mm-dd")
  381.                If Val(Mid(LrText(Index), 1, 4)) < 1900 Then
  382.                   LrText(Index).Text = "1900" + Mid(LrText(Index), 5, 6)
  383.                End If
  384.              Else
  385.                Tsxx = "非法公历日期!(格式:" + Format(Date, "yyyy-mm-dd") + ")"
  386.                Call Xtxxts(Tsxx, 0, 1)
  387.                LrText(Index).SetFocus
  388.                Exit Function
  389.             End If
  390.          Case 3      '其他类型
  391.          
  392.        End Select
  393.    TextValiJudgeLock(Index) = True
  394.    TextYxxpd = True
  395. End Function