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