📄 msginfo.frm
字号:
VERSION 5.00
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Begin VB.Form Msginfo
Caption = "信息窗口"
ClientHeight = 6285
ClientLeft = 60
ClientTop = 750
ClientWidth = 8685
Icon = "Msginfo.frx":0000
LinkTopic = "Form5"
ScaleHeight = 6285
ScaleWidth = 8685
StartUpPosition = 1 '所有者中心
Begin RichTextLib.RichTextBox Mswifo
Height = 6300
Left = 0
TabIndex = 0
Top = 0
Width = 8700
_ExtentX = 15346
_ExtentY = 11113
_Version = 393217
Enabled = -1 'True
ScrollBars = 3
TextRTF = $"Msginfo.frx":5D52
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.Menu Files
Caption = "文件(&F)"
Begin VB.Menu Dq
Caption = "导出(&D)"
End
End
End
Attribute VB_Name = "Msginfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Resize()
On Error Resume Next
Mswifo.Width = Me.Width - 100
Mswifo.Height = Me.Height - 500
End Sub
Private Sub Mswifo_Change()
On Error Resume Next
End Sub
Private Sub Mswifo_KeyPress(keyascii As Integer)
Select Case keyascii
Case "13"
Case "27"
Unload Me
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -