home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form UserInfo
- BorderStyle = 3 'Fixed Dialog
- Caption = "User Info"
- ClientHeight = 1710
- ClientLeft = 6075
- ClientTop = 3450
- ClientWidth = 3690
- ControlBox = 0 'False
- Height = 2115
- Left = 6015
- LinkTopic = "Form2"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1710
- ScaleWidth = 3690
- ShowInTaskbar = 0 'False
- Top = 3105
- Width = 3810
- Begin VB.CommandButton Ok
- Caption = "OK"
- Default = -1 'True
- Height = 435
- Left = 1425
- TabIndex = 4
- Top = 1035
- Width = 1080
- End
- Begin VB.TextBox Email
- Height = 300
- Left = 1065
- TabIndex = 3
- Text = "user@site.com"
- Top = 525
- Width = 2370
- End
- Begin VB.TextBox UserName
- Height = 300
- Left = 1065
- TabIndex = 2
- Text = "Your Name"
- Top = 165
- Width = 2385
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "E-mail :"
- Height = 240
- Index = 1
- Left = -15
- TabIndex = 1
- Top = 555
- Width = 975
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "User Name:"
- Height = 240
- Index = 0
- Left = -15
- TabIndex = 0
- Top = 210
- Width = 975
- End
- Attribute VB_Name = "UserInfo"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Ok_Click()
- Form1.EmailAddr = email.Text & " (" & UserName.Text & ")"
- Unload Me
- End Sub
- Private Sub UserName_GotFocus()
- UserName.SelStart = 0
- UserName.SelLength = Len(UserName.Text)
- End Sub
- Private Sub Email_GotFocus()
- email.SelStart = 0
- email.SelLength = Len(email.Text)
- End Sub
-