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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form YS_FrmProfitBudgetC 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "利润预算条件"
  5.    ClientHeight    =   1080
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3510
  9.    HelpContextID   =   411004004
  10.    Icon            =   "预算设置_利润预算条件.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1080
  15.    ScaleWidth      =   3510
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  '屏幕中心
  18.    Begin VB.Frame Frame1 
  19.       Height          =   645
  20.       Left            =   60
  21.       TabIndex        =   2
  22.       Top             =   0
  23.       Width           =   3375
  24.       Begin VB.ComboBox Cbo_AccountYear 
  25.          Height          =   300
  26.          Left            =   990
  27.          Style           =   2  'Dropdown List
  28.          TabIndex        =   3
  29.          Top             =   210
  30.          Width           =   2265
  31.       End
  32.       Begin VB.Label Label1 
  33.          AutoSize        =   -1  'True
  34.          Caption         =   "会计年度:"
  35.          Height          =   195
  36.          Left            =   120
  37.          TabIndex        =   4
  38.          Top             =   270
  39.          Width           =   765
  40.       End
  41.    End
  42.    Begin VB.CommandButton Command1 
  43.       Caption         =   "确定(&O)"
  44.       Height          =   300
  45.       Left            =   1115
  46.       TabIndex        =   1
  47.       Top             =   720
  48.       Width           =   1120
  49.    End
  50.    Begin VB.CommandButton Command2 
  51.       Caption         =   "取消(&C)"
  52.       Height          =   300
  53.       Left            =   2315
  54.       TabIndex        =   0
  55.       Top             =   720
  56.       Width           =   1120
  57.    End
  58. End
  59. Attribute VB_Name = "YS_FrmProfitBudgetC"
  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. '*    最后修改时间:200/01/21
  70. '*    备        注:
  71. '*************************************************************
  72. '会计年度选择窗体
  73. Private Sub Command1_Click()
  74.     Int_OriYear = Val(Cbo_AccountYear.Text)
  75.     Load YS_FrmProfitBudget
  76.     YS_FrmProfitBudget.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.     strSql = "SELECT DISTINCT kjyear FROM gy_kjrlb"
  89.     Set temRs = Cw_DataEnvi.DataConnect.Execute(strSql)
  90.     
  91.     Int_OriYear = Year(Now)
  92.     
  93.     For i = Int_OriYear + 2 To Int_OriYear - temRs.RecordCount + 1 Step -1
  94.         Cbo_AccountYear.AddItem Str(i)
  95.     Next i
  96.     Cbo_AccountYear.ListIndex = 2
  97.     
  98.     If temRs.State = adStateOpen Then temRs.Close
  99.     Set temRs = Nothing
  100.     
  101. End Sub
  102.