main_htxy.frm
上传用户:wd52qq
上传日期:2022-07-24
资源大小:5366k
文件大小:4k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
  3. Begin VB.Form main_htxy 
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "续约"
  6.    ClientHeight    =   2430
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4665
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2430
  14.    ScaleWidth      =   4665
  15.    StartUpPosition =   2  '屏幕中心
  16.    Begin VB.CommandButton Command2 
  17.       Caption         =   "取消"
  18.       Height          =   390
  19.       Left            =   2415
  20.       TabIndex        =   8
  21.       Top             =   1890
  22.       Width           =   1440
  23.    End
  24.    Begin VB.CommandButton Command1 
  25.       Caption         =   "确定"
  26.       Height          =   390
  27.       Left            =   825
  28.       TabIndex        =   7
  29.       Top             =   1890
  30.       Width           =   1440
  31.    End
  32.    Begin VB.Frame Frame1 
  33.       Height          =   1785
  34.       Left            =   15
  35.       TabIndex        =   0
  36.       Top             =   -45
  37.       Width           =   4635
  38.       Begin VB.TextBox Text1 
  39.          Height          =   330
  40.          Left            =   1515
  41.          TabIndex        =   6
  42.          Top             =   1320
  43.          Width           =   2640
  44.       End
  45.       Begin MSComCtl2.DTPicker DTP1 
  46.          Height          =   345
  47.          Left            =   1830
  48.          TabIndex        =   2
  49.          Top             =   240
  50.          Width           =   2640
  51.          _ExtentX        =   4657
  52.          _ExtentY        =   609
  53.          _Version        =   393216
  54.          Format          =   48168961
  55.          CurrentDate     =   39794
  56.       End
  57.       Begin MSComCtl2.DTPicker DTP2 
  58.          Height          =   345
  59.          Left            =   1830
  60.          TabIndex        =   3
  61.          Top             =   705
  62.          Width           =   2640
  63.          _ExtentX        =   4657
  64.          _ExtentY        =   609
  65.          _Version        =   393216
  66.          Format          =   48168961
  67.          CurrentDate     =   39794
  68.       End
  69.       Begin VB.Label Label3 
  70.          Caption         =   "合同期限:                               年"
  71.          Height          =   255
  72.          Left            =   555
  73.          TabIndex        =   5
  74.          Top             =   1395
  75.          Width           =   3960
  76.       End
  77.       Begin VB.Label Label2 
  78.          Caption         =   "(至)"
  79.          Height          =   195
  80.          Left            =   1380
  81.          TabIndex        =   4
  82.          Top             =   825
  83.          Width           =   360
  84.       End
  85.       Begin VB.Label Label1 
  86.          Caption         =   "合同续约日期:(从)"
  87.          Height          =   225
  88.          Left            =   120
  89.          TabIndex        =   1
  90.          Top             =   330
  91.          Width           =   2385
  92.       End
  93.    End
  94. End
  95. Attribute VB_Name = "main_htxy"
  96. Attribute VB_GlobalNameSpace = False
  97. Attribute VB_Creatable = False
  98. Attribute VB_PredeclaredId = True
  99. Attribute VB_Exposed = False
  100. Private Sub Command1_Click()
  101.   Cnn.Execute ("update 合同表 set 合同开始日期='" + str(DTP1.Value) + "',合同结束日期='" + str(DTP2.Value) + "',合同期限=" + Text1 + ",状态='生效'where 合同编号='" + main_rsgl_htgl.DataGrid1.Columns(2) + "'")
  102.   main_rsgl_htgl.Adodc1.Refresh
  103.   Unload Me
  104. End Sub
  105. Private Sub Command2_Click()
  106.   Unload Me
  107. End Sub
  108. Private Sub DTP1_Change()
  109.   Text1 = DateDiff("yyyy", DTP1.Value, DTP2.Value)
  110. End Sub
  111. Private Sub DTP2_Change()
  112.  Text1 = DateDiff("yyyy", DTP1.Value, DTP2.Value)
  113. End Sub
  114. Private Sub Form_Load()
  115.   DTP1.Value = Date
  116.   DTP2.Value = Date
  117. End Sub