-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathForm1.Designer.nrod.s.conflicted.copy.2014-08-21.vb
1247 lines (1242 loc) · 93.1 KB
/
Form1.Designer.nrod.s.conflicted.copy.2014-08-21.vb
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1))
Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.NewGameToolStripMenuItem1 = New System.Windows.Forms.ToolStripMenuItem()
Me.LoadGameToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem1 = New System.Windows.Forms.ToolStripSeparator()
Me.SaveToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.OpenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem4 = New System.Windows.Forms.ToolStripSeparator()
Me.ExitToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Hrs = New System.Windows.Forms.Label()
Me.Label15 = New System.Windows.Forms.Label()
Me.TheMonth = New System.Windows.Forms.Label()
Me.TheWeek = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.Cash = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label1 = New System.Windows.Forms.Label()
Me.YourCo = New System.Windows.Forms.Label()
Me.Timer1 = New System.Windows.Forms.Timer(Me.components)
Me.NewsTimer = New System.Windows.Forms.Timer(Me.components)
Me.GroupBox3 = New System.Windows.Forms.GroupBox()
Me.ListBox2 = New System.Windows.Forms.ListBox()
Me.G3 = New System.Windows.Forms.ListBox()
Me.G2 = New System.Windows.Forms.ListBox()
Me.G1 = New System.Windows.Forms.ListBox()
Me.GroupBox4 = New System.Windows.Forms.GroupBox()
Me.ListBox3 = New System.Windows.Forms.ListBox()
Me.ListBox4 = New System.Windows.Forms.ListBox()
Me.GroupBox5 = New System.Windows.Forms.GroupBox()
Me.lstSeq = New System.Windows.Forms.ListBox()
Me.NewGames = New System.Windows.Forms.ListBox()
Me.OldGames = New System.Windows.Forms.ListBox()
Me.GroupBox6 = New System.Windows.Forms.GroupBox()
Me.OldConsoles = New System.Windows.Forms.ListBox()
Me.Console2 = New System.Windows.Forms.ListBox()
Me.Console1 = New System.Windows.Forms.ListBox()
Me.NewConsoles = New System.Windows.Forms.ListBox()
Me.ContextMenuStrip2 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.NewGameToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.AdventureToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ActionToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.RoleplayingToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.SimulationToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.StrategyToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.CasualToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.PartyToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.PuzzleToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.SportsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.SequelToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.NewEngineToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.NewPlatformToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.GroupBox7 = New System.Windows.Forms.GroupBox()
Me.EmployeeSalaries = New System.Windows.Forms.Label()
Me.ListBox6 = New System.Windows.Forms.ListBox()
Me.GroupBox8 = New System.Windows.Forms.GroupBox()
Me.CoName2 = New System.Windows.Forms.ListBox()
Me.CoName = New System.Windows.Forms.ListBox()
Me.Companies = New System.Windows.Forms.ListBox()
Me.Timer2 = New System.Windows.Forms.Timer(Me.components)
Me.GroupBox11 = New System.Windows.Forms.GroupBox()
Me.ProgressBar2 = New System.Windows.Forms.ProgressBar()
Me.Label8 = New System.Windows.Forms.Label()
Me.Label6 = New System.Windows.Forms.Label()
Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
Me.Button3 = New System.Windows.Forms.Button()
Me.Button4 = New System.Windows.Forms.Button()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.GroupBox17 = New System.Windows.Forms.GroupBox()
Me.Label13 = New System.Windows.Forms.Label()
Me.GroupBox15 = New System.Windows.Forms.GroupBox()
Me.Label12 = New System.Windows.Forms.Label()
Me.GroupBox14 = New System.Windows.Forms.GroupBox()
Me.Label11 = New System.Windows.Forms.Label()
Me.GroupBox13 = New System.Windows.Forms.GroupBox()
Me.Label10 = New System.Windows.Forms.Label()
Me.GroupBox12 = New System.Windows.Forms.GroupBox()
Me.Label9 = New System.Windows.Forms.Label()
Me.Reputation = New System.Windows.Forms.Label()
Me.Label5 = New System.Windows.Forms.Label()
Me.GroupBox16 = New System.Windows.Forms.GroupBox()
Me.OldEngines = New System.Windows.Forms.ListBox()
Me.EngineNames = New System.Windows.Forms.ListBox()
Me.NewEngines = New System.Windows.Forms.ListBox()
Me.GroupBox18 = New System.Windows.Forms.GroupBox()
Me.LastNames = New System.Windows.Forms.ListBox()
Me.FFirstNames = New System.Windows.Forms.ListBox()
Me.MFirstNames = New System.Windows.Forms.ListBox()
Me.ContextMenuStrip3 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.HireToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.FireToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.ToolStripMenuItem3 = New System.Windows.Forms.ToolStripSeparator()
Me.OfficeToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.Label14 = New System.Windows.Forms.Label()
Me.NewsList = New System.Windows.Forms.ListBox()
Me.Panel2 = New System.Windows.Forms.Panel()
Me.ListView2 = New System.Windows.Forms.ListView()
Me.ListView1 = New System.Windows.Forms.ListView()
Me.Button6 = New System.Windows.Forms.Button()
Me.Button5 = New System.Windows.Forms.Button()
Me.TheYear = New System.Windows.Forms.Label()
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.Button1 = New System.Windows.Forms.Button()
Me.PictureBox2 = New System.Windows.Forms.PictureBox()
Me.PictureBox3 = New System.Windows.Forms.PictureBox()
Me.ContextMenuStrip1.SuspendLayout()
Me.GroupBox3.SuspendLayout()
Me.GroupBox4.SuspendLayout()
Me.GroupBox5.SuspendLayout()
Me.GroupBox6.SuspendLayout()
Me.ContextMenuStrip2.SuspendLayout()
Me.GroupBox7.SuspendLayout()
Me.GroupBox8.SuspendLayout()
Me.GroupBox11.SuspendLayout()
Me.GroupBox17.SuspendLayout()
Me.GroupBox15.SuspendLayout()
Me.GroupBox14.SuspendLayout()
Me.GroupBox13.SuspendLayout()
Me.GroupBox12.SuspendLayout()
Me.GroupBox16.SuspendLayout()
Me.GroupBox18.SuspendLayout()
Me.ContextMenuStrip3.SuspendLayout()
Me.Panel1.SuspendLayout()
Me.Panel2.SuspendLayout()
CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox3, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'ContextMenuStrip1
'
Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.NewGameToolStripMenuItem1, Me.LoadGameToolStripMenuItem, Me.ToolStripMenuItem1, Me.SaveToolStripMenuItem, Me.OpenToolStripMenuItem, Me.ToolStripMenuItem4, Me.ExitToolStripMenuItem})
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
Me.ContextMenuStrip1.Size = New System.Drawing.Size(135, 126)
'
'NewGameToolStripMenuItem1
'
Me.NewGameToolStripMenuItem1.Name = "NewGameToolStripMenuItem1"
Me.NewGameToolStripMenuItem1.Size = New System.Drawing.Size(134, 22)
Me.NewGameToolStripMenuItem1.Text = "New Game"
'
'LoadGameToolStripMenuItem
'
Me.LoadGameToolStripMenuItem.Name = "LoadGameToolStripMenuItem"
Me.LoadGameToolStripMenuItem.Size = New System.Drawing.Size(134, 22)
Me.LoadGameToolStripMenuItem.Text = "Load Game"
'
'ToolStripMenuItem1
'
Me.ToolStripMenuItem1.Name = "ToolStripMenuItem1"
Me.ToolStripMenuItem1.Size = New System.Drawing.Size(131, 6)
'
'SaveToolStripMenuItem
'
Me.SaveToolStripMenuItem.Name = "SaveToolStripMenuItem"
Me.SaveToolStripMenuItem.Size = New System.Drawing.Size(134, 22)
Me.SaveToolStripMenuItem.Text = "Save "
'
'OpenToolStripMenuItem
'
Me.OpenToolStripMenuItem.Name = "OpenToolStripMenuItem"
Me.OpenToolStripMenuItem.Size = New System.Drawing.Size(134, 22)
Me.OpenToolStripMenuItem.Text = "Open"
'
'ToolStripMenuItem4
'
Me.ToolStripMenuItem4.Name = "ToolStripMenuItem4"
Me.ToolStripMenuItem4.Size = New System.Drawing.Size(131, 6)
'
'ExitToolStripMenuItem
'
Me.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem"
Me.ExitToolStripMenuItem.Size = New System.Drawing.Size(134, 22)
Me.ExitToolStripMenuItem.Text = "Exit"
'
'Hrs
'
Me.Hrs.AutoSize = True
Me.Hrs.BackColor = System.Drawing.Color.Transparent
Me.Hrs.Location = New System.Drawing.Point(97, 440)
Me.Hrs.Name = "Hrs"
Me.Hrs.Size = New System.Drawing.Size(13, 13)
Me.Hrs.TabIndex = 11
Me.Hrs.Text = "1"
'
'Label15
'
Me.Label15.AutoSize = True
Me.Label15.BackColor = System.Drawing.Color.Transparent
Me.Label15.Location = New System.Drawing.Point(66, 440)
Me.Label15.Name = "Label15"
Me.Label15.Size = New System.Drawing.Size(30, 13)
Me.Label15.TabIndex = 10
Me.Label15.Text = "Hour"
'
'TheMonth
'
Me.TheMonth.AutoSize = True
Me.TheMonth.BackColor = System.Drawing.Color.Transparent
Me.TheMonth.Location = New System.Drawing.Point(60, 413)
Me.TheMonth.Name = "TheMonth"
Me.TheMonth.Size = New System.Drawing.Size(44, 13)
Me.TheMonth.TabIndex = 9
Me.TheMonth.Text = "January"
'
'TheWeek
'
Me.TheWeek.AutoSize = True
Me.TheWeek.BackColor = System.Drawing.Color.Transparent
Me.TheWeek.Location = New System.Drawing.Point(97, 427)
Me.TheWeek.Name = "TheWeek"
Me.TheWeek.Size = New System.Drawing.Size(13, 13)
Me.TheWeek.TabIndex = 7
Me.TheWeek.Text = "1"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.BackColor = System.Drawing.Color.Transparent
Me.Label4.Location = New System.Drawing.Point(60, 427)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(36, 13)
Me.Label4.TabIndex = 5
Me.Label4.Text = "Week"
'
'Cash
'
Me.Cash.AutoSize = True
Me.Cash.BackColor = System.Drawing.Color.Transparent
Me.Cash.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Cash.Location = New System.Drawing.Point(171, 425)
Me.Cash.Name = "Cash"
Me.Cash.Size = New System.Drawing.Size(37, 13)
Me.Cash.TabIndex = 4
Me.Cash.Text = "10000"
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.BackColor = System.Drawing.Color.Transparent
Me.Label3.Font = New System.Drawing.Font("Microsoft Tai Le", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.ForeColor = System.Drawing.Color.Black
Me.Label3.Location = New System.Drawing.Point(159, 424)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(13, 14)
Me.Label3.TabIndex = 3
Me.Label3.Text = "$"
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.BackColor = System.Drawing.Color.Transparent
Me.Label1.Location = New System.Drawing.Point(159, 411)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(34, 13)
Me.Label1.TabIndex = 1
Me.Label1.Text = "Cash:"
'
'YourCo
'
Me.YourCo.AutoSize = True
Me.YourCo.BackColor = System.Drawing.Color.Transparent
Me.YourCo.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.YourCo.Location = New System.Drawing.Point(4, 1)
Me.YourCo.Name = "YourCo"
Me.YourCo.Size = New System.Drawing.Size(81, 13)
Me.YourCo.TabIndex = 67
Me.YourCo.Text = "Krehn Solutions"
'
'Timer1
'
'
'NewsTimer
'
Me.NewsTimer.Interval = 10
'
'GroupBox3
'
Me.GroupBox3.Controls.Add(Me.ListBox2)
Me.GroupBox3.Controls.Add(Me.G3)
Me.GroupBox3.Controls.Add(Me.G2)
Me.GroupBox3.Controls.Add(Me.G1)
Me.GroupBox3.Location = New System.Drawing.Point(866, 12)
Me.GroupBox3.Name = "GroupBox3"
Me.GroupBox3.Size = New System.Drawing.Size(174, 126)
Me.GroupBox3.TabIndex = 6
Me.GroupBox3.TabStop = False
Me.GroupBox3.Text = "Game Names"
'
'ListBox2
'
Me.ListBox2.FormattingEnabled = True
Me.ListBox2.Location = New System.Drawing.Point(6, 94)
Me.ListBox2.Name = "ListBox2"
Me.ListBox2.Size = New System.Drawing.Size(145, 30)
Me.ListBox2.TabIndex = 3
'
'G3
'
Me.G3.FormattingEnabled = True
Me.G3.Items.AddRange(New Object() {"- 2nd Impact", "- 3rd Strike", "1942", "25th Anniversary Edition", "2K", "2000", "3000", "3D", "64", "95", "Academy", "Advance", "Adventure", "Agent", "All-Stars", "Alpha", "Anarchy", "Annihilation", "Anthology", "Apocalypse", "Arena", "Armada", "Armageddon", "Assassins", "Assault", "at the Olympics", "Attack", "Babies", "Bandit", "Bandits", "Bastards", "Battle", "Battalion", "Base", "Baseball", "Basketball", "Beatdown", "Beta", "Blast", "Blaster", "Bloodbath", "Boxing", "Boy", "Brawl", "Brothers", "Camp", "Caper", "Carnage", "Castle", "CD", "Challenge", "Championship", "Chase", "Choreographer", "Chronicles", "City", "Co-Op", "Collection", "- Collector's Edition", "College", "Colosseum", "Combat", "Commander", "Commando", "Competition", "Conflict", "Connection", "Conquest", "Conspiracy", "Conundrum", "Corps", "Country", "Creator", "Crime Scene Investigation", "Crisis", "Crusade", "Crusader", "Dance Mix", "Dance Party", "Dancers", "Daredevils", "Dash", "Deathmatch", "Deluxe", "Demolition", "Derby", "Desperadoes", "Destruction", "Detective", "Diesel", "Disaster", "DJ", "Domination", "Dreamland", "DS", "Dudes", "Dungeon", "DX", "Dynasty", "Dystopia", "Empire", "Encounter", "Enforcer", "Epidemic", "Espionage", "EX", "Exhibition", "Experience", "Expert", "Explorer", "Explosion", "Express", "Extra", "Extravaganza", "Factory", "Family", "Fandango", "Fantasy", "Farmer", "Fest", "Feud", "Fever", "Fiasco", "Fiesta", "Fight", "Fight Club", "Fighter", "Football", "For Kids", "Force", "Forever", "Fortress", "Freak", "Frenzy", "from Hell", "from Mars", "from Outer Space", "from Planet X", "Fun", "Gaiden", "Gang", "Girl", "Gold", "Gone Wild", "Gladiator", "Groove", "GT", "Havoc", "Hell", "Hero", "Heroes", "Hoedown", "Hop-A-Bout", "Horde", "Horror", "Hospital", "- Hot Pursuit", "House", "Hunt", "Hunter", "II", "III", "Ignition", "in Africa", "in Busytown", "in Crazyland", "in Middle-Earth", "in My Pocket", "in Space", "in the Bayou", "in the Dark", "in the Desert", "in the Hood", "in the Magic Kingdom", "in the Middle East", "in the Outback", "in the Salad Kingdom", "in the Sky", "in Toyland", "in Vegas", "Incident", "Inferno", "Insanity", "Inspector", "Insurrection", "Interactive", "Interceptor", "Invaders", "Invasion", "Island", "Jam", "Jamboree", "Jihad", "Joe", "Journey", "Jr.", "Kid", "Kids", "King", "Kingdom", "Knights", "Kombat", "Legend", "Legends", "- Limited Edition", "Live", "Lord", "Machine", "Madness", "Man", "Mania", "Maniac", "Mansion", "Marines", "Massacre", "Master", "Maxx", "Mayhem", "Melee", "Mission", "Munchers", "Murder", "Nation", "Nightmare", "Nitro", "Odyssey", "of Death", "of Doom", "of Fury", "of Love", "of Magic", "of Might and Magic", "of Mystery", "of the Blood God", "of the Damned", "of the Dead", "of the Deep", "of the Third Reich", "on the Oregon Trail", "Offensive", "Omega", "on the High Seas", "On The Road", "on Wheels", "Online", "Onslaught", "Operation", "Operatives", "Oppression", "Orchestra", "Over Normandy", "Overdrive", "Overload", "Overlords", "Paintbrawl", "Palace", "Panic", "Paratroopers", "Park", "Party", "Patrol", "Phonics", "Pimps", "Pinball", "Pioneer", "Planet", "Playhouse", "Plus", "Police", "Polo", "Posse", "Power", "Preacher", "Princess", "Pro", "Project", "Prophecy", "Psychiatrist", "Punch-Out!!", "Punishment", "Quest", "Quiz", "Racer", "Rage", "Raider", "Rally", "Rampage", "Rangers", "Ransom", "Rave", "Rebellion", "Reloaded", "Remix", "Rescue", "Restaurant", "Returns", "Revenge", "Revisited", "Revolution", "Rider", "Riders", "Rocket", "Romance", "Romp", "Roundup", "Runner", "Rush", "Safari", "Saga", "Saloon", "Scam", "Scandal", "School", "Shack", "Shoot", "Shootout", "Showdown", "Siege", "Simulator", "Sisters", "Slam", "Slaughter", "Slayer", "Smackdown", "Smash", "Smuggler", "Solid", "Soldier", "Special Edition", "Spectacular", "Spies", "Spree", "Squadron", "Stadium", "Starring Mickey Mouse", "Stars", "Story", "Strike Force", "Strikes Again", "Strikes Back", "Struggle", "Studio", "Summit", "Summoner", "Superstar", "Symphony", "Syndicate", "Syndrome", "Tactics", "Takedown", "Tale", "Task Force", "Temple", "Terror", "Theater", "Thieves", "- The Card Game", "- The Dark Descent", "- The Dark Project", "- The Gathering Storm", "- The Lost Levels", "- The Movie", "- The Next Generation", "- The Quickening", "- The Resistance", "- The Revenge", "Through Time", "Throwdown", "- Total War", "Tournament", "Trader", "Train", "Trainer", "Training", "Tribe", "Trilogy", "Trivia", "Troopers", "Turbo", "Tycoon", "Ultra", "Unit", "Uncensored", "Underground", "Underworld", "Universe", "Unleashed", "Uprising", "Vengeance", "Voyage", "vs. Capcom", "vs. Street Fighter", "vs. The Space Mutants", "Warfare", "Warrior", "Wars", "Wasteland", "with Friends", "World", "World Cup", "World Tour", "Wranglers", "X", "XP", "XXX", "X-treme", "Yoga", "Z", "Zombies", "Zone"})
Me.G3.Location = New System.Drawing.Point(109, 19)
Me.G3.Name = "G3"
Me.G3.Size = New System.Drawing.Size(51, 69)
Me.G3.TabIndex = 2
'
'G2
'
Me.G2.FormattingEnabled = True
Me.G2.Items.AddRange(New Object() {"3D", "Acid", "Aerobics", "Afro", "Alien", "Alligator", "Amish", "Android", "Animal", "Arcade", "Architecture", "Army", "Assault", "Axe", "Badminton^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Baking", "Ballet", "Balloon", "Banana", "Bandicoot", "Banjo", "Barbarian", "Barcode", "Baseball^Base|Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Basketball^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Bass", "Batman", "Battle^Battalion", "Battleship^Battle|Battalion", "Bazooka", "Beach", "Beast", "Beat", "Beautician", "Bedtime", "Bible", "Big Game Hunter^Hunt|Hunter", "Bimbo", "Bingo", "Biplane", "Blade", "Blimp", "Blood^Bloodbath|of the Blood God", "BMX", "Bobsled", "Bomb", "Bomberman", "Bong", "Bongo", "Booty", "Bow Hunter^Hunt|Hunter", "Bowling^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Boxing^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Breakdancing^Dance Mix|Dance Party|Dancers", "Bubble", "Bubblegum", "Buddhist", "Bungie", "Burger", "Business", "Cannibal", "Car", "Cardboard", "Carnival", "Casino", "Castlevania", "Catapult", "Caveman^Man", "Chainsaw", "Chase", "Cheese", "Chef", "Chess", "Chicken", "Chipmunk", "Chocobo", "Circus", "City", "College", "Combat", "Computer", "Conga", "Cookie", "Cooking", "Cowboy", "Cricket^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Croquet^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Crowbar", "Crystal", "Cyborg", "Dance^Dance Mix|Dance Party|Dancers", "Dating", "Death^Deathmatch|of Death|of the Dead", "Deer Hunter", "Demon", "Dentist", "Desert^in the Desert", "Devil", "Dinosaur", "Disco", "Dodgeball^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Dog", "Donkey", "Dragon", "Driving", "Drug-Dealing", "Duck", "Dungeon", "Dwarf", "Elevator", "Equestrian", "Fashion", "Fantasy", "Farm^Farmer", "Fencing", "Fighter^Fight|Fight Club", "Fire", "Fishing^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Flatulence", "Florist", "Football^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Forklift", "Frisbee", "Frog", "Fun", "Fun Noodle", "Funk", "Furry", "Ghost", "Gimp", "Gnome", "Go-Kart", "Goblin", "Godzilla", "Golf", "Gopher", "Goth", "Graveyard", "Grizzly Bear", "Guitar", "Gun", "Hair Salon", "Hammer", "Hamster", "Handgun", "Hang Glider", "Hardware", "Harpoon", "Harvest", "Helicopter", "Hillbilly", "Hippo", "Hitman^Man", "Hobo", "Hockey", "Hoedown^Beatdown|Showdown|Smackdown|Takedown", "Hovercraft", "Horse Racing^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Ice", "Ice Cream", "Indian", "Insect", "Internet", "Jackhammer", "Janitor", "Jazz", "Jetpack", "Jetski", "Juggalo", "Jungle", "Kabuki", "Kangaroo", "Karaoke", "Karate", "Kart", "Katana", "Kitchen", "Kung-fu", "Lacrosse^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Landmine", "Laser", "Lawnmower", "Lego", "Leisure Suit", "Lightning", "Limbo", "Lizard", "Llama", "Love^of Love|Romance", "Lowrider", "Mafia", "Magic^of Magic|of Might and Magic", "Mahjong", "Makeout", "Makeover", "Mall", "Manlove", "Matador", "Math", "Maze", "Mech", "Metal", "Midget", "Military", "Mind Control", "Monkey", "Monster", "Monster Truck", "Moon", "Moped", "Motorcycle", "Motocross", "Mountain Climber", "Mummy", "Murder", "Mushroom", "Music^DJ", "Mutant", "NASCAR", "Nazi", "Night^Knights|Nightmare", "Ninja", "Nuclear", "Nudist", "Octopus", "Office", "Ostrich", "Outlaw", "Pachinko", "Paintball^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Penguin", "Piano", "Pinball^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Ping Pong^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Pirate", "Platypus", "Plumber", "Plunger", "Pogo", "Pokemon", "Police", "Polka", "Pony", "Porn", "Princess", "Prison", "Programming", "Punching", "Puppy", "Puzzle", "Quantum", "Quiz", "Rabbit", "Raccoon", "Racing^Racer", "Railroad", "Rainbow", "River", "Robot", "Rocket", "Rodeo", "Rollerball^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Rugby^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Sailboat", "Sailor", "Samurai", "Sandwich", "Scooter", "Scorched Earth", "Sewer", "Sex", "Shadow", "Shark", "Shaving", "Shock", "Shopping", "Shotgun", "Skate", "Skydiving", "Sloth", "Sniper", "Snowboard", "Soccer", "Software", "Spatula", "Speed", "Spelling", "Spelunking", "Spider", "Spork", "Square Dancing^Dance Mix|Dance Party|Dancers", "Squirrel", "Stapler", "STD", "Stick", "Stunt", "Submarine", "Sumo", "Sudoku", "Sunshine", "Surf", "Surgery", "Sushi", "Sword", "Tank", "Techno", "Tennis", "Terrorist", "Tetris", "Theme Park^Park", "Thief", "Thunder", "Toon", "Trailer Park^Park", "Train", "Trampoline", "Transvestite", "Tricycle", "Turtle", "Typing", "UFO", "Underwear^Under Fire|Underground|Underworld", "Unicorn", "Unicycle", "Valkyrie", "Vampire", "Vegetarian", "Vigilante", "Viking", "Vocabulary", "Volleyball^Baseball|Basketball|Boxing|Football|Paintbrawl|Pinball|Polo", "Wagon", "Walrus", "Wedding", "Weight Loss", "Werewolf", "Whale", "Wheelchair", "Wizard", "Workout", "Worm", "Wrestling", "Writing", "WWE", "WWII^Warfare|Warrior|Wars|World|World Cup|World Tour|- Total War", "Yak", "Yeti", "Yoga", "Zamboni", "Zombie^Zombies"})
Me.G2.Location = New System.Drawing.Point(52, 19)
Me.G2.Name = "G2"
Me.G2.Size = New System.Drawing.Size(51, 69)
Me.G2.TabIndex = 1
'
'G1
'
Me.G1.FormattingEnabled = True
Me.G1.Items.AddRange(New Object() {"3D", "8-Bit", "A Boy and His", "Action", "Advanced^Advance", "Adventures of the^Adventure", "Aero", "African^in Africa", "Alcoholic", "Alien", "Allied", "All-American", "All-Night", "All-Star^Star|Starring Mickey Mouse|Stars|Superstar", "Almighty", "Amateur", "Amazing", "Amazon", "American", "Amish", "Amphibious", "Ancient", "Android^Cyborg", "Angry", "Apathetic", "Aquatic", "Arcane", "Armored", "Art of", "Asian", "Astral", "Attack of the^Attack", "Atomic^Nuclear", "Australian", "Awesome", "Barbie's", "Battle^Battleship|Battalion", "Battlefield:^Battle|Battleship|Battalion", "Beautiful^Beautician", "Bewildering", "Biblical", "Big^Big Game Hunter", "Big Bird's^Big Game Hunter", "Big-Time^Big Game Hunter", "Bionic", "Bizarre", "Bizarro", "Black", "Blasphemous", "Blazing", "Bling Bling", "Blissful", "Blocky", "Bloody^Blood|Bloodbath|of the Blood God", "Bonk's", "Boring", "Bouncin'", "Brain-Damaged", "British", "Britney Spears'", "BudgetSoft Presents:", "Caesar's", "Canadian", "Cantankerous", "Caribbean", "Catholic", "Celebrity", "Celtic", "Charlie Brown's", "Children of the", "Chillin'", "Chinese", "Chocolate", "Christian", "Claustrophobic", "College", "Colonial", "Combat", "Communist", "Confusing", "Cool", "Corporate", "Cosmic", "Crazy", "Create Your Own^Creator", "Creepy", "Cthulhu's", "Curse of the", "Custom", "Cute", "Cyber", "Cybernetic", "Cyborg^Android", "Dance Dance^Breakdancing|Dance|Dance Mix|Dance Party|Dancers|Square Dancing", "Dangerous", "Darkest^in the Dark|- The Dark Descent|- The Dark Project", "Day of the", "Dead or Alive^Death|Deathmatch|of Death|of the Dead", "Deadly^Death|Deathmatch|of Death|of the Dead", "Death-Defying^Death|Deathmatch|of Death|of the Dead", "Deep Space^of the Deep", "Def Jam", "Demonic", "Depressing", "Deranged", "Derek Smart's", "Dirty", "Disney's", "Distinguished", "Disturbing", "Divine", "Donkey Kong's", "Double", "Downtown", "Dracula's", "Drug-Induced", "Drunken", "Duke Nukem:", "Dwarven^Dwarf|Gnome|Midget", "Dynamite", "Ebony", "Eco-Friendly", "Educational", "Elderly", "Electric", "Elegant", "Elite", "Elmo's", "Emo", "Endless", "Enormous", "Enraged", "Epic", "Erotic", "Escape from the", "Eternal", "European", "Everybody Hates the", "Everybody Loves the", "Exciting", "Excruciating", "Explosive^Explosion", "Exquisite", "Extreme^X-Treme", "Fabulous", "Fancy", "Fantastic", "Fantasy", "Fatal", "Feverish", "Fiery", "Final", "Final Fantasy^Fantasy", "First-Person", "Fisher Price", "Flamboyant", "Fluffy", "Flying", "Forbidden", "Forgotten", "Frankenstein's", "French", "Frisky", "Fruity", "Full Metal", "Funky^Funk", "Furry", "Future", "Galactic", "Generic", "Geriatric", "German", "Ghetto", "Giant", "Glowing", "Go Go", "God of", "Golden", "Gothic^Goth", "Grand", "Great", "Grimy", "Guitar", "Happy", "Hardcore", "Haunted", "Hazardous", "Heavy", "Heavy Metal^Metal", "Heinous", "Helicopter", "Heroic^Hero|Heroes", "Hidden", "Hideous", "High-Speed^Speed", "Hillbilly", "Hindu", "Hip-Hop^Hippo", "History of the", "Hitler's^Nazi", "Ho-Hum", "Holy", "Horrifying", "Hyper", "Imperial", "Impossible", "In Search of", "In Search of the", "In the Lost Kingdom of", "In Your Face", "Inappropriate", "Inbred", "Incomprehensible", "Incredible", "Indian", "Indiana Jones and the", "Inept", "Infinite", "Ingenious", "Insane", "Intellectual", "Intelligent", "Intense", "Interactive", "International", "Internet", "Interstellar", "Invisible", "Irish", "Iron", "Irresistible", "Irritating", "Islamic", "Italian", "It's a Mad Mad^Madness", "Jackie Chan's", "Jamaican", "Japanese", "Jedi", "Jewish", "Johnny Turbo's", "John Romero's", "Kabuki", "Kamikaze", "Kermit's", "Killer", "Kinect", "King of^King|Kingdom", "Kinky", "Kirby's", "Kosher", "Kung-fu", "Jack Thompson's", "Lair of the", "Latino", "Lazy", "Legacy of", "Legend of^Legend|Legends", "Legend of the^Legend|Legends", "Legendary^Legend|Legends", "Leisure Suit", "Lethal", "Little", "Looney Tunes", "Lord of the^Lord", "Lost", "Lovely^Love|of Love|Romance", "Low G", "Lucky", "Luigi's", "M.C. Escher's", "Madden", "Magic^of Magic|of Might and Magic", "Magical^Magic|of Magic|of Might and Magic", "Magnetic", "Major", "Manic^Mania|Maniac", "Maniac^Mania", "Mario's", "Mary Kate and Ashley's", "Master Chief's^Master", "Masters of^Master", "Masters of the^Master", "Maximum", "Mechanized", "Medieval", "Mega", "Mega Man's", "Merciless", "Metal", "Mexican", "Michael Jackson's", "Mickey's", "Micro", "Middle-Eastern^in the Middle East", "Mighty", "Mind-Bending", "Miniature^Dwarf|Gnome|Midget", "Miracle", "Monster^Monster Truck", "Monty Python's", "Morbid", "Morbidly Obese", "Mr.", "MTV's", "Muppet", "Musical^DJ|Music", "My First", "My Little", "My Very Own", "Mysterious^of Mystery", "Mystery^of Mystery", "Mystic^of Mystery", "Mystical^of Mystery", "Mythical", "Narcoleptic", "Nasty", "National Lampoon's", "Naughty", "NBA", "NCAA", "Nerf", "Neo", "Neon", "Neurotic", "New", "Night of the^Knights|Night|Nightmare", "Nighttime^Knights|Night|Nightmare", "Nihilistic", "Ninja", "No One Can Stop the", "Nostalgic", "Nuclear^Atomic", "Nudist", "Obsessive-Compulsive", "Occult", "Olympic", "Omega", "Orbital", "Pagan", "Panzer", "Papal", "Paranoid", "Pathetic", "Peaceful", "Perfect", "Perverted", "Phoenix Wright:", "Pixellated", "Planet of the^Planet", "Political", "Post-Apocalyptic", "Prehistoric", "Presidential", "Primal", "Pro", "Profane", "Professional^Pro", "Psychedelic", "Psycho", "Queen of the^Princess", "Quiet", "Rad", "Radical", "Radioactive", "Raging^Rage", "Real", "Red Hot", "Regal", "Relentless", "Religious", "Remote", "Renegade", "Retarded", "Retro", "Return of^Returns|Strikes Again|Strikes Back", "Return of the^Returns|Strikes Again|Strikes Back", "Revenge of^Revenge|- The Revenge", "Revenge of the^Revenge|- The Revenge", "Rise of the", "Robot", "Robotic^Robot", "Rock 'n' Roll", "Rocket-Powered", "Rockin'", "Rogue", "Roman", "Romantic", "Royal", "Rural", "Rushing^Rush", "Russian", "Samba de", "Samurai", "Satan's", "Savage", "Save Yourself from the", "Scandinavian", "Scooby Doo and the", "Scottish", "Screaming", "Search for the", "Secret of the", "Sensual^Sex", "Sexy^Sex", "Shadow of the^Shadow", "Shady", "Shameful", "Shrunken^Midget", "Sid Meier's", "Silent", "Silly", "Sim^Simulator", "Sinister", "Sleazy", "Sleepy", "Small-Time", "Sonic's", "Soviet", "Space", "Special^Special Edition", "Spectacular", "Spectral^Ghost", "Spirit of the", "Spooky", "Spunky", "Star^All-Stars|Starring Mickey Mouse|Stars|Superstar", "Star Trek^All-Stars|Star|Starring Mickey Mouse|Stars|Superstar", "Star Wars^All-Stars|Star|Starring Mickey Mouse|Stars|Superstar", "Stealth", "Stoic", "Strategic", "Street", "Stupendous", "Stylish", "Subatomic", "Subterranean^Underground|Underworld", "Summer", "Super", "Super Sexy^Sex|Superstar", "Supreme", "Surprise", "Tactical^Tactics", "Tasteless", "Team", "Teenage", "Telekinetic", "Terrible", "The", "The Care Bears'", "The Castle of", "The Castle of the", "The Glory of", "The Great", "The Harlem Globetrotters:", "The Hunt For the", "The Incredible", "The Infernal", "The Last", "The Muppets^Muppets", "The Quest for the^Quest", "The Secret Weapon of the", "The Simpsons'", "The Sims:", "The Six Million Dollar", "Third-World", "Throbbing", "Tiger Woods'", "Tiny^Midget", "Tom Clancy's", "Tony Hawk's", "Topsy-Turvy", "Toxic", "Transvestite", "Trendy", "Tribal", "Tropical", "True Crime:", "Turbo", "Twin", "Twisted", "Ultimate", "Ultra", "Ultraviolent^Ultra", "Unbelievable", "Undead", "Undercover^Under Fire|Underwear|Underground|Underworld", "Underground^Under Fire|Underwear|Underground|Underworld", "Underwater^Under Fire|Underwear|Underground|Underworld", "Under Fire^Undercover|Underwear|Underground|Underworld", "Underwear^Under Fire|UnderwaterUnderground|Underworld", "Unforgettable", "Unholy", "Unpleasant", "Unreal", "Unremarkable", "Unstoppable", "Urban", "Vampire", "Vegetarian", "Viking", "Violent", "Virtua", "Virtual", "Wacky", "Wandering", "War of the^Warfare|Warrior|Wars|- Total War", "We Love", "Weary", "Wild^Gone Wild", "Wild West^Gone Wild", "Wonderous", "Wooden", "World^World Cup|World Tour", "World of^World|World Cup|World Tour", "Wrath of the", "WWII^Warfare|Warrior|Wars|World|World Cup|World Tour|- Total War", "Ye Olde", "Yoshi's", "Zany", "Zombie^Zombies"})
Me.G1.Location = New System.Drawing.Point(6, 19)
Me.G1.Name = "G1"
Me.G1.Size = New System.Drawing.Size(50, 69)
Me.G1.TabIndex = 0
'
'GroupBox4
'
Me.GroupBox4.Controls.Add(Me.ListBox3)
Me.GroupBox4.Controls.Add(Me.ListBox4)
Me.GroupBox4.Location = New System.Drawing.Point(6, 106)
Me.GroupBox4.Name = "GroupBox4"
Me.GroupBox4.Size = New System.Drawing.Size(174, 100)
Me.GroupBox4.TabIndex = 7
Me.GroupBox4.TabStop = False
Me.GroupBox4.Text = "Employee Names"
'
'ListBox3
'
Me.ListBox3.FormattingEnabled = True
Me.ListBox3.Location = New System.Drawing.Point(88, 19)
Me.ListBox3.Name = "ListBox3"
Me.ListBox3.Size = New System.Drawing.Size(76, 69)
Me.ListBox3.TabIndex = 1
'
'ListBox4
'
Me.ListBox4.FormattingEnabled = True
Me.ListBox4.Location = New System.Drawing.Point(6, 19)
Me.ListBox4.Name = "ListBox4"
Me.ListBox4.Size = New System.Drawing.Size(76, 69)
Me.ListBox4.TabIndex = 0
'
'GroupBox5
'
Me.GroupBox5.Controls.Add(Me.lstSeq)
Me.GroupBox5.Controls.Add(Me.NewGames)
Me.GroupBox5.Controls.Add(Me.OldGames)
Me.GroupBox5.Location = New System.Drawing.Point(883, 379)
Me.GroupBox5.Name = "GroupBox5"
Me.GroupBox5.Size = New System.Drawing.Size(366, 100)
Me.GroupBox5.TabIndex = 8
Me.GroupBox5.TabStop = False
Me.GroupBox5.Text = "Released Games"
'
'lstSeq
'
Me.lstSeq.FormattingEnabled = True
Me.lstSeq.Location = New System.Drawing.Point(283, 28)
Me.lstSeq.Name = "lstSeq"
Me.lstSeq.Size = New System.Drawing.Size(86, 69)
Me.lstSeq.TabIndex = 1
'
'NewGames
'
Me.NewGames.FormattingEnabled = True
Me.NewGames.Items.AddRange(New Object() {"Company Name,Game Name,Design,Art,Gameplay,Story,Reply,Rating,System,ReleaseDate," & _
"Sales"})
Me.NewGames.Location = New System.Drawing.Point(6, 18)
Me.NewGames.Name = "NewGames"
Me.NewGames.Size = New System.Drawing.Size(354, 43)
Me.NewGames.TabIndex = 0
'
'OldGames
'
Me.OldGames.FormattingEnabled = True
Me.OldGames.Items.AddRange(New Object() {"Company Name,Game Name,Design,Art,Gameplay,Story,Reply,Rating,System,ReleaseDate," & _
"Sales"})
Me.OldGames.Location = New System.Drawing.Point(12, 70)
Me.OldGames.Name = "OldGames"
Me.OldGames.Size = New System.Drawing.Size(348, 30)
Me.OldGames.TabIndex = 0
'
'GroupBox6
'
Me.GroupBox6.Controls.Add(Me.OldConsoles)
Me.GroupBox6.Controls.Add(Me.Console2)
Me.GroupBox6.Controls.Add(Me.Console1)
Me.GroupBox6.Controls.Add(Me.NewConsoles)
Me.GroupBox6.Location = New System.Drawing.Point(1078, 116)
Me.GroupBox6.Name = "GroupBox6"
Me.GroupBox6.Size = New System.Drawing.Size(174, 127)
Me.GroupBox6.TabIndex = 9
Me.GroupBox6.TabStop = False
Me.GroupBox6.Text = "Consoles"
'
'OldConsoles
'
Me.OldConsoles.FormattingEnabled = True
Me.OldConsoles.Items.AddRange(New Object() {"Company,ConsoleName,TechLevel,ReleaseDate,Retired,Cost,Price,Sales"})
Me.OldConsoles.Location = New System.Drawing.Point(84, 15)
Me.OldConsoles.Name = "OldConsoles"
Me.OldConsoles.Size = New System.Drawing.Size(86, 43)
Me.OldConsoles.TabIndex = 3
'
'Console2
'
Me.Console2.FormattingEnabled = True
Me.Console2.Items.AddRange(New Object() {"Tech", "Vision", "Station", "1000", "2000", "3000", "4000", "5000", "2k", "Studio", "System", "X", "Z", "Max", "Cube", "Box", "GX", "XR", "ZX", "S1", "Fun", "180", "360", "Circle", "Active", "Next"})
Me.Console2.Location = New System.Drawing.Point(96, 72)
Me.Console2.Name = "Console2"
Me.Console2.Size = New System.Drawing.Size(59, 43)
Me.Console2.TabIndex = 2
'
'Console1
'
Me.Console1.FormattingEnabled = True
Me.Console1.Items.AddRange(New Object() {"Super", "Action", "Power", "Play", "Adrastea", "Aitne", "Amalthea", "Ananke", "Aoede", "Arche", "Autonoe", "Callisto", "Carme", "Callirrhoe", "Carpo", "Chaldene", "Cyllene", "Elara", "Erinome", "Euanthe", "Eukelade", "Euporie", "Europa", "Eurydome", "Ganymede", "Harpalyke", "Hegemone", "Helike", "Hermippe", "Himalia", "Io", "Iocaste", "Isonone", "Kale", "Kallichore", "Kalyke", "Kore", "Leda", "Lysithea", "Magaclite", "Metis", "Mneme", "Orthosie", "Pasiphae", "Pasithee", "Praxidike", "Sinope", "Sponde", "Taygete", "Thebe", "Thelxinoe", "Themisto", "Thyone", "Aegir", "Albiorix", "Anthe", "Atlas", "Bebhionn", "Bergelmir", "Bestla", "Calypso", "Daphnis", "Dione", "Enceladus", "Epimetheus", "Erriapo", "Farbauti", "Fenrir", "Fornjot", "Greip", "Hati", "Helene", "Hyperion", "Hyrokkin", "Iapetus", "Ijiraq", "Janus", "Jarnsaxa", "Kari", "Kiviuq", "Loge", "Methone", "Mimas", "Mundilfari", "Narvi", "Paaliaq", "Pallene", "Pan", "Pandora", "Phoebe", "Polydeuces", "Prometheus", "Rhea", "Siarnaq", "Skathi", "Skoll", "Surtur", "Suttungr", "Tarqeq", "Tarvos", "Telesto", "Tethys", "Thrymr", "Titan", "Ymir", "Ariel", "Belinda", "Bianca", "Caliban", "Cordelia", "Cressida", "Cupid", "Desdemona", "Ferdinand", "Francisco", "Juliet", "Mab", "Margaret", "Miranda", "Oberon", "Ophelia", "Perdita", "Portia", "Prospero", "Puck", "Rosalind", "Setebos", "Stephano", "Sycorax", "Titania", "Trinculo", "Umbriel", "Despina", "Galatea", "Halimede", "Larissa", "Laomedeia", "Naiad", "Nereid", "Neso", "Proteus", "Psamathe", "Sao", "Thalassa", "Triton", "Charon", "Nix", "Hydra", "Namaka", "Hi'iaka", "Dysnomia", "Silver", "Gray", "Black", "Red", "Maroon", "Yellow", "Olive", "Lime", "Green", "Aqua", "Teal", "Blue", "Navy", "Cheetah", "Pronghorn", "Springbok", "Wildebeest", "Blackbuck", "Lion", "Greyhound", "Jackrabbit", "Kangaroo", "Horse", "Onager", "Coyote", "Dolphin", "Zebra", "Tiger", "Hyena", "Human", "Elephant", "Falcon", "Needletail", "Frigatebird", "Hummingbird", "Ostrich", "Apollo", "Cassini", "Clementine", "Epoxi", "Explorer", "Galileo", "Geotail", "Grail", "Hinode", "Horizon", "Hubble", "Image", "InSight", "Iris", "Juno", "Jupiter", "Kepler", "Mars", "Maven", "Mercury", "Messenger", "Moon", "Neptune", "Odyssey", "Osiris", "Phoenix", "Pioneer", "Pluto", "Polar", "Ranger", "Rhessi", "Saturn", "Source", "Stardust", "Stereo", "Surveyor", "Swift", "Terra", "Themis", "Ulysses", "Uranus", "Venus", "Viking", "Voyager", "Webb", "Wind", "Wise", "Andromeda", "Antlia", "Apus", "Aquarius", "Aquila", "Ara", "Aries", "Auriga", "Boötes", "Caelum", "Camelopardalis", "Cancer", "Canes", "Canis", "Canis", "Capricornus", "Carina", "Cassiopeia", "Centaurus", "Cepheus", "Cetus", "Chamaeleon", "Circinus", "Columba", "Coma", "Corona", "Corona", "Corvus", "Crater", "Crux", "Cygnus", "Delphinus", "Dorado", "Draco", "Equuleus", "Eridanus", "Fornax", "Gemini", "Grus", "Hercules", "Horologium", "Hydra", "Hydrus", "Indus", "Lacerta", "Leo", "Leo", "Lepus", "Libra", "Lupus", "Lynx", "Lyra", "Mensa", "Microscopium", "Monoceros", "Musca", "Norma", "Octans", "Ophiuchus", "Orion", "Pavo", "Pegasus", "Perseus", "Phoenix", "Pictor", "Pisces", "Piscis", "Puppis", "Pyxis", "Reticulum", "Sagitta", "Sagittarius", "Scorpius", "Sculptor", "Scutum", "Serpens", "Sextans", "Taurus", "Telescopium", "Triangulum", "Triangulum", "Tucana", "Ursa", "Ursa", "Vela", "Virgo", "Volans", "Vulpecula"})
Me.Console1.Location = New System.Drawing.Point(10, 72)
Me.Console1.Name = "Console1"
Me.Console1.Size = New System.Drawing.Size(59, 43)
Me.Console1.TabIndex = 1
'
'NewConsoles
'
Me.NewConsoles.FormattingEnabled = True
Me.NewConsoles.Items.AddRange(New Object() {"Company,ConsoleName,TechLevel,ReleaseDate,Retired,Cost,Price,Sales"})
Me.NewConsoles.Location = New System.Drawing.Point(6, 15)
Me.NewConsoles.Name = "NewConsoles"
Me.NewConsoles.Size = New System.Drawing.Size(86, 43)
Me.NewConsoles.TabIndex = 0
'
'ContextMenuStrip2
'
Me.ContextMenuStrip2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.NewGameToolStripMenuItem, Me.SequelToolStripMenuItem, Me.NewEngineToolStripMenuItem, Me.NewPlatformToolStripMenuItem})
Me.ContextMenuStrip2.Name = "ContextMenuStrip2"
Me.ContextMenuStrip2.Size = New System.Drawing.Size(148, 92)
'
'NewGameToolStripMenuItem
'
Me.NewGameToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AdventureToolStripMenuItem, Me.ActionToolStripMenuItem, Me.RoleplayingToolStripMenuItem, Me.SimulationToolStripMenuItem, Me.StrategyToolStripMenuItem, Me.CasualToolStripMenuItem, Me.PartyToolStripMenuItem, Me.PuzzleToolStripMenuItem, Me.SportsToolStripMenuItem})
Me.NewGameToolStripMenuItem.Name = "NewGameToolStripMenuItem"
Me.NewGameToolStripMenuItem.Size = New System.Drawing.Size(147, 22)
Me.NewGameToolStripMenuItem.Text = "New Game"
'
'AdventureToolStripMenuItem
'
Me.AdventureToolStripMenuItem.Name = "AdventureToolStripMenuItem"
Me.AdventureToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.AdventureToolStripMenuItem.Text = "Adventure"
'
'ActionToolStripMenuItem
'
Me.ActionToolStripMenuItem.Name = "ActionToolStripMenuItem"
Me.ActionToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.ActionToolStripMenuItem.Text = "Action"
'
'RoleplayingToolStripMenuItem
'
Me.RoleplayingToolStripMenuItem.Name = "RoleplayingToolStripMenuItem"
Me.RoleplayingToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.RoleplayingToolStripMenuItem.Text = "Role-playing"
'
'SimulationToolStripMenuItem
'
Me.SimulationToolStripMenuItem.Name = "SimulationToolStripMenuItem"
Me.SimulationToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.SimulationToolStripMenuItem.Text = "Simulation"
'
'StrategyToolStripMenuItem
'
Me.StrategyToolStripMenuItem.Name = "StrategyToolStripMenuItem"
Me.StrategyToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.StrategyToolStripMenuItem.Text = "Strategy"
'
'CasualToolStripMenuItem
'
Me.CasualToolStripMenuItem.Name = "CasualToolStripMenuItem"
Me.CasualToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.CasualToolStripMenuItem.Text = "Casual"
'
'PartyToolStripMenuItem
'
Me.PartyToolStripMenuItem.Name = "PartyToolStripMenuItem"
Me.PartyToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.PartyToolStripMenuItem.Text = "Party"
'
'PuzzleToolStripMenuItem
'
Me.PuzzleToolStripMenuItem.Name = "PuzzleToolStripMenuItem"
Me.PuzzleToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.PuzzleToolStripMenuItem.Text = "Puzzle"
'
'SportsToolStripMenuItem
'
Me.SportsToolStripMenuItem.Name = "SportsToolStripMenuItem"
Me.SportsToolStripMenuItem.Size = New System.Drawing.Size(141, 22)
Me.SportsToolStripMenuItem.Text = "Sports"
'
'SequelToolStripMenuItem
'
Me.SequelToolStripMenuItem.Name = "SequelToolStripMenuItem"
Me.SequelToolStripMenuItem.Size = New System.Drawing.Size(147, 22)
Me.SequelToolStripMenuItem.Text = "Sequel"
'
'NewEngineToolStripMenuItem
'
Me.NewEngineToolStripMenuItem.Name = "NewEngineToolStripMenuItem"
Me.NewEngineToolStripMenuItem.Size = New System.Drawing.Size(147, 22)
Me.NewEngineToolStripMenuItem.Text = "New Engine"
'
'NewPlatformToolStripMenuItem
'
Me.NewPlatformToolStripMenuItem.Name = "NewPlatformToolStripMenuItem"
Me.NewPlatformToolStripMenuItem.Size = New System.Drawing.Size(147, 22)
Me.NewPlatformToolStripMenuItem.Text = "New Platform"
'
'GroupBox7
'
Me.GroupBox7.Controls.Add(Me.EmployeeSalaries)
Me.GroupBox7.Controls.Add(Me.ListBox6)
Me.GroupBox7.Location = New System.Drawing.Point(872, 265)
Me.GroupBox7.Name = "GroupBox7"
Me.GroupBox7.Size = New System.Drawing.Size(168, 100)
Me.GroupBox7.TabIndex = 12
Me.GroupBox7.TabStop = False
Me.GroupBox7.Text = "Employees"
'
'EmployeeSalaries
'
Me.EmployeeSalaries.AutoSize = True
Me.EmployeeSalaries.Location = New System.Drawing.Point(143, 7)
Me.EmployeeSalaries.Name = "EmployeeSalaries"
Me.EmployeeSalaries.Size = New System.Drawing.Size(25, 13)
Me.EmployeeSalaries.TabIndex = 1
Me.EmployeeSalaries.Text = "100"
'
'ListBox6
'
Me.ListBox6.FormattingEnabled = True
Me.ListBox6.Items.AddRange(New Object() {"Name,Position,Pay,Artistry,ArtPotential,Tech,TechPotential,Speed,SpeedPotential,H" & _
"appiness,Stress,StressMax"})
Me.ListBox6.Location = New System.Drawing.Point(0, 19)
Me.ListBox6.Name = "ListBox6"
Me.ListBox6.Size = New System.Drawing.Size(162, 82)
Me.ListBox6.TabIndex = 0
'
'GroupBox8
'
Me.GroupBox8.Controls.Add(Me.CoName2)
Me.GroupBox8.Controls.Add(Me.CoName)
Me.GroupBox8.Controls.Add(Me.Companies)
Me.GroupBox8.Controls.Add(Me.GroupBox4)
Me.GroupBox8.Location = New System.Drawing.Point(1046, 17)
Me.GroupBox8.Name = "GroupBox8"
Me.GroupBox8.Size = New System.Drawing.Size(216, 100)
Me.GroupBox8.TabIndex = 13
Me.GroupBox8.TabStop = False
Me.GroupBox8.Text = "Other Companies"
'
'CoName2
'
Me.CoName2.FormattingEnabled = True
Me.CoName2.Items.AddRange(New Object() {"Studios", "Games", "Gaming", "Entertainment", "Media", "Realms", "Productions", "Software", "Soft", "Creations", "Interactive"})
Me.CoName2.Location = New System.Drawing.Point(80, 68)
Me.CoName2.Name = "CoName2"
Me.CoName2.Size = New System.Drawing.Size(77, 30)
Me.CoName2.TabIndex = 9
'
'CoName
'
Me.CoName.FormattingEnabled = True
Me.CoName.Items.AddRange(New Object() {"Krehn", "Brow", "Pint", "Revolve", "Smash", "Area", "Candle", "Dogsled", "Observation", "Year", "Duck", "Foam", "Hawk", "Neon", "Teller", "Cry", "Fear", "Wolf", "Glider", "Health", "Measure", "October", "Tuna", "Change", "Kendo", "Porter", "Seagull", "Swallow", "Front", "Orange", "Oval", "Scene", "Hydrogen", "Overcoat", "Packet", "Potato", "Thunder", "Wound", "Hat", "Accelerate", "Balance", "Coast", "Bell", "Smash", "Sail", "Fog", "Spark", "Angle", "War", "Spider", "Cannon", "Creature", "Attack", "Wire", "Wave", "Brick", "Rail", "Wind", "Odin", "Loki", "Zeus", "Thor", "Baldr", "Hell", "Venus", "Mars", "Jupiter", "Sun", "Mercury", "Saturn", "Pluto", "Ares", "Apollo", "Athena", "Hades", "Amun", "Ra", "Diverse", "Viking", "Avalanche", "McKinley", "Denali", "Mauna Kea", "Whitney", "Mitchell", "Washington", "Rainier", "Elbert", "Shishaldin ", "Volcano", "Tanaga", "Chamberlin", "Shasta", "Gannett Peak", "Osborn", "Igikpak", "Humphreys Peak", "Wheeler Peak", "Vsevidof", "Veniaminof", "Kawaikini", "Dillingham", "Hall Island", "Tooth Benchmark", "Spruce Knob", "Kings Peak", "Sierra Blanca", "San Gorgonio", "Katahdin", "Borah Peak[", "Roberts", "Cloud Peak", "Harney Peak", "Slide", "Griggs", "Charleston Peak", "Junipero Serra", "Baker", "Marcy", "Hayes", "Marcus Baker", "Sacajawea", "Steens", "Fairweather", "Delano Peak", "Tozi", "Olympus", "Blanca Peak"})
Me.CoName.Location = New System.Drawing.Point(1, 68)
Me.CoName.Name = "CoName"
Me.CoName.Size = New System.Drawing.Size(77, 30)
Me.CoName.TabIndex = 8
'
'Companies
'
Me.Companies.FormattingEnabled = True
Me.Companies.Items.AddRange(New Object() {"Company Name,Sales,TimeBetween,Expenses,Cash,Strategy"})
Me.Companies.Location = New System.Drawing.Point(0, 19)
Me.Companies.Name = "Companies"
Me.Companies.Size = New System.Drawing.Size(210, 43)
Me.Companies.TabIndex = 0
'
'Timer2
'
'
'GroupBox11
'
Me.GroupBox11.Controls.Add(Me.ProgressBar2)
Me.GroupBox11.Controls.Add(Me.Label8)
Me.GroupBox11.Controls.Add(Me.Label6)
Me.GroupBox11.Controls.Add(Me.ProgressBar1)
Me.GroupBox11.Location = New System.Drawing.Point(676, 124)
Me.GroupBox11.Name = "GroupBox11"
Me.GroupBox11.Size = New System.Drawing.Size(184, 80)
Me.GroupBox11.TabIndex = 4
Me.GroupBox11.TabStop = False
Me.GroupBox11.Text = "Game Development"
Me.GroupBox11.Visible = False
'
'ProgressBar2
'
Me.ProgressBar2.Location = New System.Drawing.Point(5, 39)
Me.ProgressBar2.Name = "ProgressBar2"
Me.ProgressBar2.Size = New System.Drawing.Size(171, 13)
Me.ProgressBar2.TabIndex = 4
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.Location = New System.Drawing.Point(51, 22)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(77, 13)
Me.Label8.TabIndex = 3
Me.Label8.Text = "Pre-Production"
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Location = New System.Drawing.Point(6, 22)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(38, 13)
Me.Label6.TabIndex = 2
Me.Label6.Text = "Stage:"
'
'ProgressBar1
'
Me.ProgressBar1.Location = New System.Drawing.Point(6, 54)
Me.ProgressBar1.Name = "ProgressBar1"
Me.ProgressBar1.Size = New System.Drawing.Size(170, 20)
Me.ProgressBar1.Step = 1
Me.ProgressBar1.TabIndex = 1
'
'Button3
'
Me.Button3.Location = New System.Drawing.Point(1168, 499)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(75, 23)
Me.Button3.TabIndex = 54
Me.Button3.Text = "Test shit"
Me.Button3.UseVisualStyleBackColor = True
'
'Button4
'
Me.Button4.Location = New System.Drawing.Point(1087, 499)
Me.Button4.Name = "Button4"
Me.Button4.Size = New System.Drawing.Size(75, 23)
Me.Button4.TabIndex = 53
Me.Button4.Text = "Manage"
Me.Button4.UseVisualStyleBackColor = True
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(834, 501)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(247, 20)
Me.TextBox1.TabIndex = 55
'
'GroupBox17
'
Me.GroupBox17.Controls.Add(Me.Label13)
Me.GroupBox17.Location = New System.Drawing.Point(376, 569)
Me.GroupBox17.Name = "GroupBox17"
Me.GroupBox17.Size = New System.Drawing.Size(71, 50)
Me.GroupBox17.TabIndex = 8
Me.GroupBox17.TabStop = False
Me.GroupBox17.Text = "Gameplay"
Me.GroupBox17.Visible = False
'
'Label13
'
Me.Label13.AutoSize = True
Me.Label13.Font = New System.Drawing.Font("Microsoft Sans Serif", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label13.Location = New System.Drawing.Point(6, 16)
Me.Label13.Name = "Label13"
Me.Label13.Size = New System.Drawing.Size(59, 31)
Me.Label13.TabIndex = 0
Me.Label13.Text = "999"
'
'GroupBox15
'
Me.GroupBox15.Controls.Add(Me.Label12)
Me.GroupBox15.Location = New System.Drawing.Point(530, 569)
Me.GroupBox15.Name = "GroupBox15"
Me.GroupBox15.Size = New System.Drawing.Size(71, 50)
Me.GroupBox15.TabIndex = 7
Me.GroupBox15.TabStop = False
Me.GroupBox15.Text = "Replay"
Me.GroupBox15.Visible = False
'
'Label12
'
Me.Label12.AutoSize = True
Me.Label12.Font = New System.Drawing.Font("Microsoft Sans Serif", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label12.Location = New System.Drawing.Point(6, 16)
Me.Label12.Name = "Label12"
Me.Label12.Size = New System.Drawing.Size(59, 31)
Me.Label12.TabIndex = 0
Me.Label12.Text = "999"
'
'GroupBox14
'
Me.GroupBox14.Controls.Add(Me.Label11)
Me.GroupBox14.Location = New System.Drawing.Point(222, 566)
Me.GroupBox14.Name = "GroupBox14"
Me.GroupBox14.Size = New System.Drawing.Size(71, 53)
Me.GroupBox14.TabIndex = 6
Me.GroupBox14.TabStop = False
Me.GroupBox14.Text = "Design"
Me.GroupBox14.Visible = False
'
'Label11
'
Me.Label11.AutoSize = True
Me.Label11.Font = New System.Drawing.Font("Microsoft Sans Serif", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label11.Location = New System.Drawing.Point(6, 16)
Me.Label11.Name = "Label11"
Me.Label11.Size = New System.Drawing.Size(59, 31)
Me.Label11.TabIndex = 0
Me.Label11.Text = "999"
'
'GroupBox13
'
Me.GroupBox13.Controls.Add(Me.Label10)
Me.GroupBox13.Location = New System.Drawing.Point(453, 569)
Me.GroupBox13.Name = "GroupBox13"
Me.GroupBox13.Size = New System.Drawing.Size(71, 50)
Me.GroupBox13.TabIndex = 5
Me.GroupBox13.TabStop = False
Me.GroupBox13.Text = "Story"
Me.GroupBox13.Visible = False
'
'Label10
'
Me.Label10.AutoSize = True
Me.Label10.Font = New System.Drawing.Font("Microsoft Sans Serif", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label10.Location = New System.Drawing.Point(6, 16)
Me.Label10.Name = "Label10"
Me.Label10.Size = New System.Drawing.Size(59, 31)
Me.Label10.TabIndex = 0
Me.Label10.Text = "999"
'
'GroupBox12
'
Me.GroupBox12.Controls.Add(Me.Label9)
Me.GroupBox12.Location = New System.Drawing.Point(299, 569)
Me.GroupBox12.Name = "GroupBox12"
Me.GroupBox12.Size = New System.Drawing.Size(71, 50)
Me.GroupBox12.TabIndex = 4
Me.GroupBox12.TabStop = False
Me.GroupBox12.Text = "Art"
Me.GroupBox12.Visible = False
'
'Label9
'
Me.Label9.AutoSize = True
Me.Label9.Font = New System.Drawing.Font("Microsoft Sans Serif", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label9.Location = New System.Drawing.Point(6, 16)
Me.Label9.Name = "Label9"
Me.Label9.Size = New System.Drawing.Size(59, 31)
Me.Label9.TabIndex = 0
Me.Label9.Text = "999"
'
'Reputation
'
Me.Reputation.AutoSize = True
Me.Reputation.BackColor = System.Drawing.Color.Transparent
Me.Reputation.Location = New System.Drawing.Point(1222, 526)
Me.Reputation.Name = "Reputation"
Me.Reputation.Size = New System.Drawing.Size(13, 13)
Me.Reputation.TabIndex = 3
Me.Reputation.Text = "0"
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.BackColor = System.Drawing.Color.Transparent
Me.Label5.Location = New System.Drawing.Point(1154, 525)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(62, 13)
Me.Label5.TabIndex = 2
Me.Label5.Text = "Reputation:"
'
'GroupBox16
'
Me.GroupBox16.Controls.Add(Me.OldEngines)
Me.GroupBox16.Controls.Add(Me.EngineNames)
Me.GroupBox16.Controls.Add(Me.NewEngines)
Me.GroupBox16.Location = New System.Drawing.Point(872, 156)
Me.GroupBox16.Name = "GroupBox16"
Me.GroupBox16.Size = New System.Drawing.Size(168, 100)
Me.GroupBox16.TabIndex = 15
Me.GroupBox16.TabStop = False
Me.GroupBox16.Text = "Game Engine"
'
'OldEngines
'
Me.OldEngines.FormattingEnabled = True
Me.OldEngines.Items.AddRange(New Object() {"Console,Company,Tech#,Useability,ReleaseDate"})
Me.OldEngines.Location = New System.Drawing.Point(71, 11)
Me.OldEngines.Name = "OldEngines"
Me.OldEngines.Size = New System.Drawing.Size(65, 56)
Me.OldEngines.TabIndex = 3
'
'EngineNames
'
Me.EngineNames.FormattingEnabled = True
Me.EngineNames.Items.AddRange(New Object() {"American", "Ash", "Aspen ", "Basswood ", "Bayberry ", "Beech", "Big-Toothed ", "Birch", "Bitternut", "Black ", "Catalpa ", "Cedar", "Cherry ", "Chestnut", "Common ", "Cottonwood", "Dogwood ", "Eastern", "Elm ", "Fire", "Flowering ", "Ginkgo ", "Gray ", "Gum ", "Heaven ", "Hemlock", "Hickory ", "Hop", "Hornbeam", "Horse ", "Ironwood", "Larch ", "Laurel", "Locust", "Maple", "Mountain ", "Mulberry ", "Musclewood ", "Norway", "Oak", "Pear", "Pin", "Pine", "Red", "Rhododendron ", "Sassafrass ", "Shadbush ", "Shagbark", "Shining ", "Silky", "Smooth", "Staghorn", "Sugar ", "Sumac", "Sweet ", "Sycamore ", "White ", "Yew", "Riverhurst", "Morris", "Cheek", "Bingo", "Sun", "Gripe", "Robinhood", "Sprite", "Tennis", "Naicam", "Institute", "Corfu", "Lorida", "Pensacola", "Republican", "Fort", "Bumphead", "Noon", "Firetown", "Hanging", "Town", "Holopaw", "Big", "Fargo", "Little", "Mermaid", "Defiance", "Hookers", "Quoddy", "Greasy", "Challenge", "Blue", "Whitebreast", "Soaptown", "Crumpler", "Kankakee", "Whitby", "Coats", "Peewee", "Disko", "Scarce", "Agenda", "Crook", "Whitecourt", "Puttstown", "Ko", "Soft", "White", "Grandview", "Homochitto", "Ding", "Orient", "Poverty", "Yznaga", "Peekamoose", "Blackfalds", "Springside", "Coronach", "Why", "Beaukiss", "Coffee", "Tooktocaugee", "Putty", "Gipsy", "Bell", "Michopdo", "Ohogamiut", "Nix", "Redeye", "Saugeen", "Firebrick", "Indianbone", "Earl", "Toto", "Pie", "Laboratory", "Frink", "High", "Tiger", "Hawarden", "Pronto", "Parrsboro", "Cheddar", "Kentucky", "Hill", "Turnagain", "Egorkovskoi", "Fate", "Waxpool", "Alabama", "Wounded", "Telbasta", "Muitzeskill", "Cheek", "Troublesome", "Pocataligo", "Anaquassacook", "Gibbons", "Buttermilk", "Cando", "Andesite", "Andesite", "Anorthosite", "Basalt", "Diorite", "Dunite", "Felsite", "Gabbro", "Granite", "Granodiorite ", "Monzonite ", "Obsidian ", "Peridotite ", "Pumice ", "Pyroxenite ", "Rhyolite ", "Rhyolite", "Scoria ", "Syenite ", "Vocanic", "Dereham", "Startford", "Brading", "Oxford", "Bungay", "Combe", "Bushbury", "Basingstoke", "Chester", "Milton", "Chichester", "Grantham", "Looe", "Berkeley", "Burnley", "Escomb", "Ely", "Hedon", "Westminster", "Tong", "Gilling", "Walsingham", "Lewes", "Evesham", "Manorbier", "Winchcester", "Sheffield", "Westbury", "Barfreston", "Wycombe", "Midurst", "Wolverhampton", "Morecambe", "Witham", "Greenwich", "Carnarvon", "Crucis", "Kirdford", "Wantage", "Plympton", "Woodstock", "Shaftesbury", "Grinstead", "Saurm", "Bramber", "Wigmore", "Brancaster", "Devizes", "Minster", "Aluminum", "Amphibole", "Andesite", "Antimony", "Aragonite", "Arsenic", "Asbestos", "Augite", "Aurichalcite", "Autunite", "Barium", "Basalt", "Bauxite", "Beryllium", "Biotite", "Bismuth", "Boron", "Bromine", "Cadmium", "Calcite", "Cement", "Cesium", "Chert", "Chertjas", "Chlorite", "Chromium", "Clays", "Coal", "Cobalt", "Colemanite", "Columbite", "Conglomerate", "Copper", "Corundum", "Creeoite", "Crushed Stone", "Diamond", "Diatomite", "Dimension Stone", "Diorite", "Dolomite", "Feldspar", "Fluorite", "Gabbro", "Galena", "Gallium", "Garnet", "Garnierite", "Geaoksutite", "Germanium", "Gold", "Granite", "Graphite", "Gypsum", "Hafnium", "Helium", "Indium", "Iodine", "Iron", "Kaolin", "Kyanite", "Lead", "Limestone", "Lithium", "Manganese", "Mercury", "Mica", "Molybdenum", "Nickel", "Nitrogen", "Obsidian", "Peat", "Perlite", "Phosphate Rock", "Plagioclase", "Platinum", "Potash", "Pumice", "Pyrite", "Quartz", "Quartzite", "Rare Earths", "Rhenium", "Rubidium", "Rutile", "Salt", "Sand and Gravel", "Sandstone", "Scandium", "Selenium", "Shale", "Silica", "Silver", "Slate", "Sodium Sulfate", "Strontium", "Sulfur", "Talc", "Tantalum", "Tellurium", "Thallium", "Thorium", "Tin", "Titanium", "Traprock", "Tungsten", "Vanadium", "Vermiculite", "Zeolites", "Zinc", "Zirconium"})
Me.EngineNames.Location = New System.Drawing.Point(11, 73)
Me.EngineNames.Name = "EngineNames"
Me.EngineNames.Size = New System.Drawing.Size(143, 17)
Me.EngineNames.TabIndex = 2
'
'NewEngines
'
Me.NewEngines.FormattingEnabled = True
Me.NewEngines.Items.AddRange(New Object() {"Console,Company,Tech#,Useability,ReleaseDate"})
Me.NewEngines.Location = New System.Drawing.Point(0, 14)
Me.NewEngines.Name = "NewEngines"
Me.NewEngines.Size = New System.Drawing.Size(65, 56)
Me.NewEngines.TabIndex = 0
'
'GroupBox18
'
Me.GroupBox18.Controls.Add(Me.LastNames)
Me.GroupBox18.Controls.Add(Me.FFirstNames)
Me.GroupBox18.Controls.Add(Me.MFirstNames)
Me.GroupBox18.Location = New System.Drawing.Point(1083, 249)
Me.GroupBox18.Name = "GroupBox18"
Me.GroupBox18.Size = New System.Drawing.Size(166, 83)
Me.GroupBox18.TabIndex = 16
Me.GroupBox18.TabStop = False
Me.GroupBox18.Text = "People Names"
'
'LastNames
'
Me.LastNames.FormattingEnabled = True
Me.LastNames.Items.AddRange(New Object() {"SMITH", "JOHNSON", "WILLIAMS", "JONES", "BROWN", "DAVIS", "MILLER", "WILSON", "MOORE", "TAYLOR", "ANDERSON", "THOMAS", "JACKSON", "WHITE", "HARRIS", "MARTIN", "THOMPSON", "GARCIA", "MARTINEZ", "ROBINSON", "CLARK", "RODRIGUEZ", "LEWIS", "LEE", "WALKER", "HALL", "ALLEN", "YOUNG", "HERNANDEZ", "KING", "WRIGHT", "LOPEZ", "HILL", "SCOTT", "GREEN", "ADAMS", "BAKER", "GONZALEZ", "NELSON", "CARTER", "MITCHELL", "PEREZ", "ROBERTS", "TURNER", "PHILLIPS", "CAMPBELL", "PARKER", "EVANS", "EDWARDS", "COLLINS", "STEWART", "SANCHEZ", "MORRIS", "ROGERS", "REED", "COOK", "MORGAN", "BELL", "MURPHY", "BAILEY", "RIVERA", "COOPER", "RICHARDSON", "COX", "HOWARD", "WARD", "TORRES", "PETERSON", "GRAY", "RAMIREZ", "JAMES", "WATSON", "BROOKS", "KELLY", "SANDERS", "PRICE", "BENNETT", "WOOD", "BARNES", "ROSS", "HENDERSON", "COLEMAN", "JENKINS", "PERRY", "POWELL", "LONG", "PATTERSON", "HUGHES", "FLORES", "WASHINGTON", "BUTLER", "SIMMONS", "FOSTER", "GONZALES", "BRYANT", "ALEXANDER", "RUSSELL", "GRIFFIN", "DIAZ", "HAYES", "MYERS", "FORD", "HAMILTON", "GRAHAM", "SULLIVAN", "WALLACE", "WOODS", "COLE", "WEST", "JORDAN", "OWENS", "REYNOLDS", "FISHER", "ELLIS", "HARRISON", "GIBSON", "MCDONALD", "CRUZ", "MARSHALL", "ORTIZ", "GOMEZ", "MURRAY", "FREEMAN", "WELLS", "WEBB", "SIMPSON", "STEVENS", "TUCKER", "PORTER", "HUNTER", "HICKS", "CRAWFORD", "HENRY", "BOYD", "MASON", "MORALES", "KENNEDY", "WARREN", "DIXON", "RAMOS", "REYES", "BURNS", "GORDON", "SHAW", "HOLMES", "RICE", "ROBERTSON", "HUNT", "BLACK", "DANIELS", "PALMER", "MILLS", "NICHOLS", "GRANT", "KNIGHT", "FERGUSON", "ROSE", "STONE", "HAWKINS", "DUNN", "PERKINS", "HUDSON", "SPENCER", "GARDNER", "STEPHENS", "PAYNE", "PIERCE", "BERRY", "MATTHEWS", "ARNOLD", "WAGNER", "WILLIS", "RAY", "WATKINS", "OLSON", "CARROLL", "DUNCAN", "SNYDER", "HART", "CUNNINGHAM", "BRADLEY", "LANE", "ANDREWS", "RUIZ", "HARPER", "FOX", "RILEY", "ARMSTRONG", "CARPENTER", "WEAVER", "GREENE", "LAWRENCE", "ELLIOTT", "CHAVEZ", "SIMS", "AUSTIN", "PETERS", "KELLEY", "FRANKLIN", "LAWSON", "FIELDS", "GUTIERREZ", "RYAN", "SCHMIDT", "CARR", "VASQUEZ", "CASTILLO", "WHEELER", "CHAPMAN", "OLIVER", "MONTGOMERY", "RICHARDS", "WILLIAMSON", "JOHNSTON", "BANKS", "MEYER", "BISHOP", "MCCOY", "HOWELL", "ALVAREZ", "MORRISON", "HANSEN", "FERNANDEZ", "GARZA", "HARVEY", "LITTLE", "BURTON", "STANLEY", "NGUYEN", "GEORGE", "JACOBS", "REID", "KIM", "FULLER", "LYNCH", "DEAN", "GILBERT", "GARRETT", "ROMERO", "WELCH", "LARSON", "FRAZIER", "BURKE", "HANSON", "DAY", "MENDOZA", "MORENO", "BOWMAN", "MEDINA", "FOWLER", "BREWER", "HOFFMAN", "CARLSON", "SILVA", "PEARSON", "HOLLAND", "DOUGLAS", "FLEMING", "JENSEN", "VARGAS", "BYRD", "DAVIDSON", "HOPKINS", "MAY", "TERRY", "HERRERA", "WADE", "SOTO", "WALTERS", "CURTIS", "NEAL", "CALDWELL", "LOWE", "JENNINGS", "BARNETT", "GRAVES", "JIMENEZ", "HORTON", "SHELTON", "BARRETT", "OBRIEN", "CASTRO", "SUTTON", "GREGORY", "MCKINNEY", "LUCAS", "MILES", "CRAIG", "RODRIQUEZ", "CHAMBERS", "HOLT", "LAMBERT", "FLETCHER", "WATTS", "BATES", "HALE", "RHODES", "PENA", "BECK", "NEWMAN", "HAYNES", "MCDANIEL", "MENDEZ", "BUSH", "VAUGHN", "PARKS", "DAWSON", "SANTIAGO", "NORRIS", "HARDY", "LOVE", "STEELE", "CURRY", "POWERS", "SCHULTZ", "BARKER", "GUZMAN", "PAGE", "MUNOZ", "BALL", "KELLER", "CHANDLER", "WEBER", "LEONARD", "WALSH", "LYONS", "RAMSEY", "WOLFE", "SCHNEIDER", "MULLINS", "BENSON", "SHARP", "BOWEN", "DANIEL", "BARBER", "CUMMINGS", "HINES", "BALDWIN", "GRIFFITH", "VALDEZ", "HUBBARD", "SALAZAR", "REEVES", "WARNER", "STEVENSON", "BURGESS", "SANTOS", "TATE", "CROSS", "GARNER", "MANN", "MACK", "MOSS", "THORNTON", "DENNIS", "MCGEE", "FARMER", "DELGADO", "AGUILAR", "VEGA", "GLOVER", "MANNING", "COHEN", "HARMON", "RODGERS", "ROBBINS", "NEWTON", "TODD", "BLAIR", "HIGGINS", "INGRAM", "REESE", "CANNON", "STRICKLAND", "TOWNSEND", "POTTER", "GOODWIN", "WALTON", "ROWE", "HAMPTON", "ORTEGA", "PATTON", "SWANSON", "JOSEPH", "FRANCIS", "GOODMAN", "MALDONADO", "YATES", "BECKER", "ERICKSON", "HODGES", "RIOS", "CONNER", "ADKINS", "WEBSTER", "NORMAN", "MALONE", "HAMMOND", "FLOWERS", "COBB", "MOODY", "QUINN", "BLAKE", "MAXWELL", "POPE", "FLOYD", "OSBORNE", "PAUL", "MCCARTHY", "GUERRERO", "LINDSEY", "ESTRADA", "SANDOVAL", "GIBBS", "TYLER", "GROSS", "FITZGERALD", "STOKES", "DOYLE", "SHERMAN", "SAUNDERS", "WISE", "COLON", "GILL", "ALVARADO", "GREER", "PADILLA", "SIMON", "WATERS", "NUNEZ", "BALLARD", "SCHWARTZ", "MCBRIDE", "HOUSTON", "CHRISTENSEN", "KLEIN", "PRATT", "BRIGGS", "PARSONS", "MCLAUGHLIN", "ZIMMERMAN", "FRENCH", "BUCHANAN", "MORAN", "COPELAND", "ROY", "PITTMAN", "BRADY", "MCCORMICK", "HOLLOWAY", "BROCK", "POOLE", "FRANK", "LOGAN", "OWEN", "BASS", "MARSH", "DRAKE", "WONG", "JEFFERSON", "PARK", "MORTON", "ABBOTT", "SPARKS", "PATRICK", "NORTON", "HUFF", "CLAYTON", "MASSEY", "LLOYD", "FIGUEROA", "CARSON", "BOWERS", "ROBERSON", "BARTON", "TRAN", "LAMB", "HARRINGTON", "CASEY", "BOONE", "CORTEZ", "CLARKE", "MATHIS", "SINGLETON", "WILKINS", "CAIN", "BRYAN", "UNDERWOOD", "HOGAN", "MCKENZIE", "COLLIER", "LUNA", "PHELPS", "MCGUIRE", "ALLISON", "BRIDGES", "WILKERSON", "NASH", "SUMMERS", "ATKINS"})
Me.LastNames.Location = New System.Drawing.Point(18, 47)
Me.LastNames.Name = "LastNames"
Me.LastNames.Size = New System.Drawing.Size(132, 30)
Me.LastNames.TabIndex = 2
'
'FFirstNames
'
Me.FFirstNames.FormattingEnabled = True
Me.FFirstNames.Items.AddRange(New Object() {"MARY", "PATRICIA", "LINDA", "BARBARA", "ELIZABETH", "JENNIFER", "MARIA", "SUSAN", "MARGARET", "DOROTHY", "LISA", "NANCY", "KAREN", "BETTY", "HELEN", "SANDRA", "DONNA", "CAROL", "RUTH", "SHARON", "MICHELLE", "LAURA", "SARAH", "KIMBERLY", "DEBORAH", "JESSICA", "SHIRLEY", "CYNTHIA", "ANGELA", "MELISSA", "BRENDA", "AMY", "ANNA", "REBECCA", "VIRGINIA", "KATHLEEN", "PAMELA", "MARTHA", "DEBRA", "AMANDA", "STEPHANIE", "CAROLYN", "CHRISTINE", "MARIE", "JANET", "CATHERINE", "FRANCES", "ANN", "JOYCE", "DIANE", "ALICE", "JULIE", "HEATHER", "TERESA", "DORIS", "GLORIA", "EVELYN", "JEAN", "CHERYL", "MILDRED", "KATHERINE", "JOAN", "ASHLEY", "JUDITH", "ROSE", "JANICE", "KELLY", "NICOLE", "JUDY", "CHRISTINA", "KATHY", "THERESA", "BEVERLY", "DENISE", "TAMMY", "IRENE", "JANE", "LORI", "RACHEL", "MARILYN", "ANDREA", "KATHRYN", "LOUISE", "SARA", "ANNE", "JACQUELINE", "WANDA", "BONNIE", "JULIA", "RUBY", "LOIS", "TINA", "PHYLLIS", "NORMA", "PAULA", "DIANA", "ANNIE", "LILLIAN", "EMILY", "ROBIN", "PEGGY", "CRYSTAL", "GLADYS", "RITA", "DAWN", "CONNIE", "FLORENCE", "TRACY", "EDNA", "TIFFANY", "CARMEN", "ROSA", "CINDY", "GRACE", "WENDY", "VICTORIA", "EDITH", "KIM", "SHERRY", "SYLVIA", "JOSEPHINE", "THELMA", "SHANNON", "SHEILA", "ETHEL", "ELLEN", "ELAINE", "MARJORIE", "CARRIE", "CHARLOTTE", "MONICA", "ESTHER", "PAULINE", "EMMA", "JUANITA", "ANITA", "RHONDA", "HAZEL", "AMBER", "EVA", "DEBBIE", "APRIL", "LESLIE", "CLARA", "LUCILLE", "JAMIE", "JOANNE", "ELEANOR", "VALERIE", "DANIELLE", "MEGAN", "ALICIA", "SUZANNE", "MICHELE", "GAIL", "BERTHA", "DARLENE", "VERONICA", "JILL", "ERIN", "GERALDINE", "LAUREN", "CATHY", "JOANN", "LORRAINE", "LYNN", "SALLY", "REGINA", "ERICA", "BEATRICE", "DOLORES", "BERNICE", "AUDREY", "YVONNE", "ANNETTE", "JUNE", "SAMANTHA", "MARION", "DANA", "STACY", "ANA", "RENEE", "IDA", "VIVIAN", "ROBERTA", "HOLLY", "BRITTANY", "MELANIE", "LORETTA", "YOLANDA", "JEANETTE", "LAURIE", "KATIE", "KRISTEN", "VANESSA", "ALMA", "SUE", "ELSIE", "BETH", "JEANNE", "VICKI", "CARLA", "TARA", "ROSEMARY", "EILEEN", "TERRI", "GERTRUDE", "LUCY", "TONYA", "ELLA", "STACEY", "WILMA", "GINA", "KRISTIN", "JESSIE", "NATALIE", "AGNES", "VERA", "WILLIE", "CHARLENE", "BESSIE", "DELORES", "MELINDA", "PEARL", "ARLENE", "MAUREEN", "COLLEEN", "ALLISON", "TAMARA", "JOY", "GEORGIA", "CONSTANCE", "LILLIE", "CLAUDIA", "JACKIE", "MARCIA", "TANYA", "NELLIE", "MINNIE", "MARLENE", "HEIDI", "GLENDA", "LYDIA", "VIOLA", "COURTNEY", "MARIAN", "STELLA", "CAROLINE", "DORA", "JO", "VICKIE", "MATTIE", "TERRY", "MAXINE", "IRMA", "MABEL", "MARSHA", "MYRTLE", "LENA", "CHRISTY", "DEANNA", "PATSY", "HILDA", "GWENDOLYN", "JENNIE", "NORA", "MARGIE", "NINA", "CASSANDRA", "LEAH", "PENNY", "KAY", "PRISCILLA", "NAOMI", "CAROLE", "BRANDY", "OLGA", "BILLIE", "DIANNE", "TRACEY", "LEONA", "JENNY", "FELICIA", "SONIA", "MIRIAM", "VELMA", "BECKY", "BOBBIE", "VIOLET", "KRISTINA", "TONI", "MISTY", "MAE", "SHELLY", "DAISY", "RAMONA", "SHERRI", "ERIKA", "KATRINA", "CLAIRE"})
Me.FFirstNames.Location = New System.Drawing.Point(79, 15)
Me.FFirstNames.Name = "FFirstNames"
Me.FFirstNames.Size = New System.Drawing.Size(71, 30)
Me.FFirstNames.TabIndex = 1
'
'MFirstNames
'
Me.MFirstNames.FormattingEnabled = True
Me.MFirstNames.Items.AddRange(New Object() {"JAMES", "JOHN", "ROBERT", "MICHAEL", "WILLIAM", "DAVID", "RICHARD", "CHARLES", "JOSEPH", "THOMAS", "CHRISTOPHER", "DANIEL", "PAUL", "MARK", "DONALD", "GEORGE", "KENNETH", "STEVEN", "EDWARD", "BRIAN", "RONALD", "ANTHONY", "KEVIN", "JASON", "MATTHEW", "GARY", "TIMOTHY", "JOSE", "LARRY", "JEFFREY", "FRANK", "SCOTT", "ERIC", "STEPHEN", "ANDREW", "RAYMOND", "GREGORY", "JOSHUA", "JERRY", "DENNIS", "WALTER", "PATRICK", "PETER", "HAROLD", "DOUGLAS", "HENRY", "CARL", "ARTHUR", "RYAN", "ROGER", "JOE", "JUAN", "JACK", "ALBERT", "JONATHAN", "JUSTIN", "TERRY", "GERALD", "KEITH", "SAMUEL", "WILLIE", "RALPH", "LAWRENCE", "NICHOLAS", "ROY", "BENJAMIN", "BRUCE", "BRANDON", "ADAM", "HARRY", "FRED", "WAYNE", "BILLY", "STEVE", "LOUIS", "JEREMY", "AARON", "RANDY", "HOWARD", "EUGENE", "CARLOS", "RUSSELL", "BOBBY", "VICTOR", "MARTIN", "ERNEST", "PHILLIP", "TODD", "JESSE", "CRAIG", "ALAN", "SHAWN", "CLARENCE", "SEAN", "PHILIP", "CHRIS", "JOHNNY", "EARL", "JIMMY", "ANTONIO", "DANNY", "BRYAN", "TONY", "LUIS", "MIKE", "STANLEY", "LEONARD", "NATHAN", "DALE", "MANUEL", "RODNEY", "CURTIS", "NORMAN", "ALLEN", "MARVIN", "VINCENT", "GLENN", "JEFFERY", "TRAVIS", "JEFF", "CHAD", "JACOB", "LEE", "MELVIN", "ALFRED", "KYLE", "FRANCIS", "BRADLEY", "JESUS", "HERBERT", "FREDERICK", "RAY", "JOEL", "EDWIN", "DON", "EDDIE", "RICKY", "TROY", "RANDALL", "BARRY", "ALEXANDER", "BERNARD", "MARIO", "LEROY", "FRANCISCO", "MARCUS", "MICHEAL", "THEODORE", "CLIFFORD", "MIGUEL", "OSCAR", "JAY", "JIM", "TOM", "CALVIN", "ALEX", "JON", "RONNIE", "BILL", "LLOYD", "TOMMY", "LEON", "DEREK", "WARREN", "DARRELL", "JEROME", "FLOYD", "LEO", "ALVIN", "TIM", "WESLEY", "GORDON", "DEAN", "GREG", "JORGE", "DUSTIN", "PEDRO", "DERRICK", "DAN", "LEWIS", "ZACHARY", "COREY", "HERMAN", "MAURICE", "VERNON", "ROBERTO", "CLYDE", "GLEN", "HECTOR", "SHANE", "RICARDO", "SAM", "RICK", "LESTER", "BRENT", "RAMON", "CHARLIE", "TYLER", "GILBERT", "GENE", "MARC", "REGINALD", "RUBEN", "BRETT", "ANGEL", "NATHANIEL", "RAFAEL", "LESLIE", "EDGAR", "MILTON", "RAUL", "BEN", "CHESTER", "CECIL", "DUANE", "FRANKLIN", "ANDRE", "ELMER", "BRAD", "GABRIEL", "RON", "MITCHELL", "ROLAND", "ARNOLD", "HARVEY", "JARED", "ADRIAN", "KARL", "CORY", "CLAUDE", "ERIK", "DARRYL", "JAMIE", "NEIL", "JESSIE", "CHRISTIAN", "JAVIER", "FERNANDO", "CLINTON", "TED", "MATHEW", "TYRONE", "DARREN", "LONNIE", "LANCE", "CODY", "JULIO", "KELLY", "KURT", "ALLAN", "NELSON", "GUY", "CLAYTON", "HUGH", "MAX", "DWAYNE", "DWIGHT", "ARMANDO", "FELIX", "JIMMIE", "EVERETT", "JORDAN", "IAN", "WALLACE", "KEN", "BOB", "JAIME", "CASEY", "ALFREDO", "ALBERTO", "DAVE", "IVAN", "JOHNNIE", "SIDNEY", "BYRON", "JULIAN", "ISAAC", "MORRIS", "CLIFTON", "WILLARD", "DARYL", "ROSS", "VIRGIL", "ANDY", "MARSHALL", "SALVADOR", "PERRY", "KIRK", "SERGIO", "MARION", "TRACY", "SETH", "KENT", "TERRANCE", "RENE", "EDUARDO", "TERRENCE", "ENRIQUE", "FREDDIE", "WADE"})
Me.MFirstNames.Location = New System.Drawing.Point(18, 16)
Me.MFirstNames.Name = "MFirstNames"
Me.MFirstNames.Size = New System.Drawing.Size(69, 30)
Me.MFirstNames.TabIndex = 0
'
'ContextMenuStrip3
'
Me.ContextMenuStrip3.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.HireToolStripMenuItem, Me.FireToolStripMenuItem, Me.ToolStripMenuItem3, Me.OfficeToolStripMenuItem})
Me.ContextMenuStrip3.Name = "ContextMenuStrip3"
Me.ContextMenuStrip3.Size = New System.Drawing.Size(107, 76)
'
'HireToolStripMenuItem
'
Me.HireToolStripMenuItem.Name = "HireToolStripMenuItem"
Me.HireToolStripMenuItem.Size = New System.Drawing.Size(106, 22)
Me.HireToolStripMenuItem.Text = "Hire"
'
'FireToolStripMenuItem
'
Me.FireToolStripMenuItem.Name = "FireToolStripMenuItem"
Me.FireToolStripMenuItem.Size = New System.Drawing.Size(106, 22)
Me.FireToolStripMenuItem.Text = "Fire"
'
'ToolStripMenuItem3
'
Me.ToolStripMenuItem3.Name = "ToolStripMenuItem3"
Me.ToolStripMenuItem3.Size = New System.Drawing.Size(103, 6)
'
'OfficeToolStripMenuItem
'
Me.OfficeToolStripMenuItem.Name = "OfficeToolStripMenuItem"
Me.OfficeToolStripMenuItem.Size = New System.Drawing.Size(106, 22)
Me.OfficeToolStripMenuItem.Text = "Office"
'
'Panel1
'
Me.Panel1.BackColor = System.Drawing.Color.PaleTurquoise
Me.Panel1.Controls.Add(Me.PictureBox3)
Me.Panel1.Controls.Add(Me.Cash)
Me.Panel1.Controls.Add(Me.Label1)
Me.Panel1.Controls.Add(Me.Label14)
Me.Panel1.Controls.Add(Me.Label3)
Me.Panel1.Controls.Add(Me.Hrs)
Me.Panel1.Controls.Add(Me.NewsList)
Me.Panel1.Controls.Add(Me.Label15)
Me.Panel1.Controls.Add(Me.Panel2)
Me.Panel1.Controls.Add(Me.Label4)
Me.Panel1.Controls.Add(Me.TheMonth)
Me.Panel1.Controls.Add(Me.TheWeek)
Me.Panel1.Controls.Add(Me.Button6)
Me.Panel1.Controls.Add(Me.Button5)
Me.Panel1.Controls.Add(Me.TheYear)
Me.Panel1.Controls.Add(Me.PictureBox1)
Me.Panel1.Controls.Add(Me.YourCo)
Me.Panel1.Controls.Add(Me.Button1)
Me.Panel1.Controls.Add(Me.PictureBox2)
Me.Panel1.Location = New System.Drawing.Point(12, 12)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(628, 459)
Me.Panel1.TabIndex = 59
'
'Label14
'
Me.Label14.AutoSize = True
Me.Label14.BackColor = System.Drawing.Color.Transparent
Me.Label14.Location = New System.Drawing.Point(532, 5)
Me.Label14.Name = "Label14"
Me.Label14.Size = New System.Drawing.Size(14, 13)
Me.Label14.TabIndex = 73
Me.Label14.Text = "X"
'
'NewsList
'
Me.NewsList.BackColor = System.Drawing.Color.LightSteelBlue
Me.NewsList.FormattingEnabled = True
Me.NewsList.Location = New System.Drawing.Point(100, 3)
Me.NewsList.Name = "NewsList"
Me.NewsList.Size = New System.Drawing.Size(461, 43)
Me.NewsList.TabIndex = 68
'
'Panel2
'
Me.Panel2.BackColor = System.Drawing.Color.SteelBlue
Me.Panel2.Controls.Add(Me.ListView2)
Me.Panel2.Controls.Add(Me.ListView1)
Me.Panel2.Location = New System.Drawing.Point(255, 52)
Me.Panel2.Name = "Panel2"
Me.Panel2.Size = New System.Drawing.Size(356, 197)
Me.Panel2.TabIndex = 72
Me.Panel2.Visible = False
'
'ListView2
'
Me.ListView2.BackColor = System.Drawing.Color.LightSteelBlue
Me.ListView2.Location = New System.Drawing.Point(184, 35)
Me.ListView2.Name = "ListView2"
Me.ListView2.Size = New System.Drawing.Size(155, 143)
Me.ListView2.TabIndex = 73
Me.ListView2.UseCompatibleStateImageBehavior = False
'
'ListView1
'
Me.ListView1.BackColor = System.Drawing.Color.LightSteelBlue
Me.ListView1.Location = New System.Drawing.Point(23, 36)
Me.ListView1.Name = "ListView1"
Me.ListView1.Size = New System.Drawing.Size(155, 143)
Me.ListView1.TabIndex = 72