📄 frmwatermeterinput_cbdateselect.frm
字号:
VERSION 5.00
Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
Begin VB.Form frmWaterMeterInput_CBDateSelect
BorderStyle = 1 'Fixed Single
Caption = "抄表日期选择"
ClientHeight = 1830
ClientLeft = 45
ClientTop = 330
ClientWidth = 4860
Icon = "frmWaterMeterInput_CBDateSelect.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
MouseIcon = "frmWaterMeterInput_CBDateSelect.frx":0442
ScaleHeight = 1830
ScaleWidth = 4860
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton cmdOK
Caption = "确定"
Height = 390
Left = 180
TabIndex = 1
Top = 1260
Width = 1065
End
Begin VB.Frame Frame1
Caption = "抄表日期"
ForeColor = &H00800000&
Height = 1005
Left = 150
TabIndex = 0
Top = 120
Width = 4500
Begin MSComCtl2.DTPicker dtpODate
Height = 300
Left = 450
TabIndex = 2
Top = 405
Width = 2070
_ExtentX = 3651
_ExtentY = 529
_Version = 393216
Format = 58785793
CurrentDate = 37041
End
End
End
Attribute VB_Name = "frmWaterMeterInput_CBDateSelect"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public dteReturnODate As Date
Private Sub cmdOK_Click()
dteReturnODate = Me.dtpODate.value
Unload Me
End Sub
Private Sub Form_Load()
Me.dtpODate.value = dteReturnODate
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -