summaryrefslogtreecommitdiff
path: root/windows 95/Windows2000.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-03-02 15:48:34 -0500
committerTheUltimateHacker <[email protected]>2015-03-02 15:48:34 -0500
commit70be68814244c074e26916979f0aae1833719d93 (patch)
tree8a96ef42759b6f1170a1539d24cb7bb3f19e5fcd /windows 95/Windows2000.vb
parent886804440ef3957c4fa882261d9325418d44bed6 (diff)
downloadhistacom-70be68814244c074e26916979f0aae1833719d93.tar.gz
histacom-70be68814244c074e26916979f0aae1833719d93.tar.bz2
histacom-70be68814244c074e26916979f0aae1833719d93.zip
Bug fixing, mainly for the Internet Explorer icon on Windows ME's desktop, as well as adding a shutdown sound to both ME and 2000.
Diffstat (limited to 'windows 95/Windows2000.vb')
-rwxr-xr-xwindows 95/Windows2000.vb10
1 files changed, 9 insertions, 1 deletions
diff --git a/windows 95/Windows2000.vb b/windows 95/Windows2000.vb
index 6929fa4..ab92355 100755
--- a/windows 95/Windows2000.vb
+++ b/windows 95/Windows2000.vb
@@ -258,7 +258,15 @@
End Sub
Private Sub ToolStripMenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItem2.Click
- Title_Screen.Close()
+ startmenu.Hide()
+ desktopicons.Hide()
+ taskbar.Hide()
+ startbutton.Hide()
+
+ Dim bStr(My.Resources.Windows_ME_Shutdown.Length) As Byte
+ My.Resources.Windows_ME_Shutdown.Read(bStr, 0, My.Resources.Windows_ME_Shutdown.Length)
+ My.Computer.Audio.Play(bStr, AudioPlayMode.WaitToComplete)
+ Me.Close()
End Sub