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

企业管理

开发平台:

Visual Basic

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