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

企业管理

开发平台:

Visual Basic

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