form1.ebf

来自「《Windows CE 权威指南》(作者:(美)CHRIS MUENCH」· EBF 代码 · 共 37 行

EBF
37
字号
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 + =
减小字号Ctrl + -
显示快捷键?