📄 createform.frm
字号:
VERSION 5.00
Begin VB.Form createform
BorderStyle = 1 'Fixed Single
Caption = "文件编辑"
ClientHeight = 4980
ClientLeft = 45
ClientTop = 435
ClientWidth = 4530
Icon = "createform.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4980
ScaleWidth = 4530
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text3
Height = 270
Left = 5400
TabIndex = 11
Text = "Text3"
Top = 3960
Width = 735
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 3600
MaxLength = 5
TabIndex = 9
Top = 480
Width = 735
End
Begin VB.CommandButton Command3
Caption = "清 空"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 240
TabIndex = 8
Top = 4320
Width = 1095
End
Begin VB.CommandButton Command2
Caption = "退 出"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3240
TabIndex = 7
Top = 4320
Width = 1095
End
Begin VB.Frame Frame1
Caption = "属性"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1935
Left = 3120
TabIndex = 3
Top = 1080
Width = 1215
Begin VB.OptionButton Option2
Caption = "其它"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 240
TabIndex = 5
Top = 1200
Value = -1 'True
Width = 855
End
Begin VB.OptionButton Option1
Caption = "只读"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
TabIndex = 4
Top = 480
Width = 855
End
End
Begin VB.CommandButton Command1
Caption = "保 存"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1680
TabIndex = 1
ToolTipText = "保存并退出"
Top = 4320
Width = 1095
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3255
Left = 120
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Top = 480
Width = 2775
End
Begin VB.Label Label3
Caption = "文件名"
Height = 255
Left = 3000
TabIndex = 10
Top = 600
Width = 615
End
Begin VB.Label Label2
Caption = "路径"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 6
Top = 120
Width = 4455
End
Begin VB.Label Label1
Caption = "文件长度"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 3120
TabIndex = 2
Top = 3240
Width = 1215
End
End
Attribute VB_Name = "createform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim wjnr As String
Dim wjcd As Integer
Dim csbf As String
Dim gj As String
Dim zhidu As String
Private Sub Command1_Click()
zhidu = "q"
If Option1.Value = True Then
zhidu = "r"
End If
gj = Text3.Text
Call mainform.xiewenj(LCase(Mid(Label2.Caption, 6, 1)), gj, Text1.Text, zhidu)
Me.Hide
End Sub
Private Sub Command2_Click()
Me.Hide
End Sub
Private Sub Command3_Click()
Text1.Text = ""
End Sub
Private Sub Form_Load()
Option2.Value = True
If Option1.Value = True Then
Text1.Locked = ture
End If
End Sub
Private Sub Text1_Change()
wjcd = Len(Text1.Text)
Label1.Caption = "文件长度" & wjcd
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -