📄 help_frm.frm
字号:
VERSION 5.00
Begin VB.Form help_frm
Caption = "关于"
ClientHeight = 5400
ClientLeft = 4140
ClientTop = 3060
ClientWidth = 7620
LinkTopic = "Form1"
MaxButton = 0 'False
Picture = "help_frm.frx":0000
ScaleHeight = 5400
ScaleWidth = 7620
Begin VB.Frame Frame1
BackColor = &H00FFC0C0&
Height = 4455
Left = 5400
TabIndex = 3
Top = 720
Width = 2055
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "祝江西省第十六届电子大赛圆满成功啊!!!!"
Height = 735
Left = 240
TabIndex = 5
Top = 2760
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "本软件适用于触摸系统。版权所有未经开发人员同意,不得复制。"
Height = 975
Left = 240
TabIndex = 4
Top = 240
Width = 1575
End
End
Begin VB.CommandButton Command2
BackColor = &H00FFC0C0&
Caption = "取 消"
Height = 495
Left = 3360
Style = 1 'Graphical
TabIndex = 2
Top = 4560
Width = 1575
End
Begin VB.CommandButton Command1
BackColor = &H00FFC0C0&
Caption = "查看帮助"
Height = 495
Left = 1440
Style = 1 'Graphical
TabIndex = 1
Top = 4560
Width = 1335
End
Begin VB.TextBox Text1
Height = 3735
Left = 720
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 0
Top = 600
Width = 4455
End
End
Attribute VB_Name = "help_frm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.Text = ""
Open App.Path + "\help.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, mydata
Text1.Text = Text1.Text + mydata + vbCrLf
Loop
Close #1
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -