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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form YS_FrmAccntBudgetC 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "科目预算条件"
  5.    ClientHeight    =   1110
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   2910
  9.    HelpContextID   =   411004003
  10.    Icon            =   "预算设置_科目预算条件.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1110
  15.    ScaleWidth      =   2910
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  '屏幕中心
  18.    Begin VB.Frame Frame1 
  19.       Height          =   675
  20.       Left            =   60
  21.       TabIndex        =   2
  22.       Top             =   0
  23.       Width           =   2775
  24.       Begin VB.ComboBox Cbo_AccountYear 
  25.          Height          =   300
  26.          Left            =   990
  27.          Style           =   2  'Dropdown List
  28.          TabIndex        =   3
  29.          Top             =   240
  30.          Width           =   1635
  31.       End
  32.       Begin VB.Label Label1 
  33.          AutoSize        =   -1  'True
  34.          Caption         =   "会计年度:"
  35.          Height          =   195
  36.          Left            =   120
  37.          TabIndex        =   4
  38.          Top             =   300
  39.          Width           =   765
  40.       End
  41.    End
  42.    Begin VB.CommandButton Command1 
  43.       Caption         =   "确定(&O)"
  44.       Height          =   300
  45.       Left            =   515
  46.       TabIndex        =   1
  47.       Top             =   750
  48.       Width           =   1120
  49.    End
  50.    Begin VB.CommandButton Command2 
  51.       Caption         =   "取消(&C)"
  52.       Height          =   300
  53.       Left            =   1715
  54.       TabIndex        =   0
  55.       Top             =   750
  56.       Width           =   1120
  57.    End
  58. End
  59. Attribute VB_Name = "YS_FrmAccntBudgetC"
  60. Attribute VB_GlobalNameSpace = False
  61. Attribute VB_Creatable = False
  62. Attribute VB_PredeclaredId = True
  63. Attribute VB_Exposed = False
  64. '*************************************************************
  65. '*    模 块 名 称 :科目预算表会计年度选择
  66. '*    功 能 描 述 :选择会计年度
  67. '*    程序员姓名  :魏永生
  68. '*    最后修改人  :
  69. '*    最后修改时间:2002/01/21
  70. '*    备        注:
  71. '*************************************************************
  72. '会计年度选择窗体
  73. Private Sub Command1_Click()
  74.     Int_OriYear = Val(Cbo_AccountYear.Text)
  75.     Load YS_FrmAccntBudget
  76.     YS_FrmAccntBudget.Show
  77. End Sub
  78. '退出
  79. Private Sub Command2_Click()
  80.     Unload Me
  81. End Sub
  82. '添加会计年度
  83. Private Sub Form_Load()
  84.     Dim temRs As New ADODB.Recordset
  85.     Dim strSql As String
  86.     Dim i As Integer
  87.     
  88.     '添加会计年度
  89.     strSql = "SELECT DISTINCT kjyear FROM gy_kjrlb"
  90.     Set temRs = Cw_DataEnvi.DataConnect.Execute(strSql)
  91.     
  92.     Int_OriYear = Year(Now)
  93.     
  94.     For i = Int_OriYear + 2 To Int_OriYear - temRs.RecordCount + 1 Step -1
  95.         Cbo_AccountYear.AddItem Str(i)
  96.     Next i
  97.     Cbo_AccountYear.ListIndex = 2
  98.     
  99.     If temRs.State = adStateOpen Then temRs.Close
  100.     Set temRs = Nothing
  101. End Sub