?? frmclientlogin.frm
字號:
VERSION 5.00
Begin VB.Form frmClientLogIn
BackColor = &H00C0C0C0&
BorderStyle = 1 'Fixed Single
Caption = "登錄"
ClientHeight = 3960
ClientLeft = 45
ClientTop = 330
ClientWidth = 3840
Icon = "frmClientLogin.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3960
ScaleWidth = 3840
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Height = 3105
Left = 255
TabIndex = 1
Top = 195
Width = 3240
Begin VB.TextBox txtUserName
BackColor = &H00FFFFFF&
Height = 375
Left = 150
TabIndex = 4
Top = 2550
Width = 2895
End
Begin VB.TextBox txtPorNum
BackColor = &H00FFFFFF&
Height = 375
Left = 150
TabIndex = 3
Top = 1485
Width = 2895
End
Begin VB.TextBox txtserver
BackColor = &H00FFFFFF&
Height = 375
Left = 150
TabIndex = 2
Top = 495
Width = 2910
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "請選擇服務器"
Height = 240
Left = 165
TabIndex = 7
Top = 225
Width = 1935
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "請選擇登錄名稱"
Height = 375
Left = 165
TabIndex = 6
Top = 2280
Width = 1455
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "請選擇端口號"
Height = 375
Left = 165
TabIndex = 5
Top = 1215
Width = 1575
End
End
Begin VB.CommandButton cmdOK
Caption = "確定"
Height = 330
Left = 2490
TabIndex = 0
Top = 3510
Width = 855
End
End
Attribute VB_Name = "frmClientLogIn"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command2_Click()
End Sub
Private Sub cmdOK_Click()
frmClient.txtHost = frmClientLogIn.txtserver.Text
frmClient.txtPort = frmClientLogIn.txtPorNum.Text
frmClient.lblName = frmClientLogIn.txtUserName
frmClient.cmdConnect.Enabled = True
frmClient.cmdQuit.Enabled = True
Unload frmClientLogIn
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -