aboutsummaryrefslogtreecommitdiff
path: root/windows 95/loadsettings.vb
blob: 90c2519ccc95c53e1a8acaf0b4f21da526efa0b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Public Class loadsettings

    Private Sub btncancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btncancel.Click
        Me.Close()
    End Sub

    Private Sub btnhelp_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnhelp.Click
        MessageBox.Show("The username is what you will be called in the game. The year code is the code that you get after clicking the time in the taskbar which is unique for that year.")
    End Sub

    Private Sub btnload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnload.Click
        mainname = txtname.Text
        If txtcode.Text = "ety53g63" Then
            Windows95.Show()
        End If
        If txtcode.Text = "sdu247w4" Then
            Windows98.Show()
        End If
        If txtcode.Text = "bsdn98e5" Then
            Windowsxp2002damaged.Show()
        End If
        If txtcode.Text = "fgsd7f6a" Then
            Windows2000.Show()
        End If
        If txtcode.Text = "2iu35giu" Then
            windows_me.Show()
        End If
        If txtcode.Text = "vistatest" Then
            windowsvista.Show()
        End If
        Me.Hide()
    End Sub
End Class