我有多个VB6<代码>.frm文档。 见下文。 我想要从法典中删除职能和子,只留下形式设计。
我需要做的是从“Attribute”开始的最后一行,因为在这条线之后,应当进一步删除所有的内容。
利用配对方式或类似方式,我如何处理<代码>.frm的文档,以便最后文本之后的所有文件都能查阅。 沥青线被删除? 如果我正在通过档案进行追踪,那么我怎么能够告诉最后一条直线在哪里?
<代码>.frm文档:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 Windows Default
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 495
Left = 1800
TabIndex = 1
Top = 1320
Width = 1215
End
Begin VB.TextBox Text1
Height = 495
Left = 360
TabIndex = 0
Text = "Text1"
Top = 240
Width = 1215
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.Text = "Hello World"
End Sub
Private Sub Form_Load()
Text1.BackColor = vbBlue
End