diff options
| author | Jamie Mansfield <[email protected]> | 2015-03-03 15:40:38 +0000 |
|---|---|---|
| committer | Jamie Mansfield <[email protected]> | 2015-03-03 15:40:38 +0000 |
| commit | 00a5f71b30a80ba0deac09986261244e043103ec (patch) | |
| tree | a888214b53cae2e913dbd3f5de19f20f691f9585 | |
| parent | 3ad025e3d28827c7a2491ba450766302618c8210 (diff) | |
| parent | 3c9ecd0c0bea92954876af9adfd8f6296403e572 (diff) | |
| download | histacom-00a5f71b30a80ba0deac09986261244e043103ec.tar.gz histacom-00a5f71b30a80ba0deac09986261244e043103ec.tar.bz2 histacom-00a5f71b30a80ba0deac09986261244e043103ec.zip | |
Merge pull request #5 from TheUltimateHacker/master
Add shutdown sounds
| -rw-r--r-- | windows 95/Resources/Windows 2000 Shutdown.wav | bin | 0 -> 344108 bytes | |||
| -rw-r--r-- | windows 95/Resources/Windows 2000 Startup.wav | bin | 0 -> 536620 bytes | |||
| -rw-r--r-- | windows 95/Resources/Windows 95 Shutdown.wav | bin | 0 -> 27804 bytes | |||
| -rw-r--r-- | windows 95/Resources/Windows 98 Shutdown.wav | bin | 0 -> 628672 bytes | |||
| -rw-r--r-- | windows 95/Resources/Windows ME Startup.wav | bin | 0 -> 486240 bytes | |||
| -rw-r--r-- | windows 95/Resources/Windows Vista Shutdown.wav | bin | 0 -> 246828 bytes | |||
| -rwxr-xr-x | windows 95/Windows2000.vb | 10 | ||||
| -rwxr-xr-x | windows 95/Windows98.vb | 12 | ||||
| -rwxr-xr-x | windows 95/Windowsxp2002damaged.vb | 12 | ||||
| -rwxr-xr-x | windows 95/windows me.vb | 6 |
10 files changed, 28 insertions, 12 deletions
diff --git a/windows 95/Resources/Windows 2000 Shutdown.wav b/windows 95/Resources/Windows 2000 Shutdown.wav Binary files differnew file mode 100644 index 0000000..149bc98 --- /dev/null +++ b/windows 95/Resources/Windows 2000 Shutdown.wav diff --git a/windows 95/Resources/Windows 2000 Startup.wav b/windows 95/Resources/Windows 2000 Startup.wav Binary files differnew file mode 100644 index 0000000..8dfcf7b --- /dev/null +++ b/windows 95/Resources/Windows 2000 Startup.wav diff --git a/windows 95/Resources/Windows 95 Shutdown.wav b/windows 95/Resources/Windows 95 Shutdown.wav Binary files differnew file mode 100644 index 0000000..b3127d1 --- /dev/null +++ b/windows 95/Resources/Windows 95 Shutdown.wav diff --git a/windows 95/Resources/Windows 98 Shutdown.wav b/windows 95/Resources/Windows 98 Shutdown.wav Binary files differnew file mode 100644 index 0000000..6bbae35 --- /dev/null +++ b/windows 95/Resources/Windows 98 Shutdown.wav diff --git a/windows 95/Resources/Windows ME Startup.wav b/windows 95/Resources/Windows ME Startup.wav Binary files differnew file mode 100644 index 0000000..3541a5a --- /dev/null +++ b/windows 95/Resources/Windows ME Startup.wav diff --git a/windows 95/Resources/Windows Vista Shutdown.wav b/windows 95/Resources/Windows Vista Shutdown.wav Binary files differnew file mode 100644 index 0000000..38d93a6 --- /dev/null +++ b/windows 95/Resources/Windows Vista Shutdown.wav diff --git a/windows 95/Windows2000.vb b/windows 95/Windows2000.vb index ab92355..bb19828 100755 --- a/windows 95/Windows2000.vb +++ b/windows 95/Windows2000.vb @@ -10,9 +10,9 @@ Private Sub windows95_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
desktopicons.Show()
- If My.Resources.windows_2000_boot_sound.CanRead Then
- Dim bStr(My.Resources.windows_2000_boot_sound.Length) As Byte
- My.Resources.windows_2000_boot_sound.Read(bStr, 0, My.Resources.windows_2000_boot_sound.Length)
+ If My.Resources.Windows_2000_Startup.CanRead Then
+ Dim bStr(My.Resources.Windows_2000_Startup.Length) As Byte
+ My.Resources.Windows_2000_Startup.Read(bStr, 0, My.Resources.Windows_2000_Startup.Length)
My.Computer.Audio.Play(bStr, AudioPlayMode.Background)
End If
startmenu.Hide()
@@ -263,8 +263,8 @@ 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)
+ Dim bStr(My.Resources.Windows_2000_Shutdown.Length) As Byte
+ My.Resources.Windows_2000_Shutdown.Read(bStr, 0, My.Resources.Windows_2000_Shutdown.Length)
My.Computer.Audio.Play(bStr, AudioPlayMode.WaitToComplete)
Me.Close()
End Sub
diff --git a/windows 95/Windows98.vb b/windows 95/Windows98.vb index e86f07b..4b484d3 100755 --- a/windows 95/Windows98.vb +++ b/windows 95/Windows98.vb @@ -163,8 +163,16 @@ startmenu.Hide()
End Sub
- Private Sub ShutdownToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ShutdownToolStripMenuItem1.Click
- Title_Screen.Close()
+ Private Sub ToolStripMenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ShutdownToolStripMenuItem1.Click
+ startmenu.Hide()
+ desktopicons.Hide()
+ taskbar.Hide()
+ startbutton.Hide()
+
+ Dim bStr(My.Resources.Windows_98_Shutdown.Length) As Byte
+ My.Resources.Windows_98_Shutdown.Read(bStr, 0, My.Resources.Windows_98_Shutdown.Length)
+ My.Computer.Audio.Play(bStr, AudioPlayMode.WaitToComplete)
+ Me.Close()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
diff --git a/windows 95/Windowsxp2002damaged.vb b/windows 95/Windowsxp2002damaged.vb index 86a93df..88d1f0a 100755 --- a/windows 95/Windowsxp2002damaged.vb +++ b/windows 95/Windowsxp2002damaged.vb @@ -156,8 +156,16 @@ End Sub
- Private Sub turnoffcomputerbutton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles turnoffcomputerbutton.Click
- Title_Screen.Close()
+ Private Sub ToolStripMenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles turnoffcomputerbutton.Click
+ startmenu.Hide()
+ desktopicons.Hide()
+ taskbar.Hide()
+ startbutton.Hide()
+
+ Dim bStr(My.Resources.Windows_XP_Shutdown.Length) As Byte
+ My.Resources.Windows_XP_Shutdown.Read(bStr, 0, My.Resources.Windows_XP_Shutdown.Length)
+ My.Computer.Audio.Play(bStr, AudioPlayMode.WaitToComplete)
+ Me.Close()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
diff --git a/windows 95/windows me.vb b/windows 95/windows me.vb index 658c903..412349c 100755 --- a/windows 95/windows me.vb +++ b/windows 95/windows me.vb @@ -9,9 +9,9 @@ Private Sub windows95_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
desktopicons.Show()
- If My.Resources.windows_2000_boot_sound.CanRead Then
- Dim bStr(My.Resources.windows_2000_boot_sound.Length) As Byte
- My.Resources.windows_2000_boot_sound.Read(bStr, 0, My.Resources.windows_2000_boot_sound.Length)
+ If My.Resources.Windows_ME_Shutdown.CanRead Then
+ 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.Background)
End If
startmenu.Hide()
|
