📄 frmip.frm
字号:
VERSION 5.00
Begin VB.Form frmip
BorderStyle = 0 'None
Caption = "ipaddress"
ClientHeight = 1470
ClientLeft = 0
ClientTop = 0
ClientWidth = 3045
ControlBox = 0 'False
Icon = "frmip.frx":0000
LinkTopic = "Form1"
ScaleHeight = 1470
ScaleWidth = 3045
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton cmdip
Caption = "&Ok"
Default = -1 'True
Height = 375
Left = 240
TabIndex = 1
Top = 960
Width = 2535
End
Begin VB.TextBox txtip
Height = 270
Left = 240
TabIndex = 0
Text = "127.0.0.1"
Top = 480
Width = 2535
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Please Input remote Ip or Host:"
Height = 255
Left = 120
TabIndex = 2
Top = 120
Width = 2895
End
End
Attribute VB_Name = "frmip"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdip_Click()
If txtip.Text = "" Then
MsgBox "Please input remote Ip or Host first!", vbOKOnly, "Warnning"
Exit Sub
End If
frmip.Hide
Load frmmain
frmmain.txtimg = frmlogin.txtuserid.Text
frmmain.txtname = frmlogin.txtname.Text
frmmain.txtself = frmlogin.txtself.Text
Unload frmlogin
frmmain.Show
End Sub
Private Sub Form_Load()
'frmmain.Hide
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -