printday.frm
来自「实现功能较为全面的碟片租借管理系统」· FRM 代码 · 共 45 行
FRM
45 行
VERSION 5.00
Begin VB.Form PrintDay
BorderStyle = 1 'Fixed Single
Caption = "日报表"
ClientHeight = 6945
ClientLeft = 45
ClientTop = 435
ClientWidth = 9720
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 6945
ScaleWidth = 9720
StartUpPosition = 2 '屏幕中心
Begin VB.OLE OLE1
Enabled = 0 'False
Height = 6615
Left = 120
TabIndex = 0
Top = 120
Width = 9495
End
End
Attribute VB_Name = "PrintDay"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
OLE1.Visible = True
OLE1.CreateLink App.Path & "\tablefile\" & DayRec.DTPicker1.Value & DayRec.mTableName & ".xls"
End Sub
Private Sub form_unload(cancel As Integer)
Unload Me
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?