📄 frmtosmall.frm
字号:
VERSION 5.00
Begin VB.Form frmTip1
Caption = "日积月累"
ClientHeight = 2055
ClientLeft = 2370
ClientTop = 2400
ClientWidth = 5685
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2055
ScaleWidth = 5685
WhatsThisButton = -1 'True
WhatsThisHelp = -1 'True
Begin VB.CommandButton cmdNextTip
Caption = "取消"
Height = 375
Left = 4080
TabIndex = 2
Top = 720
Width = 1455
End
Begin VB.PictureBox Picture1
BackColor = &H00FFFFFF&
Height = 1395
Left = 120
Picture = "frmtosmall.frx":0000
ScaleHeight = 1335
ScaleWidth = 3675
TabIndex = 1
Top = 120
Width = 3735
Begin VB.Label Label1
BackColor = &H00FFFFFF&
Caption = "优化整理数据..."
Height = 255
Left = 540
TabIndex = 4
Top = 180
Width = 2655
End
Begin VB.Label lblTipText
BackColor = &H00FFFFFF&
Height = 1635
Left = 180
TabIndex = 3
Top = 840
Width = 3255
End
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Caption = "优化整理"
Default = -1 'True
Height = 375
Left = 4080
TabIndex = 0
Top = 120
Width = 1455
End
End
Attribute VB_Name = "frmTip1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdNextTip_Click()
Unload Me
End Sub
Private Sub CmdOk_Click()
On Error GoTo err
Call transfer
Exit Sub
err:
MsgBox err.Description
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -