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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Book_Depr_Search 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "折旧计算报表查询条件"
  5.    ClientHeight    =   1110
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3720
  9.    HelpContextID   =   505007
  10.    Icon            =   "折旧计算报表查询条件.frx":0000
  11.    KeyPreview      =   -1  'True
  12.    LinkTopic       =   "Form1"
  13.    LockControls    =   -1  'True
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   1110
  17.    ScaleWidth      =   3720
  18.    ShowInTaskbar   =   0   'False
  19.    StartUpPosition =   2  '屏幕中心
  20.    Begin VB.Frame Frame1 
  21.       ForeColor       =   &H00FF0000&
  22.       Height          =   645
  23.       Left            =   60
  24.       TabIndex        =   5
  25.       Top             =   0
  26.       Width           =   3585
  27.       Begin VB.ComboBox Com_Year 
  28.          Height          =   300
  29.          Index           =   0
  30.          Left            =   990
  31.          Style           =   2  'Dropdown List
  32.          TabIndex        =   0
  33.          Top             =   210
  34.          Width           =   1065
  35.       End
  36.       Begin VB.ComboBox Com_Year 
  37.          Height          =   300
  38.          Index           =   1
  39.          Left            =   2400
  40.          Style           =   2  'Dropdown List
  41.          TabIndex        =   1
  42.          Top             =   210
  43.          Width           =   1065
  44.       End
  45.       Begin VB.Label Label3 
  46.          AutoSize        =   -1  'True
  47.          Caption         =   "会计期间:"
  48.          Height          =   180
  49.          Left            =   120
  50.          TabIndex        =   6
  51.          Top             =   270
  52.          Width           =   810
  53.       End
  54.       Begin VB.Line Line1 
  55.          X1              =   2130
  56.          X2              =   2310
  57.          Y1              =   360
  58.          Y2              =   360
  59.       End
  60.    End
  61.    Begin VB.CheckBox UnloadCheck 
  62.       Caption         =   "卸载窗体"
  63.       Height          =   615
  64.       Left            =   6735
  65.       TabIndex        =   4
  66.       Top             =   2025
  67.       Width           =   825
  68.    End
  69.    Begin VB.CommandButton QxCommand 
  70.       Cancel          =   -1  'True
  71.       Caption         =   "取消(&C)"
  72.       Height          =   300
  73.       Left            =   2525
  74.       TabIndex        =   3
  75.       Top             =   735
  76.       Width           =   1120
  77.    End
  78.    Begin VB.CommandButton QdCommand 
  79.       Caption         =   "确定(&O)"
  80.       Height          =   300
  81.       Left            =   1325
  82.       TabIndex        =   2
  83.       Top             =   735
  84.       Width           =   1120
  85.    End
  86. End
  87. Attribute VB_Name = "Book_Depr_Search"
  88. Attribute VB_GlobalNameSpace = False
  89. Attribute VB_Creatable = False
  90. Attribute VB_PredeclaredId = True
  91. Attribute VB_Exposed = False
  92. '**************************************************
  93. '*    模 块 名 称 :资产折旧计算表查询条件
  94. '*    功 能 描 述 :
  95. '*    程序员姓名  : 徐衍民
  96. '*    最后修改人  : 徐衍民
  97. '*    最后修改时间:2000/12/19
  98. '*    备        注:
  99. '**************************************************
  100. Dim Tsxx As String                       '系统信息提示
  101. Dim rstemp As ADODB.Recordset            '临时数据集
  102. '以下为固定使用变量(文本框)
  103. Dim Textvar() As Variant                 '存储变体型文本框信息
  104. Dim Textboolean() As Boolean             '存储布尔型文本框信息
  105. Dim Textint() As Integer                 '存储整型文本框信息
  106. Dim Textstr() As String                  '存储字符型文本框信息
  107. Dim Max_Text_Index As Integer            '最大录入文本框索引值
  108. Dim TextGroupCode As String              '文本框录入分组编码
  109. Dim TextValiLock As Boolean              '文本框失去焦点是否进行有效性控制判断
  110. Dim TextValiJudgeLock() As Boolean       '文本框录入有效性判断控制锁
  111. Dim CurTextIndex As Integer              '当前文本框索引值
  112. Dim TextChangeLock As Boolean            '文本框内容变换控制锁
  113. Dim Bln_Cancel As Boolean                '取消按钮信息传递
  114. Private Sub Form_KeyPress(KeyAscii As Integer)   '控 制 焦 点 转 移
  115.     
  116.     Dim jdzygs As Integer                         '控件焦点转移个数
  117.     jdzygs = 30
  118.     
  119.     Select Case KeyAscii
  120.         Case vbKeyReturn
  121.         If Kjjdzy(jdzygs) Then
  122.             KeyAscii = 0
  123.         End If
  124.         Case 39           '屏蔽"'"
  125.         KeyAscii = 0
  126.     End Select
  127. End Sub
  128. Private Sub Form_Load()
  129.     
  130.     '填充会计期间下拉列表
  131.     Set rstemp = Cw_DataEnvi.DataConnect.Execute("select distinct Year,Period from Gdzc_Total order by year,period")
  132.     While Not rstemp.EOF
  133.         Com_Year(0).AddItem rstemp!Year & "." & IIf(rstemp!Period < 10, "0" & rstemp!Period, rstemp!Period)
  134.         Com_Year(1).AddItem rstemp!Year & "." & IIf(rstemp!Period < 10, "0" & rstemp!Period, rstemp!Period)
  135.         rstemp.MoveNext
  136.     Wend
  137.     rstemp.Close
  138.     Set rstemp = Nothing
  139.     
  140.     If Com_Year(0).ListCount > 0 Then Com_Year(0).Text = Com_Year(0).List(0)
  141.     If Com_Year(1).ListCount > 0 Then Com_Year(1).Text = Com_Year(1).List(Com_Year(1).ListCount - 1)
  142. End Sub
  143. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
  144.     
  145.     If UnloadCheck.Value <> 1 Then
  146.         Cancel = 1
  147.         Me.Hide
  148.     End If
  149. End Sub
  150. Private Sub QdCommand_Click()                                   '确 定
  151.     
  152.     '录入条件有效性判断
  153.     If Not Lrtjyxxpd Then
  154.     Exit Sub
  155.     End If
  156.     Me.Hide
  157.     '激活查询过程
  158.     Book_Depr.Timer1.Enabled = True
  159. End Sub
  160. Private Sub QxCommand_Click()                                    '取消
  161.     Me.Hide
  162. End Sub
  163. Private Function Lrtjyxxpd() As Boolean                          '用户录入条件有效性判断
  164.     
  165.     '会计期间范围应由小到大
  166.     If Trim(Com_Year(0).Text) <> "" And Trim(Com_Year(1).Text) <> "" Then
  167.         If Val(LeftChar(Trim(Com_Year(1).Text)) + RightChar(Trim(Com_Year(1).Text))) < Val(LeftChar(Trim(Com_Year(0).Text)) + RightChar(Trim(Com_Year(0).Text))) Then
  168.             Tsxx = "查询会计期间应由小到大!"
  169.             Call Xtxxts(Tsxx, 0, 4)
  170.             Exit Function
  171.         End If
  172.     End If
  173.     Lrtjyxxpd = True
  174. End Function
  175. '*****************************************************
  176. '[>>自定义函数
  177. '取右字符串
  178. Function RightChar(str As String) As String
  179.     
  180.     If str = "" Then Exit Function
  181.     
  182.     Dim i As Integer
  183.     
  184.     i = InStrRev(str, ".")
  185.     RightChar = Mid(str, i + 1)
  186. End Function
  187. '取左字符串
  188. Function LeftChar(str As String) As String
  189.     
  190.     If str = "" Then Exit Function
  191.     
  192.     Dim i As Integer
  193.     
  194.     i = InStr(str, ".")
  195.     LeftChar = Mid(str, 1, i - 1)
  196. End Function
  197. '<<]
  198. '*****************************************************