📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 0 'None
Caption = "Form2"
ClientHeight = 3090
ClientLeft = 0
ClientTop = 0
ClientWidth = 4680
LinkTopic = "Form2"
ScaleHeight = 3090
ScaleWidth = 4680
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.CommandButton Command1
Caption = "关闭"
Height = 375
Left = 3360
TabIndex = 1
Top = 2640
Width = 1215
End
Begin VB.TextBox Text1
BorderStyle = 0 'None
Height = 2415
Left = 120
Locked = -1 'True
MultiLine = -1 'True
TabIndex = 0
Top = 120
Width = 4455
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
Dim aboutme As String
aboutme = vbCrLf & vbCrLf
aboutme = aboutme & Space(20) & "中文字符字模查询小程序 V1.0.0" & vbCrLf & vbCrLf
aboutme = aboutme & Space(5) & "作者:姚通" & vbCrLf
aboutme = aboutme & Space(5) & "E_Mail:yaotong195@163.com" & vbCrLf & vbCrLf
aboutme = aboutme & Space(5) & "本程序适用于做嵌入式而又不具中文字库的朋友" & vbCrLf & vbCrLf
aboutme = aboutme & Space(80) & "谢谢使用" & vbCrLf
aboutme = aboutme & ""
Me.Text1.Text = aboutme
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -