frmdetectevalbd.frm

来自「AD9954源码」· FRM 代码 · 共 64 行

FRM
64
字号
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 + =
减小字号Ctrl + -
显示快捷键?