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

企业管理

开发平台:

Visual Basic

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