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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form YS_FrmDeptBudgetC 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "部门预算条件"
  5.    ClientHeight    =   1470
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4275
  9.    HelpContextID   =   411004001
  10.    Icon            =   "预算设置_部门预算条件.frx":0000
  11.    KeyPreview      =   -1  'True
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1470
  16.    ScaleWidth      =   4275
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   2  '屏幕中心
  19.    Begin VB.CommandButton Command2 
  20.       Caption         =   "取消(&C)"
  21.       Height          =   300
  22.       Left            =   3095
  23.       TabIndex        =   7
  24.       Top             =   1110
  25.       Width           =   1120
  26.    End
  27.    Begin VB.CommandButton Command1 
  28.       Caption         =   "确定(&O)"
  29.       Height          =   300
  30.       Left            =   1895
  31.       TabIndex        =   6
  32.       Top             =   1110
  33.       Width           =   1120
  34.    End
  35.    Begin VB.Frame Frame1 
  36.       Height          =   1035
  37.       Left            =   60
  38.       TabIndex        =   2
  39.       Top             =   0
  40.       Width           =   4155
  41.       Begin VB.CommandButton Ydcommand1 
  42.          Height          =   300
  43.          Index           =   0
  44.          Left            =   3675
  45.          Picture         =   "预算设置_部门预算条件.frx":1042
  46.          Style           =   1  'Graphical
  47.          TabIndex        =   3
  48.          Top             =   210
  49.          Visible         =   0   'False
  50.          Width           =   300
  51.       End
  52.       Begin VB.TextBox LrText 
  53.          Height          =   300
  54.          Index           =   0
  55.          Left            =   990
  56.          TabIndex        =   0
  57.          Text            =   "0"
  58.          Top             =   210
  59.          Width           =   2685
  60.       End
  61.       Begin VB.ComboBox Cbo_AccountYear 
  62.          Height          =   300
  63.          Left            =   990
  64.          Style           =   2  'Dropdown List
  65.          TabIndex        =   1
  66.          Top             =   600
  67.          Width           =   2985
  68.       End
  69.       Begin VB.Label Label1 
  70.          AutoSize        =   -1  'True
  71.          Caption         =   "查询部门:"
  72.          Height          =   180
  73.          Index           =   11
  74.          Left            =   150
  75.          TabIndex        =   5
  76.          Top             =   270
  77.          Width           =   810
  78.       End
  79.       Begin VB.Label Label1 
  80.          AutoSize        =   -1  'True
  81.          Caption         =   "会计年度:"
  82.          Height          =   180
  83.          Index           =   0
  84.          Left            =   150
  85.          TabIndex        =   4
  86.          Top             =   660
  87.          Width           =   810
  88.       End
  89.    End
  90. End
  91. Attribute VB_Name = "YS_FrmDeptBudgetC"
  92. Attribute VB_GlobalNameSpace = False
  93. Attribute VB_Creatable = False
  94. Attribute VB_PredeclaredId = True
  95. Attribute VB_Exposed = False
  96. '*************************************************************
  97. '*    模 块 名 称 :部门预算表选择
  98. '*    功 能 描 述 :
  99. '*    程序员姓名  :魏永生
  100. '*    最后修改人  :
  101. '*    最后修改时间:2002/01/21
  102. '*    备        注:
  103. '*************************************************************
  104. Dim Tsxx As String                       '系统信息提示
  105. Dim AccountYear As Integer               '会计年度
  106. '以下为固定使用变量(文本框)
  107. Dim Textvar() As Variant                 '存储变体型文本框信息
  108. Dim Textboolean() As Boolean             '存储布尔型文本框信息
  109. Dim Textint() As Integer                 '存储整型文本框信息
  110. Dim Textstr() As String                  '存储字符型文本框信息
  111. Dim Max_Text_Index As Integer            '最大录入文本框索引值
  112. Dim TextGroupCode As String              '文本框录入分组编码
  113. Dim TextValiLock As Boolean              '文本框失去焦点是否进行有效性控制判断
  114. Dim TextValiJudgeLock() As Boolean       '文本框录入有效性判断控制锁
  115. Dim CurTextIndex As Integer              '当前文本框索引值
  116. Dim TextChangeLock As Boolean            '文本框内容变换控制锁
  117. Dim Bln_Cancel As Boolean                '取消按钮信息传递
  118. Private Sub Form_KeyPress(KeyAscii As Integer)   '控 制 焦 点 转 移
  119.     Dim jdzygs As Integer                         '控件焦点转移个数
  120.     jdzygs = 30
  121.     Select Case KeyAscii
  122.     Case vbKeyReturn
  123.         If Kjjdzy(jdzygs) Then
  124.             KeyAscii = 0
  125.         End If
  126.     Case 39                              '屏蔽"'"
  127.         KeyAscii = 0
  128.     End Select
  129. End Sub
  130. Private Sub Form_Load()
  131.     
  132.     Dim temRs As New ADODB.Recordset
  133.     Dim strSql As String
  134.     Dim i As Integer
  135.     
  136.     '添加会计年度
  137.     strSql = "SELECT DISTINCT kjyear FROM gy_kjrlb"
  138.     Set temRs = Cw_DataEnvi.DataConnect.Execute(strSql)
  139.     
  140.     Int_OriYear = Year(Now)
  141.     
  142.     For i = Int_OriYear + 2 To Int_OriYear - temRs.RecordCount + 1 Step -1
  143.         Cbo_AccountYear.AddItem Str(i)
  144.     Next i
  145.     Cbo_AccountYear.ListIndex = 2
  146.     
  147.     If temRs.State = adStateOpen Then temRs.Close
  148.     Set temRs = Nothing
  149.     
  150.     '以下为文本框处理程序
  151.     
  152.     TextGroupCode = "cwfx_DeptBudgetC"
  153.     Call Drwbkxx(TextGroupCode, Textvar(), Textboolean(), Textint(), Textstr())  '读入文本框录入信息
  154.     Call Wbkcsh
  155.     
  156. End Sub
  157. '会计年度选择窗体
  158. Private Sub Command1_Click()
  159.     
  160.     If Not Lrtjyxxpd Then
  161.         Exit Sub
  162.     End If
  163.     Str_DeptCode = lrText(0).Tag
  164.     Str_DeptName = lrText(0).Text
  165.     Int_OriYear = Val(Cbo_AccountYear.Text)
  166.     Load YS_FrmDeptBudget
  167.     YS_FrmDeptBudget.Show
  168. End Sub
  169. '退出
  170. Private Sub Command2_Click()
  171.     Unload Me
  172. End Sub
  173. Private Function Lrtjyxxpd() As Boolean                          '用户录入条件有效性判断
  174.     Dim Jsqte As Integer
  175.     Lrtjyxxpd = False
  176.     
  177.     '查询部门不能为空
  178.     If Trim(lrText(0).Text) = "" Then
  179.         Tsxx = "查询部门不能为空!"
  180.         Call Xtxxts(Tsxx, 0, 1)
  181.         lrText(0).SetFocus
  182.         Exit Function
  183.     End If
  184.     
  185.     '对需要进行事后判断的文本框录入内容进行有效性判断 (固定不变)
  186.     For Jsqte = 0 To Max_Text_Index
  187.         If Textint(Jsqte, 9) = 0 Or Textint(Jsqte, 9) = 2 Then
  188.             If Not TextYxxpd(Jsqte) Then
  189.                 Exit Function
  190.             End If
  191.         End If
  192.     Next Jsqte
  193.     
  194.     '[>>以下为依据实际情况自定义部分
  195.     
  196.     
  197.     '<<]以上为依据实际情况自定义部分
  198.     
  199.     Lrtjyxxpd = True
  200. End Function
  201. Private Sub Wbklrwbcl(Index As Integer)    '文本框录入事后处理程序
  202.     
  203.     '以下为依据实际情况自定义部分[
  204.     
  205.     '在此填写文本框录入事后处理程序
  206.     
  207.     ']以上为依据实际情况自定义部分
  208. End Sub
  209. Private Sub LrText_Change(Index As Integer)
  210.     
  211.     '屏蔽程序改变控制
  212.     If TextChangeLock Then
  213.         Exit Sub
  214.     End If
  215.     
  216.     TextValiJudgeLock(Index) = False    '打开有效性判断锁
  217.     
  218.     '限制字段录入长度
  219.     
  220.     TextChangeLock = True  '加锁(防止执行Lrtext_Change)
  221.     Select Case Textint(Index, 1)
  222.     Case 8           '金额型
  223.         Call Sjgskz(lrText(Index), Xtjezws - Xtjexsws - 1, Xtjexsws)
  224.     Case 9           '数量型
  225.         Call Sjgskz(lrText(Index), Xtslzws - Xtslxsws - 1, Xtslxsws)
  226.     Case 10          '单价型
  227.         Call Sjgskz(lrText(Index), Xtdjzws - Xtdjxsws - 1, Xtdjxsws)
  228.     Case Else        '其他小数类型控制
  229.         If Textint(Index, 6) <> 0 Or Textint(Index, 7) <> 0 Then
  230.             Call Sjgskz(lrText(Index), Textint(Index, 6), Textint(Index, 7))
  231.         End If
  232.     End Select
  233.     TextChangeLock = False '解锁
  234. End Sub
  235. Private Sub LrText_GotFocus(Index As Integer)                                                 '文本框得到焦点,显示相应信息
  236.     Call TextShow(Index)
  237.     CurTextIndex = Index
  238.     lrText(Index).SelStart = Len(lrText(Index))
  239. End Sub
  240. Private Sub LrText_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)            '字段按F2键提供帮助
  241.     Select Case KeyCode
  242.     Case vbKeyF2
  243.         Call Text_Help(Index)
  244.     End Select
  245. End Sub
  246. Private Sub LrText_KeyPress(Index As Integer, KeyAscii As Integer)                            '文本框录入事中控制
  247.     Call InputFieldLimit(lrText(Index), Textint(Index, 1), KeyAscii)
  248. End Sub
  249. Private Sub LrText_LostFocus(Index As Integer)                                                '文本框失去焦点进行有效性判断及相应处理
  250.     If Textint(Index, 9) = 0 Or Textint(Index, 9) = 1 Then '事中判断
  251.         Call TextYxxpd(Index)
  252.     End If
  253. End Sub
  254. Private Sub Ydcommand1_MouseDown(Index As Integer, Button As Integer, Shift As Integer, X As Single, Y As Single)     '按钮提供帮助
  255.     Call Text_Help(Index)
  256. End Sub
  257. Private Sub Text_Help(Index As Integer)                                                       '录入字段帮助
  258.     If Not Textboolean(Index, 1) Then
  259.         Exit Sub
  260.     End If
  261.     TextValiJudgeLock(Index) = True
  262.     
  263.     '先进行有效性判断
  264.     If Not TextYxxpd(CurTextIndex) Then
  265.         Exit Sub
  266.     End If
  267.     
  268.     Call Drbmhelp(Textint(Index, 2), Textstr(Index, 4), Trim(lrText(Index).Text))
  269.     
  270.     If Len(Xtfhcs) <> 0 Then
  271.         If Textint(Index, 3) = 1 Then
  272.             lrText(Index).Text = Xtfhcsfz
  273.             lrText(Index).Tag = Xtfhcs
  274.         Else
  275.             lrText(Index).Text = Xtfhcs
  276.             lrText(Index).Tag = Xtfhcsfz
  277.         End If
  278.         
  279.     End If
  280.     TextValiJudgeLock(Index) = False
  281.     lrText(Index).SetFocus
  282. End Sub
  283. Private Sub TextShow(Index As Integer)        '文本框得到焦点,显示相应信息
  284.     
  285.     '填写文本框得到焦点,进行相应信息处理程序
  286.     
  287. End Sub
  288. Private Sub Wbkcsh()                          '录入文本框初始化
  289.     Dim Jsqte As Integer
  290.     
  291.     '最大录入文本框索引值
  292.     Max_Text_Index = Textvar(1)
  293.     
  294.     ReDim TextValiJudgeLock(Max_Text_Index)
  295.     For Jsqte = 0 To Max_Text_Index
  296.         
  297.         If Len(Trim(Textstr(Jsqte, 1))) <> 0 Then
  298.             If Textboolean(Jsqte, 1) Then
  299.                 If Jsqte <> 0 And Not Textboolean(Jsqte, 3) Then
  300.                     Load Ydcommand1(Jsqte)
  301.                 End If
  302.                 Ydcommand1(Jsqte).Visible = True
  303.                 Ydcommand1(Jsqte).Move lrText(Jsqte).Left + lrText(Jsqte).Width, lrText(Jsqte).Top
  304.             End If
  305.             TextChangeLock = True
  306.             lrText(Jsqte).Text = ""
  307.             lrText(Jsqte).Tag = ""
  308.             If Textint(Jsqte, 5) <> 0 Then
  309.                 lrText(Jsqte).MaxLength = Textint(Jsqte, 5)
  310.             End If
  311.             
  312.             TextChangeLock = False
  313.         End If
  314.         TextValiJudgeLock(Jsqte) = True
  315.     Next Jsqte
  316. End Sub
  317. Private Function TextYxxpd(Index As Integer) As Boolean           '文本框有效性判断
  318.     Dim SqlStr As String
  319.     Dim Findrec As ADODB.Recordset
  320.     If TextValiJudgeLock(Index) Then    '文本框内容未曾改变不进行有效性判断
  321.         TextYxxpd = True
  322.         Exit Function
  323.     End If
  324.     If Trim(lrText(Index)) = "" Then
  325.         lrText(Index).Tag = ""
  326.         Call Wbklrwbcl(Index)
  327.         TextValiJudgeLock(Index) = True
  328.         TextYxxpd = True
  329.         Exit Function
  330.     End If
  331.     Select Case Textint(Index, 4)
  332.     Case 1      '编码型
  333.         SqlStr = Trim(Textstr(Index, 5))
  334.         SqlStr = Replace(SqlStr, "@", "'" + Trim(lrText(Index).Text) + "'")
  335.         Set Findrec = Cw_DataEnvi.DataConnect.Execute(SqlStr)
  336.         If Findrec.EOF Then
  337.             Call Xtxxts(Trim(Textstr(Index, 6)), 0, 1)
  338.             lrText(Index).SetFocus
  339.             Exit Function
  340.         Else
  341.             Select Case Textint(Index, 3)
  342.             Case 0
  343.                 If Len(Trim(Textstr(Index, 2))) <> 0 Then
  344.                     lrText(Index).Text = Trim(Findrec.Fields(Trim(Textstr(Index, 2))))
  345.                 End If
  346.                 If Len(Trim(Textstr(Index, 3) & "")) <> 0 Then
  347.                     lrText(Index).Tag = Trim(Findrec.Fields(Trim(Textstr(Index, 3))))
  348.                 End If
  349.             Case 1
  350.                 If Len(Trim(Textstr(Index, 3) & "")) <> 0 Then
  351.                     lrText(Index).Text = Trim(Findrec.Fields(Trim(Textstr(Index, 3))))
  352.                 End If
  353.                 If Len(Trim(Textstr(Index, 2))) <> 0 Then
  354.                     lrText(Index).Tag = Trim(Findrec.Fields(Trim(Textstr(Index, 2))))
  355.                 End If
  356.             End Select
  357.         End If
  358.     Case 2      '日期型
  359.         If IsDate(lrText(Index).Text) Then
  360.             lrText(Index).Text = Format(lrText(Index).Text, "yyyy-mm-dd")
  361.         Else
  362.             Tsxx = "非法公历日期!(格式:" + Format(Date, "yyyy-mm-dd") + ")"
  363.             Call Xtxxts(Tsxx, 0, 1)
  364.             lrText(Index).SetFocus
  365.             Exit Function
  366.         End If
  367.     Case 3      '其他类型
  368.         
  369.     End Select
  370.     TextValiJudgeLock(Index) = True
  371.     TextYxxpd = True
  372. End Function