📄 assistant.frm
字号:
VERSION 5.00
Begin VB.Form frmAssistant
BackColor = &H8000000D&
BorderStyle = 0 'None
ClientHeight = 1440
ClientLeft = 5280
ClientTop = 4935
ClientWidth = 4515
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
Picture = "Assistant.frx":0000
ScaleHeight = 1440
ScaleWidth = 4515
ShowInTaskbar = 0 'False
Begin VB.CommandButton cmdNo
Cancel = -1 'True
Caption = "No"
Height = 315
Left = 2280
TabIndex = 2
Top = 660
Width = 885
End
Begin VB.CommandButton cmdYes
Caption = "Yes"
Default = -1 'True
Height = 315
Left = 3360
TabIndex = 1
Top = 660
Width = 885
End
Begin VB.Label lblLabel
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Can I help you?"
BeginProperty Font
Name = "Comic Sans MS"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 450
Left = 2040
TabIndex = 0
Top = 60
Width = 2415
End
End
Attribute VB_Name = "frmAssistant"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdNo_Click()
Unload Me
End Sub
Private Sub cmdYes_Click()
Unload Me
End Sub
Private Sub Form_Unload(Cancel As Integer)
Call frmZoom.objZoom.Zoom(Me.hWnd, FLWGraphMath.flwZoomClose, FLWGraphMath.flwZoomFromLast)
Call Me.Hide
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -