form1.ebf
来自「《Windows CE 权威指南》(作者:(美)CHRIS MUENCH」· EBF 代码 · 共 40 行
EBF
40 行
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 6420
ClientLeft = 60
ClientTop = 345
ClientWidth = 9390
ScaleHeight = 6420
ScaleWidth = 9390
Begin VB.TextBox Text1
Height = 615
Left = 3240
TabIndex = 1
Text = "Text1"
Top = 2640
Width = 2775
End
Begin VB.CommandButton Command1
Caption = "Test"
Height = 615
Left = 2880
TabIndex = 0
Top = 1320
Width = 3015
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()
Dim I
I = 14
MsgBox "It Works!"
Text1.Text = I
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?