summaryrefslogtreecommitdiff
path: root/windows 95/loadsettings.vb
diff options
context:
space:
mode:
authorJamie Mansfield <[email protected]>2015-03-01 10:50:24 +0000
committerJamie Mansfield <[email protected]>2015-03-01 10:50:24 +0000
commitdfac3489c438f5c54bff088a354815e79675b531 (patch)
treedafec547b0e8592e34d8aa756c9500407ebc3c1b /windows 95/loadsettings.vb
downloadhistacom-dfac3489c438f5c54bff088a354815e79675b531.tar.gz
histacom-dfac3489c438f5c54bff088a354815e79675b531.tar.bz2
histacom-dfac3489c438f5c54bff088a354815e79675b531.zip
Initial commit
Diffstat (limited to 'windows 95/loadsettings.vb')
-rwxr-xr-xwindows 95/loadsettings.vb33
1 files changed, 33 insertions, 0 deletions
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