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

企业管理

开发平台:

Visual Basic

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