home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- BorderStyle = 3 'Fixed Dialog
- Caption = "Settings"
- ClientHeight = 1455
- ClientLeft = 8310
- ClientTop = 1830
- ClientWidth = 3990
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1455
- ScaleWidth = 3990
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.TextBox Text2
- Height = 285
- Left = 120
- ScrollBars = 2 'Vertical
- TabIndex = 3
- Top = 1080
- Width = 3735
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 120
- TabIndex = 1
- Top = 360
- Width = 1695
- End
- Begin VB.Line Line2
- X1 = 3840
- X2 = 1920
- Y1 = 960
- Y2 = 960
- End
- Begin VB.Line Line1
- X1 = 1920
- X2 = 1920
- Y1 = 120
- Y2 = 960
- End
- Begin VB.Label Label2
- Caption = "Welcome Message"
- Height = 255
- Left = 120
- TabIndex = 2
- Top = 840
- Width = 1575
- End
- Begin VB.Label Label1
- Caption = "Sysop"
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 1575
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Text1_KeyUp(KeyCode As Integer, Shift As Integer)
- ServerData.SysopName = Text1.Text
- End Sub
- Private Sub Text2_Change()
- ServerData.MotD = Text2.Text
- End Sub
-