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

企业管理

开发平台:

Visual Basic

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