📄 frmlogin.frm
字号:
VERSION 5.00
Begin VB.Form frmLogin
BackColor = &H00000000&
BorderStyle = 1 'Fixed Single
Caption = "Login"
ClientHeight = 2940
ClientLeft = 2415
ClientTop = 2100
ClientWidth = 4680
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2940
ScaleWidth = 4680
Begin VB.TextBox txtPass
BeginProperty Font
Name = "Courier New"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 405
Left = 1680
TabIndex = 3
Top = 960
Width = 2775
End
Begin VB.TextBox txtHost
BeginProperty Font
Name = "Courier New"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 405
Left = 1680
TabIndex = 0
Top = 480
Width = 2775
End
Begin VB.Image imgConnect
Height = 1245
Left = 600
Picture = "frmLogin.frx":0000
Top = 1560
Width = 3525
End
Begin VB.Label Label2
BackColor = &H00000000&
Caption = "Password:"
BeginProperty Font
Name = "Courier New"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFC0&
Height = 375
Left = 360
TabIndex = 2
Top = 1080
Width = 1335
End
Begin VB.Label Label1
BackColor = &H00000000&
Caption = "Host:"
BeginProperty Font
Name = "Courier New"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFC0&
Height = 375
Left = 360
TabIndex = 1
Top = 600
Width = 735
End
Begin VB.Line Line2
BorderColor = &H00C0FFFF&
X1 = 240
X2 = 3960
Y1 = 360
Y2 = 360
End
Begin VB.Line Line1
BorderColor = &H00C0FFFF&
X1 = 240
X2 = 240
Y1 = 360
Y2 = 1440
End
End
Attribute VB_Name = "frmLogin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub imgConnect_Click()
'connect me
pass = txtPass.Text
frmMain.sock.RemoteHost = txtHost.Text
frmMain.sock.RemotePort = 5555
frmMain.sock.Connect
Me.Hide
frmMain.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -