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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
  3. Begin VB.Form XT_calendar 
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "日历"
  6.    ClientHeight    =   2610
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4035
  10.    ControlBox      =   0   'False
  11.    Icon            =   "系统_日历帮助.frx":0000
  12.    LinkTopic       =   "Form1"
  13.    LockControls    =   -1  'True
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2610
  17.    ScaleWidth      =   4035
  18.    ShowInTaskbar   =   0   'False
  19.    StartUpPosition =   1  '所有者中心
  20.    Begin VB.CommandButton QxCommand 
  21.       Caption         =   "取消(&C)"
  22.       Height          =   300
  23.       Left            =   2760
  24.       TabIndex        =   2
  25.       Top             =   2250
  26.       Width           =   1120
  27.    End
  28.    Begin VB.CommandButton QdCommand 
  29.       Caption         =   "确定(&O)"
  30.       Default         =   -1  'True
  31.       Height          =   300
  32.       Left            =   1590
  33.       TabIndex        =   1
  34.       Top             =   2250
  35.       Width           =   1120
  36.    End
  37.    Begin MSComCtl2.MonthView MonthView1 
  38.       Height          =   2220
  39.       Left            =   -30
  40.       TabIndex        =   0
  41.       Top             =   -30
  42.       Width           =   4065
  43.       _ExtentX        =   7170
  44.       _ExtentY        =   3916
  45.       _Version        =   393216
  46.       ForeColor       =   -2147483630
  47.       BackColor       =   -2147483633
  48.       Appearance      =   1
  49.       StartOfWeek     =   62390273
  50.       TitleBackColor  =   16744576
  51.       CurrentDate     =   36429
  52.    End
  53. End
  54. Attribute VB_Name = "XT_calendar"
  55. Attribute VB_GlobalNameSpace = False
  56. Attribute VB_Creatable = False
  57. Attribute VB_PredeclaredId = True
  58. Attribute VB_Exposed = False
  59. '***********************************************
  60. '*    模 块 名 称 :系统日历帮助
  61. '*    功 能 描 述 :
  62. '*    程序员姓名  :张建忠
  63. '*    最后修改人  :张建忠
  64. '*    最后修改时间:2001/06/21
  65. '*    备        注:封版
  66. '***********************************************
  67. Private Sub Form_Load()
  68.     
  69.     On Error GoTo Cwcl
  70.     
  71.     With MonthView1
  72.         lsblte = Xtcdcs
  73.         Do While InStr(1, lsblte, ".") <> 0
  74.             Mid(lsblte, InStr(1, lsblte, ".")) = "/"
  75.         Loop
  76.         If IsDate(lsblte) Then
  77.             .Value = CDate(lsblte)
  78.         Else
  79.             .Value = Xtrq
  80.         End If
  81.     End With
  82.     Exit Sub
  83. Cwcl:
  84.     MonthView1 = Xtrq
  85. End Sub
  86. Private Sub MonthView1_DateDblClick(ByVal DateDblClicked As Date)        '双击日历控件返回相应日期
  87.     
  88.     With MonthView1
  89.         Xtfhcs = Format(.Value, "yyyy-mm-dd")
  90.         Unload Me
  91.     End With
  92. End Sub
  93. Private Sub QdCommand_Click()                                                                     '点击确定(为了支持回车键及热键)
  94.     
  95.     With MonthView1
  96.         Xtfhcs = Format(.Value, "yyyy-mm-dd")
  97.         Unload Me
  98.     End With
  99. End Sub
  100. Private Sub QdCommand_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)    '确定
  101.     
  102.     With MonthView1
  103.         Xtfhcs = Format(.Value, "yyyy-mm-dd")
  104.         Unload Me
  105.     End With
  106. End Sub
  107. Private Sub QxCommand_Click()                                                                     '点击取消(为了支持回车键及热键)
  108.     Unload Me
  109. End Sub
  110. Private Sub QxCommand_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)    '取消
  111.     Unload Me
  112. End Sub