Update of /cvsroot/netrek/client/netrekxp/configuration-program
In directory sc8-pr-cvs16:/tmp/cvs-serv21434
Added Files:
Form1.frm
Log Message:
Code in Form1 and Form3 are near identical. Only difference is the keymap settings. Form1 contains comments for both forms
--- NEW FILE: Form1.frm ---
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00000000&
Caption = "Netrek Configuration Utility"
ClientHeight = 10770
ClientLeft = 60
ClientTop = 345
ClientWidth = 10950
Icon = "Form1.frx":0000
LinkTopic = "Form1"
ScaleHeight = 10770
ScaleWidth = 10950
Begin VB.CheckBox Check5
BackColor = &H80000007&
Caption = "Enable Sound"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
[...2085 lines suppressed...]
End Sub
Private Sub Form_Load()
End Sub
Private Sub Option1_Click()
Form3.Show
Unload Form1
End Sub
Private Sub Text1_Change(Index As Integer)
If Text1(30) = " " Then
Text1(30) = "Space Bar"
Else
Text1(30) = Text1(30)
End If
End Sub