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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
Public Class windows_me
Dim count As Integer
Dim txtcount As Integer
Dim usersave As String
Private Sub windows95_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles desktopicons.Click
startmenu.Hide()
End Sub
Private Sub windows95_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
desktopicons.Show()
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()
program.Hide()
Timer4.Start()
Timer1.Start()
exampleprogramtopbar.Show()
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
Me.WindowState = FormWindowState.Maximized
System.Windows.Forms.Application.VisualStyleState = VisualStyles.VisualStyleState.NoneEnabled
Me.desktopicons.BackgroundImage = My.Resources.windows_me_background_color
Dim w, h As Integer
w = Me.desktopicons.Width
h = Me.desktopicons.Height
Dim bmp As Bitmap = New Bitmap(w, h)
Using g As Graphics = Graphics.FromImage(bmp)
g.DrawImage(Me.desktopicons.BackgroundImage, 0, 0, bmp.Width, bmp.Height)
End Using
Me.BackgroundImage = bmp
Me.desktopicons.BackgroundImage = bmp
desktopicons.AutoArrange = False
desktopicons.AllowDrop = True
End Sub
Private Sub NotePadToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NotePadToolStripMenuItem.Click
Dim opennotepad As New notepad2000
opennotepad.Show()
startmenu.Hide()
End Sub
Private Sub HelpToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HelpToolStripMenuItem.Click
Dim windowshelpopen As New formwindowshelp
windowshelpopen.Show()
startmenu.Hide()
End Sub
Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
program.Hide()
End Sub
Private Sub CalculatorToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CalculatorToolStripMenuItem.Click
Dim opencalc As New formcalculator
opencalc.Show()
startmenu.Hide()
End Sub
Private Sub desktopicons_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles desktopicons.DoubleClick
Dim objDrawingPoint As Drawing.Point
Dim objListViewItem As ListViewItem
objDrawingPoint = desktopicons.PointToClient(Cursor.Position)
If Not IsNothing(objDrawingPoint) Then
With objDrawingPoint
objListViewItem = desktopicons.GetItemAt(.X, .Y)
End With
If Not IsNothing(objListViewItem) Then
If objListViewItem.Text = "Internet Explorer" Then
Dim IE As New Internet_Explorer_52001
IE.Show()
End If
If objListViewItem.Text = "Guess The Number 2 Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Guess The Number 2"
openinstall.installimage.Image = My.Resources.Guess_the_Number__install_
openinstall.Show()
End If
If objListViewItem.Text = "Start Runner 2000 Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Start Runner 2000"
openinstall.installimage.Image = My.Resources.start_run__install___white_with_programname_
openinstall.Show()
End If
If objListViewItem.Text = "Error Blaster 2000 Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Error Blaster 2000"
openinstall.installimage.Image = My.Resources.error_blast__big_
openinstall.Show()
End If
If objListViewItem.Text = "Survive The Day Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Survive The Day"
openinstall.installimage.Image = My.Resources.survive_the_day_install_banner
openinstall.Show()
End If
If objListViewItem.Text = "Skindows 95 Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Skindows 95"
openinstall.installimage.Image = My.Resources.skindows_95__install_
openinstall.Show()
End If
If objListViewItem.Text = "Web Chat Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Web Chat"
openinstall.installimage.Image = My.Resources.chat__big_
openinstall.Show()
End If
If objListViewItem.Text = "hwcv.exe" Then
Dim openhwcv As New hwcv
openhwcv.Show()
End If
If objListViewItem.Text = "Time Distorter Setup" Then
Dim openinstall As New installer2000
openinstall.installname.Text = "Time Distorter"
openinstall.installimage.Image = My.Resources.time_distorter__install_Black_
openinstall.Show()
End If
End If
End If
End Sub
Private Sub Desktop_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles desktopicons.MouseClick
If e.Button = Windows.Forms.MouseButtons.Right Then
rightclickbackproperties.Show()
rightclickbackproperties.BringToFront()
rightclickbackproperties.Location = MousePosition
End If
If e.Button = Windows.Forms.MouseButtons.Left Then
End If
If e.Button = Windows.Forms.MouseButtons.Middle Then
End If
End Sub
Private Sub minimizebutton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles minimizebutton.Click
End Sub
Private Sub maximizebutton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles maximizebutton.Click
End Sub
Private Sub startbutton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles startbutton.Click
startmenu.Show()
startmenu.BringToFront()
End Sub
Private Sub PropertiesToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PropertiesToolStripMenuItem1.Click
Dim oform As New formDisplayproperties
oform.Show()
startmenu.Hide()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
desktopicons.BackColor = Me.BackColor
taskbartime.Text = TimeOfDay
End Sub
Private Sub PhoneDialerToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PhoneDialerToolStripMenuItem.Click
Dim openphonedialer As New phone_dialer
openphonedialer.Show()
startmenu.Hide()
End Sub
Private Sub AddressBookToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddressBookToolStripMenuItem.Click
Dim openaddressbook As New Address_Book
openaddressbook.Show()
startmenu.Hide()
End Sub
Private Sub VolumeControlToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim openvolumecontrol As New volume_control
openvolumecontrol.Show()
startmenu.Hide()
End Sub
Private Sub RunToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RunToolStripMenuItem.Click
Dim openrun As New run
openrun.Show()
startmenu.Hide()
End Sub
Private Sub PaintToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PaintToolStripMenuItem.Click
Dim openpaint As New paint
openpaint.Show()
startmenu.Hide()
End Sub
Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer4.Tick
End Sub
Private Sub FolderToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FolderToolStripMenuItem.Click
desktopicons.Items.Add("New Folder")
End Sub
Private Sub desktopicons_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles desktopicons.MouseDown
startmenu.Hide()
End Sub
Private Sub GuessTheNumberToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GuessTheNumberToolStripMenuItem.Click
Dim openguessnumber As New guessthenumber2win2000()
openguessnumber.Show()
startmenu.Hide()
End Sub
Private Sub StartRunnerToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles StartRunnerToolStripMenuItem.Click
Dim openstartrunner As New startrunner2000
openstartrunner.Show()
startmenu.Hide()
End Sub
Private Sub ErrorBlasterToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ErrorBlasterToolStripMenuItem.Click
Dim openerror As New errorblaster2000
openerror.Show()
startmenu.Hide()
End Sub
Private Sub SkindowsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SkindowsToolStripMenuItem.Click
Dim openskin As New Skindows_95
openskin.Show()
startmenu.Hide()
End Sub
Private Sub WebChatToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WebChatToolStripMenuItem.Click
Dim openchat As New Webchat1998
openchat.Show()
startmenu.Hide()
End Sub
Private Sub TimeDistorterToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SurviveTheDayToolStripMenuItem.Click
Dim opensurvivetheday As New Survive_The_Day
opensurvivetheday.Show()
startmenu.Hide()
End Sub
Private Sub taskbartime_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles taskbartime.Click
Dim showmess As New windows2000messagebox
showmess.infomessage.Text = "Your save code is: 2iu35giu"
showmess.Show()
End Sub
Private Sub ToolStripMenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItem2.Click
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
Private Sub Form_IsClosing(sender As Object, e As EventArgs) Handles MyBase.FormClosing
End Sub
Private Sub WindowsExplorerToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WindowsExplorerToolStripMenuItem.Click
Dim openinternet As New Internet_Explorer_52001
openinternet.Show()
startmenu.Hide()
End Sub
Private Sub desktopicons_ItemDrag(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemDragEventArgs) Handles desktopicons.ItemDrag
Dim lvi As ListViewItem = CType(e.Item, ListViewItem)
desktopicons.DoDragDrop(New DataObject("System.Windows.Forms.ListViewItem", lvi), DragDropEffects.Move)
End Sub
Private Sub desktopicons_DragEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles desktopicons.DragEnter
If e.Data.GetDataPresent("System.Windows.Forms.ListViewItem") Then
e.Effect = DragDropEffects.Move
End If
End Sub
Private Sub desktopicons_DragOver(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles desktopicons.DragOver
Dim lvi As ListViewItem = CType(e.Data.GetData("System.Windows.Forms.ListViewItem"), ListViewItem)
Dim Offset As Size = Size.Subtract(Cursor.Size, New Size(Cursor.HotSpot.X, Cursor.HotSpot.Y))
lvi.Position = Point.Subtract(desktopicons.PointToClient(New Point(e.X, e.Y)), Offset)
e.Effect = DragDropEffects.Move
End Sub
End Class
|