?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "獲取MAC地址"
ClientHeight = 1395
ClientLeft = 45
ClientTop = 330
ClientWidth = 4680
Icon = "Form1.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1395
ScaleWidth = 4680
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 975
Left = 240
TabIndex = 0
Top = 120
Width = 4215
Begin VB.CommandButton Command1
Caption = "運行"
Height = 420
Left = 3120
TabIndex = 2
Top = 360
Width = 855
End
Begin VB.TextBox Text1
Height = 375
Left = 1080
TabIndex = 1
Text = "Text1"
Top = 360
Width = 1935
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "MAC地址:"
Height = 180
Left = 120
TabIndex = 3
Top = 457
Width = 810
End
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Text1.Text = GetMACAddress()
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -