📄 frmquerystatus.frm
字号:
VERSION 5.00
Begin VB.Form frmQueryStatus
Caption = "系统状态"
ClientHeight = 6525
ClientLeft = 60
ClientTop = 630
ClientWidth = 11175
LinkTopic = "Form1"
ScaleHeight = 6525
ScaleWidth = 11175
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Textbox1
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3285
Left = 360
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 0
Top = 360
Width = 6000
End
Begin VB.Menu menu_exit
Caption = "关闭"
End
End
Attribute VB_Name = "frmQueryStatus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim StringBuffer As String
Dim i As Integer
Textbox1.Text = ""
For i = 0 To 7
Textbox1.Text = Textbox1.Text + "通道" + CStr(i) + ": " + OutputChannels(i) + Chr(13) + Chr(10) + Chr(13) + Chr(10)
Next
End Sub
Private Sub Form_Resize()
'Textbox1.Move 0, 0, 100, 100
Dim height1, height2, height3 As Integer
height1 = frmQueryStatus.ScaleHeight
height2 = 0
height3 = height1
If frmQueryStatus.ScaleWidth > 200 And height3 > 200 Then
Textbox1.Move 0, 0, frmQueryStatus.ScaleWidth, height3
End If
End Sub
Private Sub menu_exit_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -