关于Begin VB.Form Form1
Caption = “文件管理器”
ClientHeight = 3780
ClientLeft = 165
ClientTop = 735
ClientWidth = 4995
LinkTopic = “Form4”
LockControls = -1 ‘True
ScaleHeight = 3780
ScaleWidth = 4995
StartUpPosition = 3 ‘窗口缺省
End
Begin VB.CommandButton Command1
Caption = “开始搜索”
BeginProperty Font
Name = “宋体”
Size = 15
Charset = 134
Weight = 400
Underline = 0 ‘False
Italic = 0 ‘False
Strikethrough = 0 ‘False
EndProperty
Height = 492
Left = 2880
TabIndex = 10
Top = 3000
Width = 1932
End的问题
写的什么意思 搞不懂
Begin VB。Form Form1 ‘应该用With把
Caption = “文件管理器” ‘用With前面要加点 。Caption=””
ClientHeight = 3780
ClientLeft = 165
ClientTop = 735
ClientWidth = 4995
LinkTopic = “Form4”
LockControls = -1 ‘True
ScaleHeight = 3780
ScaleWidth = 4995
StartUpPosition = 3 ‘窗口缺省
End ‘With
Begin VB。
CommandButton Command1
Caption = “开始搜索”
BeginProperty Font
Name = “宋体”
Size = 15
Charset = 134
Weight = 400
Underline = 0 ‘False
Italic = 0 ‘False
Strikethrough = 0 ‘False
EndProperty ‘这是不是应该有空格
Height = 492
Left = 2880
TabIndex = 10
Top = 3000
Width = 1932
End。