📄 frmdetectevalbd.frm
字号:
VERSION 5.00
Begin VB.Form frmDetectEvalBD
BorderStyle = 1 'Fixed Single
Caption = "Detecting Evaluation Board Connection..."
ClientHeight = 855
ClientLeft = 45
ClientTop = 330
ClientWidth = 3615
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 855
ScaleWidth = 3615
StartUpPosition = 1 'CenterOwner
Begin VB.TextBox txtStatus
BackColor = &H00000000&
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FF00&
Height = 855
Left = 0
MultiLine = -1 'True
TabIndex = 0
Top = 0
Width = 3615
End
End
Attribute VB_Name = "frmDetectEvalBD"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub lblStatusMsg_Click()
End Sub
Private Sub Form_Load()
MakeFormModeless Me, mdiMain.hWnd
End Sub
Public Sub AddStatLineSeg(ByVal strLine As String, ByVal nLine As Boolean)
With txtStatus
If .Text = "" Then
.Text = strLine
Else
If nLine = True Then
.SelStart = Len(.Text) & vbNewLine
Else
.SelStart = Len(.Text)
End If
.SelText = strLine
End If
End With
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -