home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmLogin
- BorderStyle = 1 'Fixed Single
- Caption = "Login"
- ClientHeight = 1545
- ClientLeft = 2835
- ClientTop = 3480
- ClientWidth = 3750
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 912.837
- ScaleMode = 0 'User
- ScaleWidth = 3521.047
- StartUpPosition = 2 'CenterScreen
- Begin VB.TextBox txtUserName
- Height = 345
- Left = 1290
- TabIndex = 1
- Top = 135
- Width = 2325
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 390
- Left = 495
- TabIndex = 4
- Top = 1020
- Width = 1140
- End
- Begin VB.CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 390
- Left = 2100
- TabIndex = 5
- Top = 1020
- Width = 1140
- End
- Begin VB.TextBox txtServerIP
- Height = 345
- IMEMode = 3 'DISABLE
- Left = 1290
- TabIndex = 3
- Top = 525
- Width = 2325
- End
- Begin VB.Label lblLabels
- Caption = "&User Name:"
- Height = 270
- Index = 0
- Left = 105
- TabIndex = 0
- Top = 150
- Width = 1080
- End
- Begin VB.Label lblLabels
- Caption = "&Server IP:"
- Height = 270
- Index = 1
- Left = 105
- TabIndex = 2
- Top = 540
- Width = 1080
- End
- Attribute VB_Name = "frmLogin"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdCancel_Click()
- End Sub
- Private Sub cmdOK_Click()
- On Error GoTo Error_Handler:
- Me.Caption = "Login - Connecting..."
- frmMain.sckClient.Connect txtServerIP.Text, 1000
- Exit Sub
- Error_Handler:
- MsgBox "Please enter a valid IP Address!", vbExclamation, "Note:"
- Me.Caption = "Login"
- frmMain.sckClient.Close
- End Sub
- Private Sub txtUserName_Change()
- User.Name = txtUserName.Text
- End Sub
-