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