📄 log.frm
字号:
VERSION 5.00
Begin VB.Form log_info
Caption = "LOG"
ClientHeight = 5985
ClientLeft = 60
ClientTop = 345
ClientWidth = 7800
Icon = "log.frx":0000
LinkTopic = "Form1"
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 5985
ScaleWidth = 7800
WindowState = 2 'Maximized
Begin VB.TextBox db_log
Height = 3855
Left = 0
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Top = 0
Width = 4455
End
End
Attribute VB_Name = "log_info"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
Cancel = -1
If MsgBox("确实关闭日志文件吗?", vbOKCancel, "提示") = vbOK Then
Me.Hide
End If
End Sub
Private Sub Form_Resize()
On Error Resume Next
db_log.Width = Me.Width - 100
db_log.Height = Me.Width - 400
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -