📄 frmip_ex.frm
字号:
VERSION 5.00
Begin VB.Form frmIP_EX
BackColor = &H00000000&
Caption = "Get IP Example"
ClientHeight = 1935
ClientLeft = 60
ClientTop = 345
ClientWidth = 3540
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1935
ScaleWidth = 3540
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdExit
Caption = "Exit"
Height = 375
Left = 120
TabIndex = 5
Top = 1320
Width = 1095
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1440
TabIndex = 2
Top = 1320
Width = 1935
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1440
TabIndex = 1
Top = 480
Width = 1935
End
Begin VB.CommandButton cmdGetMachineID
Caption = "Get IP"
Height = 375
Left = 120
TabIndex = 0
Top = 480
Width = 1095
End
Begin VB.Label Label2
Appearance = 0 'Flat
BackColor = &H00000000&
Caption = " IP Address"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 1440
TabIndex = 4
Top = 960
Width = 1935
End
Begin VB.Label Label1
Appearance = 0 'Flat
BackColor = &H00000000&
Caption = "Machine Name"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 1440
TabIndex = 3
Top = 120
Width = 1935
End
End
Attribute VB_Name = "frmIP_EX"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdExit_Click()
Unload frmIP_EX
End Sub
Private Sub cmdGetMachineID_Click()
Text1 = GetIPHostName()
Text2 = GetIPAddress()
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -