📄 form1.ebf
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 6420
ClientLeft = 60
ClientTop = 345
ClientWidth = 9390
ScaleHeight = 6420
ScaleWidth = 9390
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 975
Left = 2760
TabIndex = 0
Top = 1200
Width = 3375
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
' <BOOK_ADDON Chapter 6.3.4> **********************
Dim foo As Object
Dim a
Set foo = CreateObject("MyCeServer.TestMe")
foo.abouttext = "Hello World"
a = foo.showme
MsgBox a
MsgBox foo.abouttext
' </BOOK_ADDON Chapter 6.3.4> **********************
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -