?? frminfo.frm
字號:
VERSION 5.00
Begin VB.Form frmInfo
BorderStyle = 1 'Fixed Single
Caption = "板卡信息"
ClientHeight = 2490
ClientLeft = 45
ClientTop = 330
ClientWidth = 5670
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2490
ScaleWidth = 5670
StartUpPosition = 3 'Windows Default
Begin VB.TextBox txtInfoCon
Height = 1815
Left = 120
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 1
Top = 120
Width = 5415
End
Begin VB.CommandButton cmdOK
Caption = "確定"
Height = 375
Left = 4560
TabIndex = 0
Top = 2040
Width = 975
End
End
Attribute VB_Name = "frmInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'Dim sInfoCon As String
Public Sub SetInfo(sInfo As String)
txtInfoCon.Text = sInfo
End Sub
Private Sub cmdOK_Click()
Unload Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -