From dfac3489c438f5c54bff088a354815e79675b531 Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Sun, 1 Mar 2015 10:50:24 +0000 Subject: Initial commit --- windows 95/loadsettings.vb | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 windows 95/loadsettings.vb (limited to 'windows 95/loadsettings.vb') diff --git a/windows 95/loadsettings.vb b/windows 95/loadsettings.vb new file mode 100755 index 0000000..90c2519 --- /dev/null +++ b/windows 95/loadsettings.vb @@ -0,0 +1,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 \ No newline at end of file -- cgit v1.2.3