diff --git a/BizHawk.MultiClient/Config.cs b/BizHawk.MultiClient/Config.cs index af3078864b..6795ec210f 100644 --- a/BizHawk.MultiClient/Config.cs +++ b/BizHawk.MultiClient/Config.cs @@ -29,6 +29,7 @@ public string PathNESSaveRAM = ".\\SaveRAM"; public string PathNESScreenshots = ".\\Screenshots"; public string PathNESCheats = ".\\Cheats"; + public string PathNESPalette = ".\\Palettes"; public string BaseSMS = ".\\SMS"; public string PathSMSROMs = "."; diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 60b3365d1b..61ca3e8ad6 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -764,7 +764,7 @@ namespace BizHawk.MultiClient { NES nes = new NES(); nextEmulator = nes; - if (Global.Config.NESAutoLoadPalette && HawkFile.ExistsAt(Global.Config.NESPaletteFile)) + if (Global.Config.NESAutoLoadPalette && Global.Config.NESPaletteFile.Length > 0 && HawkFile.ExistsAt(Global.Config.NESPaletteFile)) { nes.SetPalette(NES.Palettes.Load_FCEUX_Palette(HawkFile.ReadAllBytes(Global.Config.NESPaletteFile))); } diff --git a/BizHawk.MultiClient/NEStools/NESGraphicsConfig.Designer.cs b/BizHawk.MultiClient/NEStools/NESGraphicsConfig.Designer.cs index 59ac1df0ef..54304d07f5 100644 --- a/BizHawk.MultiClient/NEStools/NESGraphicsConfig.Designer.cs +++ b/BizHawk.MultiClient/NEStools/NESGraphicsConfig.Designer.cs @@ -39,14 +39,14 @@ this.groupBox2 = new System.Windows.Forms.GroupBox(); this.ClipLeftAndRightCheckBox = new System.Windows.Forms.CheckBox(); this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.ChangeBGColor = new System.Windows.Forms.Button(); + this.BackGroundColorNumber = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); this.groupBox4 = new System.Windows.Forms.GroupBox(); this.BackgroundColorPanel = new System.Windows.Forms.Panel(); this.DispBackground = new System.Windows.Forms.CheckBox(); this.DispSprites = new System.Windows.Forms.CheckBox(); - this.label2 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.BackGroundColorNumber = new System.Windows.Forms.TextBox(); - this.ChangeBGColor = new System.Windows.Forms.Button(); this.BGColorDialog = new System.Windows.Forms.ColorDialog(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); @@ -60,7 +60,7 @@ this.OK.Location = new System.Drawing.Point(213, 403); this.OK.Name = "OK"; this.OK.Size = new System.Drawing.Size(75, 23); - this.OK.TabIndex = 0; + this.OK.TabIndex = 40; this.OK.Text = "&Ok"; this.OK.UseVisualStyleBackColor = true; this.OK.Click += new System.EventHandler(this.OK_Click); @@ -72,7 +72,7 @@ this.Cancel.Location = new System.Drawing.Point(294, 403); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 23); - this.Cancel.TabIndex = 1; + this.Cancel.TabIndex = 45; this.Cancel.Text = "&Cancel"; this.Cancel.UseVisualStyleBackColor = true; // @@ -82,7 +82,7 @@ this.AllowMoreSprites.Location = new System.Drawing.Point(9, 19); this.AllowMoreSprites.Name = "AllowMoreSprites"; this.AllowMoreSprites.Size = new System.Drawing.Size(203, 17); - this.AllowMoreSprites.TabIndex = 2; + this.AllowMoreSprites.TabIndex = 15; this.AllowMoreSprites.Text = "Allow more than 8 sprites per scanline"; this.AllowMoreSprites.UseVisualStyleBackColor = true; // @@ -109,7 +109,7 @@ this.AutoLoadPalette.Location = new System.Drawing.Point(6, 73); this.AutoLoadPalette.Name = "AutoLoadPalette"; this.AutoLoadPalette.Size = new System.Drawing.Size(135, 17); - this.AutoLoadPalette.TabIndex = 3; + this.AutoLoadPalette.TabIndex = 10; this.AutoLoadPalette.Text = "Load this file on startup"; this.AutoLoadPalette.UseVisualStyleBackColor = true; // @@ -137,7 +137,7 @@ this.BrowsePalette.Location = new System.Drawing.Point(271, 44); this.BrowsePalette.Name = "BrowsePalette"; this.BrowsePalette.Size = new System.Drawing.Size(75, 23); - this.BrowsePalette.TabIndex = 0; + this.BrowsePalette.TabIndex = 5; this.BrowsePalette.Text = "&Browse..."; this.BrowsePalette.UseVisualStyleBackColor = true; this.BrowsePalette.Click += new System.EventHandler(this.BrowsePalette_Click); @@ -160,7 +160,7 @@ this.ClipLeftAndRightCheckBox.Location = new System.Drawing.Point(9, 42); this.ClipLeftAndRightCheckBox.Name = "ClipLeftAndRightCheckBox"; this.ClipLeftAndRightCheckBox.Size = new System.Drawing.Size(186, 17); - this.ClipLeftAndRightCheckBox.TabIndex = 3; + this.ClipLeftAndRightCheckBox.TabIndex = 20; this.ClipLeftAndRightCheckBox.Text = "Clip Left and Right Sides (8 pixels)"; this.ClipLeftAndRightCheckBox.UseVisualStyleBackColor = true; // @@ -182,6 +182,43 @@ this.groupBox3.TabStop = false; this.groupBox3.Text = "Background and Sprites"; // + // ChangeBGColor + // + this.ChangeBGColor.Location = new System.Drawing.Point(136, 98); + this.ChangeBGColor.Name = "ChangeBGColor"; + this.ChangeBGColor.Size = new System.Drawing.Size(52, 23); + this.ChangeBGColor.TabIndex = 35; + this.ChangeBGColor.Text = "Change"; + this.ChangeBGColor.UseVisualStyleBackColor = true; + this.ChangeBGColor.Click += new System.EventHandler(this.ChangeBGColor_Click); + // + // BackGroundColorNumber + // + this.BackGroundColorNumber.Location = new System.Drawing.Point(62, 100); + this.BackGroundColorNumber.MaxLength = 8; + this.BackGroundColorNumber.Name = "BackGroundColorNumber"; + this.BackGroundColorNumber.ReadOnly = true; + this.BackGroundColorNumber.Size = new System.Drawing.Size(59, 20); + this.BackGroundColorNumber.TabIndex = 5; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(43, 102); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(18, 13); + this.label3.TabIndex = 4; + this.label3.Text = "0x"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(9, 79); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(246, 13); + this.label2.TabIndex = 3; + this.label2.Text = "Background color when Backgrounds are disabled"; + // // groupBox4 // this.groupBox4.Controls.Add(this.BackgroundColorPanel); @@ -201,60 +238,27 @@ // DispBackground // this.DispBackground.AutoSize = true; + this.DispBackground.Checked = true; + this.DispBackground.CheckState = System.Windows.Forms.CheckState.Checked; this.DispBackground.Location = new System.Drawing.Point(9, 42); this.DispBackground.Name = "DispBackground"; this.DispBackground.Size = new System.Drawing.Size(121, 17); - this.DispBackground.TabIndex = 1; + this.DispBackground.TabIndex = 30; this.DispBackground.Text = "Display Background"; this.DispBackground.UseVisualStyleBackColor = true; // // DispSprites // this.DispSprites.AutoSize = true; + this.DispSprites.Checked = true; + this.DispSprites.CheckState = System.Windows.Forms.CheckState.Checked; this.DispSprites.Location = new System.Drawing.Point(9, 19); this.DispSprites.Name = "DispSprites"; this.DispSprites.Size = new System.Drawing.Size(95, 17); - this.DispSprites.TabIndex = 0; + this.DispSprites.TabIndex = 25; this.DispSprites.Text = "Display Sprites"; this.DispSprites.UseVisualStyleBackColor = true; // - // label2 - // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(9, 79); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(246, 13); - this.label2.TabIndex = 3; - this.label2.Text = "Background color when Backgrounds are disabled"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(43, 102); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(18, 13); - this.label3.TabIndex = 4; - this.label3.Text = "0x"; - // - // BackGroundColorNumber - // - this.BackGroundColorNumber.Location = new System.Drawing.Point(62, 100); - this.BackGroundColorNumber.MaxLength = 8; - this.BackGroundColorNumber.Name = "BackGroundColorNumber"; - this.BackGroundColorNumber.ReadOnly = true; - this.BackGroundColorNumber.Size = new System.Drawing.Size(59, 20); - this.BackGroundColorNumber.TabIndex = 5; - // - // ChangeBGColor - // - this.ChangeBGColor.Location = new System.Drawing.Point(136, 98); - this.ChangeBGColor.Name = "ChangeBGColor"; - this.ChangeBGColor.Size = new System.Drawing.Size(52, 23); - this.ChangeBGColor.TabIndex = 6; - this.ChangeBGColor.Text = "Change"; - this.ChangeBGColor.UseVisualStyleBackColor = true; - this.ChangeBGColor.Click += new System.EventHandler(this.ChangeBGColor_Click); - // // NESGraphicsConfig // this.AcceptButton = this.OK; @@ -270,6 +274,7 @@ this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "NESGraphicsConfig"; + this.ShowIcon = false; this.Text = "NES Graphics Settings"; this.Load += new System.EventHandler(this.NESGraphicsConfig_Load); this.groupBox1.ResumeLayout(false); diff --git a/BizHawk.MultiClient/NEStools/NESGraphicsConfig.cs b/BizHawk.MultiClient/NEStools/NESGraphicsConfig.cs index 9b2277043b..5567afa638 100644 --- a/BizHawk.MultiClient/NEStools/NESGraphicsConfig.cs +++ b/BizHawk.MultiClient/NEStools/NESGraphicsConfig.cs @@ -14,9 +14,6 @@ namespace BizHawk.MultiClient public partial class NESGraphicsConfig : Form { //TODO: - //Add restriction on for load event for nes - //Add restriction on Main form menu item for nes - //Add palette config in NES path config //Hook up allow > 8 scan lines //Hook up Clip L+R Sides //Hook up Disp Background @@ -24,7 +21,6 @@ namespace BizHawk.MultiClient //Hook up BG color //Allow selection of palette file from archive //Hotkeys for BG & Sprite display toggle - //allow null in box //select all on enter event for palette config //NTSC fileter settings? Hue, Tint (This should probably be a multiclient thing, not a nes specific thing?) //Color panel isn't loading color on load @@ -53,7 +49,7 @@ namespace BizHawk.MultiClient private void BrowsePalette_Click(object sender, EventArgs e) { OpenFileDialog ofd = new OpenFileDialog(); - ofd.InitialDirectory = PathManager.GetPlatformBase("NES"); + ofd.InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathNESPalette, "NES"); ofd.Filter = "Palette Files (.pal)|*.PAL|All Files (*.*)|*.*"; ofd.RestoreDirectory = true; @@ -66,23 +62,33 @@ namespace BizHawk.MultiClient private void OK_Click(object sender, EventArgs e) { - string path = PathManager.MakeAbsolutePath(PalettePath.Text, "NES"); - palette = new HawkFile(PalettePath.Text); - - if (palette != null && palette.Exists) + if (PalettePath.Text.Length > 0) { - if (Global.Config.NESPaletteFile != palette.Name) + string path = PathManager.MakeAbsolutePath(PalettePath.Text, "NES"); + palette = new HawkFile(PalettePath.Text); + + if (palette != null && palette.Exists) { - Global.Config.NESPaletteFile = palette.Name; - nes.SetPalette(NES.Palettes.Load_FCEUX_Palette(HawkFile.ReadAllBytes(palette.Name))); - Global.RenderPanel.AddMessage("Palette file loaded: " + palette.Name); + if (Global.Config.NESPaletteFile != palette.Name) + { + Global.Config.NESPaletteFile = palette.Name; + nes.SetPalette(NES.Palettes.Load_FCEUX_Palette(HawkFile.ReadAllBytes(palette.Name))); + Global.RenderPanel.AddMessage("Palette file loaded: " + palette.Name); + } } - Global.Config.NESAllowMoreThanEightSprites = AllowMoreSprites.Checked; - Global.Config.NESClipLeftAndRight = ClipLeftAndRightCheckBox.Checked; - Global.Config.NESAutoLoadPalette = AutoLoadPalette.Checked; - Global.Config.NESDispSprites = DispSprites.Checked; - Global.Config.NESDispBackground = DispBackground.Checked; } + else + { + Global.Config.NESPaletteFile = ""; + nes.SetPalette(NES.Palettes.FCEUX_Standard); + Global.RenderPanel.AddMessage("Standard Palette set"); + } + + Global.Config.NESAllowMoreThanEightSprites = AllowMoreSprites.Checked; + Global.Config.NESClipLeftAndRight = ClipLeftAndRightCheckBox.Checked; + Global.Config.NESAutoLoadPalette = AutoLoadPalette.Checked; + Global.Config.NESDispSprites = DispSprites.Checked; + Global.Config.NESDispBackground = DispBackground.Checked; this.Close(); } diff --git a/BizHawk.MultiClient/config/PathConfig.Designer.cs b/BizHawk.MultiClient/config/PathConfig.Designer.cs index 54d2722383..cba4076262 100644 --- a/BizHawk.MultiClient/config/PathConfig.Designer.cs +++ b/BizHawk.MultiClient/config/PathConfig.Designer.cs @@ -28,2134 +28,2171 @@ /// private void InitializeComponent() { - this.Cancel = new System.Windows.Forms.Button(); - this.OK = new System.Windows.Forms.Button(); - this.WatchBox = new System.Windows.Forms.TextBox(); - this.WatchDescription = new System.Windows.Forms.Label(); - this.BrowseWatch = new System.Windows.Forms.Button(); - this.MoviesBox = new System.Windows.Forms.TextBox(); - this.MoviesDescription = new System.Windows.Forms.Label(); - this.BrowseMovies = new System.Windows.Forms.Button(); - this.LuaBox = new System.Windows.Forms.TextBox(); - this.LuaDescription = new System.Windows.Forms.Label(); - this.BrowseLua = new System.Windows.Forms.Button(); - this.NESScreenshotsBox = new System.Windows.Forms.TextBox(); - this.NESScreenshotsDescription = new System.Windows.Forms.Label(); - this.BrowseNESScreenshots = new System.Windows.Forms.Button(); - this.NESROMsBox = new System.Windows.Forms.TextBox(); - this.NESROMsDescription = new System.Windows.Forms.Label(); - this.BrowseNESROMs = new System.Windows.Forms.Button(); - this.NESSaveRAMBox = new System.Windows.Forms.TextBox(); - this.NESSaveRAMDescription = new System.Windows.Forms.Label(); - this.BrowseNESSaveRAM = new System.Windows.Forms.Button(); - this.NESSavestatesBox = new System.Windows.Forms.TextBox(); - this.NESSavestatesDescription = new System.Windows.Forms.Label(); - this.BrowseNESSavestates = new System.Windows.Forms.Button(); - this.Sega8ScreenshotsBox = new System.Windows.Forms.TextBox(); - this.Sega8ScreenshotsDescription = new System.Windows.Forms.Label(); - this.Sega8BrowseScreenshots = new System.Windows.Forms.Button(); - this.Sega8ROMsBox = new System.Windows.Forms.TextBox(); - this.Sega8ROMsDescription = new System.Windows.Forms.Label(); - this.Sega8BrowseROMs = new System.Windows.Forms.Button(); - this.Sega8SaveRAMBox = new System.Windows.Forms.TextBox(); - this.Sega8SaveRAMDescription = new System.Windows.Forms.Label(); - this.Sega8BrowseSaveRAM = new System.Windows.Forms.Button(); - this.Sega8SavestatesBox = new System.Windows.Forms.TextBox(); - this.Sega8SavestatesDescription = new System.Windows.Forms.Label(); - this.Sega8BrowseSavestates = new System.Windows.Forms.Button(); - this.AVIBox = new System.Windows.Forms.TextBox(); - this.AVIDescription = new System.Windows.Forms.Label(); - this.BrowseAVI = new System.Windows.Forms.Button(); - this.tabControl1 = new System.Windows.Forms.TabControl(); - this.tabPage1 = new System.Windows.Forms.TabPage(); - this.NESCheatsDescription = new System.Windows.Forms.Label(); - this.NESBrowseCheats = new System.Windows.Forms.Button(); - this.NESCheatsBox = new System.Windows.Forms.TextBox(); - this.NESBaseBox = new System.Windows.Forms.TextBox(); - this.NESBaseDescription = new System.Windows.Forms.Label(); - this.BrowseNESBase = new System.Windows.Forms.Button(); - this.tabPage2 = new System.Windows.Forms.TabPage(); - this.Sega8CheatsDescription = new System.Windows.Forms.Label(); - this.Sega8BrowseCheats = new System.Windows.Forms.Button(); - this.Sega8CheatsBox = new System.Windows.Forms.TextBox(); - this.Sega8BaseBox = new System.Windows.Forms.TextBox(); - this.Sega8BaseDescription = new System.Windows.Forms.Label(); - this.Sega8BrowseBase = new System.Windows.Forms.Button(); - this.tabPage9 = new System.Windows.Forms.TabPage(); - this.SGCheatsDescription = new System.Windows.Forms.Label(); - this.SGBrowseCheats = new System.Windows.Forms.Button(); - this.SGCheatsBox = new System.Windows.Forms.TextBox(); - this.SGBaseBox = new System.Windows.Forms.TextBox(); - this.SGBaseDescription = new System.Windows.Forms.Label(); - this.SGBrowseBase = new System.Windows.Forms.Button(); - this.SGROMsBox = new System.Windows.Forms.TextBox(); - this.SGScreenshotsBox = new System.Windows.Forms.TextBox(); - this.SGBrowseSavestates = new System.Windows.Forms.Button(); - this.SGScreenshotsDescription = new System.Windows.Forms.Label(); - this.SGSavestatesDescription = new System.Windows.Forms.Label(); - this.SGBrowseScreenshots = new System.Windows.Forms.Button(); - this.SGSavestatesBox = new System.Windows.Forms.TextBox(); - this.SGBrowseSaveRAM = new System.Windows.Forms.Button(); - this.SGSaveRAMDescription = new System.Windows.Forms.Label(); - this.SGROMsDescription = new System.Windows.Forms.Label(); - this.SGSaveRAMBox = new System.Windows.Forms.TextBox(); - this.SGROMsBrowse = new System.Windows.Forms.Button(); - this.tabPage8 = new System.Windows.Forms.TabPage(); - this.GGCheatsDescription = new System.Windows.Forms.Label(); - this.GGBrowseCheats = new System.Windows.Forms.Button(); - this.GGCheatsBox = new System.Windows.Forms.TextBox(); - this.GGBaseBox = new System.Windows.Forms.TextBox(); - this.GGScreenshotsBox = new System.Windows.Forms.TextBox(); - this.GGBaseDescription = new System.Windows.Forms.Label(); - this.GGScreenshotsDescription = new System.Windows.Forms.Label(); - this.GGBrowseBase = new System.Windows.Forms.Button(); - this.GGBrowseScreenshots = new System.Windows.Forms.Button(); - this.GGROMBox = new System.Windows.Forms.TextBox(); - this.GGBrowseSavestates = new System.Windows.Forms.Button(); - this.GGSavestatesDescription = new System.Windows.Forms.Label(); - this.GGROMsDescription = new System.Windows.Forms.Label(); - this.GGSavestatesBox = new System.Windows.Forms.TextBox(); - this.GGBrowseROMs = new System.Windows.Forms.Button(); - this.GGBrowseSaveRAM = new System.Windows.Forms.Button(); - this.GGSaveRAMDescription = new System.Windows.Forms.Label(); - this.GGSaveRAMBox = new System.Windows.Forms.TextBox(); - this.tabPage3 = new System.Windows.Forms.TabPage(); - this.GenesisCheatsDescription = new System.Windows.Forms.Label(); - this.GenesisBrowseCheats = new System.Windows.Forms.Button(); - this.GenesisCheatsBox = new System.Windows.Forms.TextBox(); - this.GenesisBaseBox = new System.Windows.Forms.TextBox(); - this.GenesisScreenshotsBox = new System.Windows.Forms.TextBox(); - this.GenesisBrowseSaveRAM = new System.Windows.Forms.Button(); - this.GenesisBrowseROMs = new System.Windows.Forms.Button(); - this.GenesisBaseDescription = new System.Windows.Forms.Label(); - this.GenesisSaveRAMDescription = new System.Windows.Forms.Label(); - this.GenesisSavestatesBox = new System.Windows.Forms.TextBox(); - this.GenesisScreenshotsDescription = new System.Windows.Forms.Label(); - this.GenesisSaveRAMBox = new System.Windows.Forms.TextBox(); - this.GenesisROMsDescription = new System.Windows.Forms.Label(); - this.GenesisBrowseBase = new System.Windows.Forms.Button(); - this.GenesisSavestatesDescription = new System.Windows.Forms.Label(); - this.GenesisBrowseSavestates = new System.Windows.Forms.Button(); - this.GenesisBrowseScreenshots = new System.Windows.Forms.Button(); - this.GenesisROMsBox = new System.Windows.Forms.TextBox(); - this.tabPage4 = new System.Windows.Forms.TabPage(); - this.PCECheatsDescription = new System.Windows.Forms.Label(); - this.PCEBrowseCheats = new System.Windows.Forms.Button(); - this.PCECheatsBox = new System.Windows.Forms.TextBox(); - this.PCEBaseBox = new System.Windows.Forms.TextBox(); - this.PCEScreenshotsBox = new System.Windows.Forms.TextBox(); - this.PCEBaseDescription = new System.Windows.Forms.Label(); - this.PCEScreenshotsDescription = new System.Windows.Forms.Label(); - this.PCEBrowseBase = new System.Windows.Forms.Button(); - this.PCEBrowseScreenshots = new System.Windows.Forms.Button(); - this.PCEROMsBox = new System.Windows.Forms.TextBox(); - this.PCEBrowseSavestates = new System.Windows.Forms.Button(); - this.PCESavestatesDescription = new System.Windows.Forms.Label(); - this.PCEROMsDescription = new System.Windows.Forms.Label(); - this.PCESavestatesBox = new System.Windows.Forms.TextBox(); - this.PCEBrowseROMs = new System.Windows.Forms.Button(); - this.PCEBrowseSaveRAM = new System.Windows.Forms.Button(); - this.PCESaveRAMDescription = new System.Windows.Forms.Label(); - this.PCESaveRAMBox = new System.Windows.Forms.TextBox(); - this.tabPage5 = new System.Windows.Forms.TabPage(); - this.GBCheatsDescription = new System.Windows.Forms.Label(); - this.GBBrowseCheats = new System.Windows.Forms.Button(); - this.GBCheatsBox = new System.Windows.Forms.TextBox(); - this.GBBaseBox = new System.Windows.Forms.TextBox(); - this.GBScreenshotsBox = new System.Windows.Forms.TextBox(); - this.GBBaseDescription = new System.Windows.Forms.Label(); - this.GBScreenshotsDescription = new System.Windows.Forms.Label(); - this.GBBrowseBase = new System.Windows.Forms.Button(); - this.GBBrowseScreenshots = new System.Windows.Forms.Button(); - this.GBROMsBox = new System.Windows.Forms.TextBox(); - this.GBBrowseSavestates = new System.Windows.Forms.Button(); - this.GBSavestatesDescription = new System.Windows.Forms.Label(); - this.GBROMsDescription = new System.Windows.Forms.Label(); - this.GBSavestatesBox = new System.Windows.Forms.TextBox(); - this.GBBrowseROMs = new System.Windows.Forms.Button(); - this.GBBrowseSaveRAM = new System.Windows.Forms.Button(); - this.GBSaveRAMDescription = new System.Windows.Forms.Label(); - this.GBSaveRAMBox = new System.Windows.Forms.TextBox(); - this.tabPage6 = new System.Windows.Forms.TabPage(); - this.TI83CheatsDescription = new System.Windows.Forms.Label(); - this.TI83BrowseBox = new System.Windows.Forms.Button(); - this.TI83CheatsBox = new System.Windows.Forms.TextBox(); - this.TI83BaseBox = new System.Windows.Forms.TextBox(); - this.TI83ScreenshotsBox = new System.Windows.Forms.TextBox(); - this.TI83BaseDescription = new System.Windows.Forms.Label(); - this.TI83ScreenshotsDescription = new System.Windows.Forms.Label(); - this.TI83BrowseBase = new System.Windows.Forms.Button(); - this.TI83BrowseScreenshots = new System.Windows.Forms.Button(); - this.TI83ROMsBox = new System.Windows.Forms.TextBox(); - this.TI83BrowseSavestates = new System.Windows.Forms.Button(); - this.TI83SavestatesDescription = new System.Windows.Forms.Label(); - this.TI83ROMsDescription = new System.Windows.Forms.Label(); - this.TI83SavestatesBox = new System.Windows.Forms.TextBox(); - this.TI83BrowseROMs = new System.Windows.Forms.Button(); - this.TI83BrowseSaveRAM = new System.Windows.Forms.Button(); - this.TI83SaveRAMDescription = new System.Windows.Forms.Label(); - this.TI83SaveRAMBox = new System.Windows.Forms.TextBox(); - this.tabPage7 = new System.Windows.Forms.TabPage(); - this.BasePathBox = new System.Windows.Forms.TextBox(); - this.BrowseBase = new System.Windows.Forms.Button(); - this.BaseDescription = new System.Windows.Forms.Label(); - this.RecentForROMs = new System.Windows.Forms.CheckBox(); - this.SaveButton = new System.Windows.Forms.Button(); - this.tabControl1.SuspendLayout(); - this.tabPage1.SuspendLayout(); - this.tabPage2.SuspendLayout(); - this.tabPage9.SuspendLayout(); - this.tabPage8.SuspendLayout(); - this.tabPage3.SuspendLayout(); - this.tabPage4.SuspendLayout(); - this.tabPage5.SuspendLayout(); - this.tabPage6.SuspendLayout(); - this.tabPage7.SuspendLayout(); - this.SuspendLayout(); - // - // Cancel - // - this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.Cancel.Location = new System.Drawing.Point(398, 390); - this.Cancel.Name = "Cancel"; - this.Cancel.Size = new System.Drawing.Size(75, 23); - this.Cancel.TabIndex = 202; - this.Cancel.Text = "&Cancel"; - this.Cancel.UseVisualStyleBackColor = true; - this.Cancel.Click += new System.EventHandler(this.Cancel_Click); - // - // OK - // - this.OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.OK.Location = new System.Drawing.Point(317, 390); - this.OK.Name = "OK"; - this.OK.Size = new System.Drawing.Size(75, 23); - this.OK.TabIndex = 201; - this.OK.Text = "&Ok"; - this.OK.UseVisualStyleBackColor = true; - this.OK.Click += new System.EventHandler(this.OK_Click); - // - // WatchBox - // - this.WatchBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.WatchBox.Location = new System.Drawing.Point(13, 89); - this.WatchBox.Name = "WatchBox"; - this.WatchBox.Size = new System.Drawing.Size(297, 20); - this.WatchBox.TabIndex = 124; - // - // WatchDescription - // - this.WatchDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.WatchDescription.AutoSize = true; - this.WatchDescription.Location = new System.Drawing.Point(377, 93); - this.WatchDescription.Name = "WatchDescription"; - this.WatchDescription.Size = new System.Drawing.Size(71, 13); - this.WatchDescription.TabIndex = 17; - this.WatchDescription.Text = "Watch (.wch)"; - // - // BrowseWatch - // - this.BrowseWatch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseWatch.Location = new System.Drawing.Point(317, 88); - this.BrowseWatch.Name = "BrowseWatch"; - this.BrowseWatch.Size = new System.Drawing.Size(54, 23); - this.BrowseWatch.TabIndex = 125; - this.BrowseWatch.Text = "Browse"; - this.BrowseWatch.UseVisualStyleBackColor = true; - this.BrowseWatch.Click += new System.EventHandler(this.BrowseWatch_Click); - // - // MoviesBox - // - this.MoviesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.MoviesBox.Location = new System.Drawing.Point(13, 21); - this.MoviesBox.Name = "MoviesBox"; - this.MoviesBox.Size = new System.Drawing.Size(297, 20); - this.MoviesBox.TabIndex = 120; - // - // MoviesDescription - // - this.MoviesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.MoviesDescription.AutoSize = true; - this.MoviesDescription.Location = new System.Drawing.Point(377, 25); - this.MoviesDescription.Name = "MoviesDescription"; - this.MoviesDescription.Size = new System.Drawing.Size(41, 13); - this.MoviesDescription.TabIndex = 13; - this.MoviesDescription.Text = "Movies"; - // - // BrowseMovies - // - this.BrowseMovies.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseMovies.Location = new System.Drawing.Point(317, 20); - this.BrowseMovies.Name = "BrowseMovies"; - this.BrowseMovies.Size = new System.Drawing.Size(54, 23); - this.BrowseMovies.TabIndex = 121; - this.BrowseMovies.Text = "Browse"; - this.BrowseMovies.UseVisualStyleBackColor = true; - this.BrowseMovies.Click += new System.EventHandler(this.BrowseMovies_Click); - // - // LuaBox - // - this.LuaBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.LuaBox.Location = new System.Drawing.Point(13, 59); - this.LuaBox.Name = "LuaBox"; - this.LuaBox.Size = new System.Drawing.Size(297, 20); - this.LuaBox.TabIndex = 122; - // - // LuaDescription - // - this.LuaDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.LuaDescription.AutoSize = true; - this.LuaDescription.Location = new System.Drawing.Point(377, 63); - this.LuaDescription.Name = "LuaDescription"; - this.LuaDescription.Size = new System.Drawing.Size(25, 13); - this.LuaDescription.TabIndex = 9; - this.LuaDescription.Text = "Lua"; - // - // BrowseLua - // - this.BrowseLua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseLua.Location = new System.Drawing.Point(317, 58); - this.BrowseLua.Name = "BrowseLua"; - this.BrowseLua.Size = new System.Drawing.Size(54, 23); - this.BrowseLua.TabIndex = 123; - this.BrowseLua.Text = "Browse"; - this.BrowseLua.UseVisualStyleBackColor = true; - this.BrowseLua.Click += new System.EventHandler(this.BrowseLua_Click); - // - // NESScreenshotsBox - // - this.NESScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.NESScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.NESScreenshotsBox.Name = "NESScreenshotsBox"; - this.NESScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.NESScreenshotsBox.TabIndex = 11; - // - // NESScreenshotsDescription - // - this.NESScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESScreenshotsDescription.AutoSize = true; - this.NESScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.NESScreenshotsDescription.Name = "NESScreenshotsDescription"; - this.NESScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.NESScreenshotsDescription.TabIndex = 17; - this.NESScreenshotsDescription.Text = "Screenshots"; - // - // BrowseNESScreenshots - // - this.BrowseNESScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseNESScreenshots.Location = new System.Drawing.Point(300, 148); - this.BrowseNESScreenshots.Name = "BrowseNESScreenshots"; - this.BrowseNESScreenshots.Size = new System.Drawing.Size(54, 23); - this.BrowseNESScreenshots.TabIndex = 12; - this.BrowseNESScreenshots.Text = "Browse"; - this.BrowseNESScreenshots.UseVisualStyleBackColor = true; - this.BrowseNESScreenshots.Click += new System.EventHandler(this.BrowseNESScreenshots_Click); - // - // NESROMsBox - // - this.NESROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.NESROMsBox.Location = new System.Drawing.Point(13, 59); - this.NESROMsBox.Name = "NESROMsBox"; - this.NESROMsBox.Size = new System.Drawing.Size(280, 20); - this.NESROMsBox.TabIndex = 5; - // - // NESROMsDescription - // - this.NESROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESROMsDescription.AutoSize = true; - this.NESROMsDescription.Location = new System.Drawing.Point(360, 63); - this.NESROMsDescription.Name = "NESROMsDescription"; - this.NESROMsDescription.Size = new System.Drawing.Size(37, 13); - this.NESROMsDescription.TabIndex = 13; - this.NESROMsDescription.Text = "ROMs"; - // - // BrowseNESROMs - // - this.BrowseNESROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseNESROMs.Location = new System.Drawing.Point(300, 58); - this.BrowseNESROMs.Name = "BrowseNESROMs"; - this.BrowseNESROMs.Size = new System.Drawing.Size(54, 23); - this.BrowseNESROMs.TabIndex = 6; - this.BrowseNESROMs.Text = "Browse"; - this.BrowseNESROMs.UseVisualStyleBackColor = true; - this.BrowseNESROMs.Click += new System.EventHandler(this.BrowseNESROMs_Click); - // - // NESSaveRAMBox - // - this.NESSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.NESSaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.NESSaveRAMBox.Name = "NESSaveRAMBox"; - this.NESSaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.NESSaveRAMBox.TabIndex = 9; - // - // NESSaveRAMDescription - // - this.NESSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESSaveRAMDescription.AutoSize = true; - this.NESSaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.NESSaveRAMDescription.Name = "NESSaveRAMDescription"; - this.NESSaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.NESSaveRAMDescription.TabIndex = 9; - this.NESSaveRAMDescription.Text = "Save RAM"; - // - // BrowseNESSaveRAM - // - this.BrowseNESSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseNESSaveRAM.Location = new System.Drawing.Point(300, 118); - this.BrowseNESSaveRAM.Name = "BrowseNESSaveRAM"; - this.BrowseNESSaveRAM.Size = new System.Drawing.Size(54, 23); - this.BrowseNESSaveRAM.TabIndex = 10; - this.BrowseNESSaveRAM.Text = "Browse"; - this.BrowseNESSaveRAM.UseVisualStyleBackColor = true; - this.BrowseNESSaveRAM.Click += new System.EventHandler(this.BrowseNESSaveRAM_Click); - // - // NESSavestatesBox - // - this.NESSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.NESSavestatesBox.Location = new System.Drawing.Point(13, 89); - this.NESSavestatesBox.Name = "NESSavestatesBox"; - this.NESSavestatesBox.Size = new System.Drawing.Size(280, 20); - this.NESSavestatesBox.TabIndex = 7; - // - // NESSavestatesDescription - // - this.NESSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESSavestatesDescription.AutoSize = true; - this.NESSavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.NESSavestatesDescription.Name = "NESSavestatesDescription"; - this.NESSavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.NESSavestatesDescription.TabIndex = 5; - this.NESSavestatesDescription.Text = "Savestates"; - // - // BrowseNESSavestates - // - this.BrowseNESSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseNESSavestates.Location = new System.Drawing.Point(300, 88); - this.BrowseNESSavestates.Name = "BrowseNESSavestates"; - this.BrowseNESSavestates.Size = new System.Drawing.Size(54, 23); - this.BrowseNESSavestates.TabIndex = 8; - this.BrowseNESSavestates.Text = "Browse"; - this.BrowseNESSavestates.UseVisualStyleBackColor = true; - this.BrowseNESSavestates.Click += new System.EventHandler(this.BrowseNESSavestates_Click); - // - // Sega8ScreenshotsBox - // - this.Sega8ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8ScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.Sega8ScreenshotsBox.Name = "Sega8ScreenshotsBox"; - this.Sega8ScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.Sega8ScreenshotsBox.TabIndex = 23; - // - // Sega8ScreenshotsDescription - // - this.Sega8ScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8ScreenshotsDescription.AutoSize = true; - this.Sega8ScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.Sega8ScreenshotsDescription.Name = "Sega8ScreenshotsDescription"; - this.Sega8ScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.Sega8ScreenshotsDescription.TabIndex = 17; - this.Sega8ScreenshotsDescription.Text = "Screenshots"; - // - // Sega8BrowseScreenshots - // - this.Sega8BrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BrowseScreenshots.Location = new System.Drawing.Point(300, 148); - this.Sega8BrowseScreenshots.Name = "Sega8BrowseScreenshots"; - this.Sega8BrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.Sega8BrowseScreenshots.TabIndex = 24; - this.Sega8BrowseScreenshots.Text = "Browse"; - this.Sega8BrowseScreenshots.UseVisualStyleBackColor = true; - this.Sega8BrowseScreenshots.Click += new System.EventHandler(this.Sega8BrowseScreenshots_Click); - // - // Sega8ROMsBox - // - this.Sega8ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8ROMsBox.Location = new System.Drawing.Point(13, 59); - this.Sega8ROMsBox.Name = "Sega8ROMsBox"; - this.Sega8ROMsBox.Size = new System.Drawing.Size(280, 20); - this.Sega8ROMsBox.TabIndex = 17; - // - // Sega8ROMsDescription - // - this.Sega8ROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8ROMsDescription.AutoSize = true; - this.Sega8ROMsDescription.Location = new System.Drawing.Point(360, 63); - this.Sega8ROMsDescription.Name = "Sega8ROMsDescription"; - this.Sega8ROMsDescription.Size = new System.Drawing.Size(37, 13); - this.Sega8ROMsDescription.TabIndex = 13; - this.Sega8ROMsDescription.Text = "ROMs"; - // - // Sega8BrowseROMs - // - this.Sega8BrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BrowseROMs.Location = new System.Drawing.Point(300, 58); - this.Sega8BrowseROMs.Name = "Sega8BrowseROMs"; - this.Sega8BrowseROMs.Size = new System.Drawing.Size(54, 23); - this.Sega8BrowseROMs.TabIndex = 18; - this.Sega8BrowseROMs.Text = "Browse"; - this.Sega8BrowseROMs.UseVisualStyleBackColor = true; - this.Sega8BrowseROMs.Click += new System.EventHandler(this.Sega8BrowseROMs_Click); - // - // Sega8SaveRAMBox - // - this.Sega8SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8SaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.Sega8SaveRAMBox.Name = "Sega8SaveRAMBox"; - this.Sega8SaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.Sega8SaveRAMBox.TabIndex = 21; - // - // Sega8SaveRAMDescription - // - this.Sega8SaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8SaveRAMDescription.AutoSize = true; - this.Sega8SaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.Sega8SaveRAMDescription.Name = "Sega8SaveRAMDescription"; - this.Sega8SaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.Sega8SaveRAMDescription.TabIndex = 9; - this.Sega8SaveRAMDescription.Text = "Save RAM"; - // - // Sega8BrowseSaveRAM - // - this.Sega8BrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BrowseSaveRAM.Location = new System.Drawing.Point(300, 118); - this.Sega8BrowseSaveRAM.Name = "Sega8BrowseSaveRAM"; - this.Sega8BrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.Sega8BrowseSaveRAM.TabIndex = 22; - this.Sega8BrowseSaveRAM.Text = "Browse"; - this.Sega8BrowseSaveRAM.UseVisualStyleBackColor = true; - this.Sega8BrowseSaveRAM.Click += new System.EventHandler(this.Sega8BrowseSaveRAM_Click); - // - // Sega8SavestatesBox - // - this.Sega8SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8SavestatesBox.Location = new System.Drawing.Point(13, 89); - this.Sega8SavestatesBox.Name = "Sega8SavestatesBox"; - this.Sega8SavestatesBox.Size = new System.Drawing.Size(280, 20); - this.Sega8SavestatesBox.TabIndex = 19; - // - // Sega8SavestatesDescription - // - this.Sega8SavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8SavestatesDescription.AutoSize = true; - this.Sega8SavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.Sega8SavestatesDescription.Name = "Sega8SavestatesDescription"; - this.Sega8SavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.Sega8SavestatesDescription.TabIndex = 5; - this.Sega8SavestatesDescription.Text = "Savestates"; - // - // Sega8BrowseSavestates - // - this.Sega8BrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BrowseSavestates.Location = new System.Drawing.Point(300, 88); - this.Sega8BrowseSavestates.Name = "Sega8BrowseSavestates"; - this.Sega8BrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.Sega8BrowseSavestates.TabIndex = 20; - this.Sega8BrowseSavestates.Text = "Browse"; - this.Sega8BrowseSavestates.UseVisualStyleBackColor = true; - this.Sega8BrowseSavestates.Click += new System.EventHandler(this.Sega8BrowseSavestates_Click); - // - // AVIBox - // - this.AVIBox.AcceptsReturn = true; - this.AVIBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.AVIBox.Location = new System.Drawing.Point(13, 119); - this.AVIBox.Name = "AVIBox"; - this.AVIBox.Size = new System.Drawing.Size(297, 20); - this.AVIBox.TabIndex = 126; - this.AVIBox.TabStop = false; - // - // AVIDescription - // - this.AVIDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.AVIDescription.AutoSize = true; - this.AVIDescription.Location = new System.Drawing.Point(377, 123); - this.AVIDescription.Name = "AVIDescription"; - this.AVIDescription.Size = new System.Drawing.Size(60, 13); - this.AVIDescription.TabIndex = 22; - this.AVIDescription.Text = "Video (AVI)"; - // - // BrowseAVI - // - this.BrowseAVI.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseAVI.Location = new System.Drawing.Point(317, 118); - this.BrowseAVI.Name = "BrowseAVI"; - this.BrowseAVI.Size = new System.Drawing.Size(54, 23); - this.BrowseAVI.TabIndex = 127; - this.BrowseAVI.Text = "Browse"; - this.BrowseAVI.UseVisualStyleBackColor = true; - this.BrowseAVI.Click += new System.EventHandler(this.BrowseAVI_Click); - // - // tabControl1 - // - this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tabControl1.Controls.Add(this.tabPage1); - this.tabControl1.Controls.Add(this.tabPage2); - this.tabControl1.Controls.Add(this.tabPage9); - this.tabControl1.Controls.Add(this.tabPage8); - this.tabControl1.Controls.Add(this.tabPage3); - this.tabControl1.Controls.Add(this.tabPage4); - this.tabControl1.Controls.Add(this.tabPage5); - this.tabControl1.Controls.Add(this.tabPage6); - this.tabControl1.Controls.Add(this.tabPage7); - this.tabControl1.Location = new System.Drawing.Point(13, 97); - this.tabControl1.Name = "tabControl1"; - this.tabControl1.SelectedIndex = 0; - this.tabControl1.Size = new System.Drawing.Size(460, 277); - this.tabControl1.TabIndex = 23; - this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); - // - // tabPage1 - // - this.tabPage1.Controls.Add(this.NESCheatsDescription); - this.tabPage1.Controls.Add(this.NESBrowseCheats); - this.tabPage1.Controls.Add(this.NESCheatsBox); - this.tabPage1.Controls.Add(this.NESBaseBox); - this.tabPage1.Controls.Add(this.NESBaseDescription); - this.tabPage1.Controls.Add(this.BrowseNESBase); - this.tabPage1.Controls.Add(this.NESROMsBox); - this.tabPage1.Controls.Add(this.NESScreenshotsBox); - this.tabPage1.Controls.Add(this.BrowseNESSavestates); - this.tabPage1.Controls.Add(this.NESScreenshotsDescription); - this.tabPage1.Controls.Add(this.NESSavestatesDescription); - this.tabPage1.Controls.Add(this.BrowseNESScreenshots); - this.tabPage1.Controls.Add(this.NESSavestatesBox); - this.tabPage1.Controls.Add(this.BrowseNESSaveRAM); - this.tabPage1.Controls.Add(this.NESSaveRAMDescription); - this.tabPage1.Controls.Add(this.NESROMsDescription); - this.tabPage1.Controls.Add(this.NESSaveRAMBox); - this.tabPage1.Controls.Add(this.BrowseNESROMs); - this.tabPage1.Location = new System.Drawing.Point(4, 22); - this.tabPage1.Name = "tabPage1"; - this.tabPage1.Padding = new System.Windows.Forms.Padding(3); - this.tabPage1.Size = new System.Drawing.Size(435, 251); - this.tabPage1.TabIndex = 0; - this.tabPage1.Text = "NES"; - this.tabPage1.UseVisualStyleBackColor = true; - // - // NESCheatsDescription - // - this.NESCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESCheatsDescription.AutoSize = true; - this.NESCheatsDescription.Location = new System.Drawing.Point(360, 183); - this.NESCheatsDescription.Name = "NESCheatsDescription"; - this.NESCheatsDescription.Size = new System.Drawing.Size(40, 13); - this.NESCheatsDescription.TabIndex = 23; - this.NESCheatsDescription.Text = "Cheats"; - // - // NESBrowseCheats - // - this.NESBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESBrowseCheats.Location = new System.Drawing.Point(300, 178); - this.NESBrowseCheats.Name = "NESBrowseCheats"; - this.NESBrowseCheats.Size = new System.Drawing.Size(54, 23); - this.NESBrowseCheats.TabIndex = 14; - this.NESBrowseCheats.Text = "Browse"; - this.NESBrowseCheats.UseVisualStyleBackColor = true; - this.NESBrowseCheats.Click += new System.EventHandler(this.NESBrowseCheats_Click); - // - // NESCheatsBox - // - this.NESCheatsBox.AcceptsTab = true; - this.NESCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.NESCheatsBox.Location = new System.Drawing.Point(13, 179); - this.NESCheatsBox.Name = "NESCheatsBox"; - this.NESCheatsBox.Size = new System.Drawing.Size(280, 20); - this.NESCheatsBox.TabIndex = 13; - // - // NESBaseBox - // - this.NESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.NESBaseBox.Location = new System.Drawing.Point(13, 21); - this.NESBaseBox.Name = "NESBaseBox"; - this.NESBaseBox.Size = new System.Drawing.Size(280, 20); - this.NESBaseBox.TabIndex = 3; - // - // NESBaseDescription - // - this.NESBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.NESBaseDescription.AutoSize = true; - this.NESBaseDescription.Location = new System.Drawing.Point(360, 25); - this.NESBaseDescription.Name = "NESBaseDescription"; - this.NESBaseDescription.Size = new System.Drawing.Size(31, 13); - this.NESBaseDescription.TabIndex = 20; - this.NESBaseDescription.Text = "Base"; - // - // BrowseNESBase - // - this.BrowseNESBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseNESBase.Location = new System.Drawing.Point(300, 20); - this.BrowseNESBase.Name = "BrowseNESBase"; - this.BrowseNESBase.Size = new System.Drawing.Size(54, 23); - this.BrowseNESBase.TabIndex = 4; - this.BrowseNESBase.Text = "Browse"; - this.BrowseNESBase.UseVisualStyleBackColor = true; - this.BrowseNESBase.Click += new System.EventHandler(this.BrowseNESBase_Click); - // - // tabPage2 - // - this.tabPage2.Controls.Add(this.Sega8CheatsDescription); - this.tabPage2.Controls.Add(this.Sega8BrowseCheats); - this.tabPage2.Controls.Add(this.Sega8CheatsBox); - this.tabPage2.Controls.Add(this.Sega8BaseBox); - this.tabPage2.Controls.Add(this.Sega8ScreenshotsBox); - this.tabPage2.Controls.Add(this.Sega8BaseDescription); - this.tabPage2.Controls.Add(this.Sega8ScreenshotsDescription); - this.tabPage2.Controls.Add(this.Sega8BrowseBase); - this.tabPage2.Controls.Add(this.Sega8BrowseScreenshots); - this.tabPage2.Controls.Add(this.Sega8ROMsBox); - this.tabPage2.Controls.Add(this.Sega8BrowseSavestates); - this.tabPage2.Controls.Add(this.Sega8SavestatesDescription); - this.tabPage2.Controls.Add(this.Sega8ROMsDescription); - this.tabPage2.Controls.Add(this.Sega8SavestatesBox); - this.tabPage2.Controls.Add(this.Sega8BrowseROMs); - this.tabPage2.Controls.Add(this.Sega8BrowseSaveRAM); - this.tabPage2.Controls.Add(this.Sega8SaveRAMDescription); - this.tabPage2.Controls.Add(this.Sega8SaveRAMBox); - this.tabPage2.Location = new System.Drawing.Point(4, 22); - this.tabPage2.Name = "tabPage2"; - this.tabPage2.Padding = new System.Windows.Forms.Padding(3); - this.tabPage2.Size = new System.Drawing.Size(435, 251); - this.tabPage2.TabIndex = 1; - this.tabPage2.Text = "SMS"; - this.tabPage2.UseVisualStyleBackColor = true; - // - // Sega8CheatsDescription - // - this.Sega8CheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8CheatsDescription.AutoSize = true; - this.Sega8CheatsDescription.Location = new System.Drawing.Point(360, 183); - this.Sega8CheatsDescription.Name = "Sega8CheatsDescription"; - this.Sega8CheatsDescription.Size = new System.Drawing.Size(40, 13); - this.Sega8CheatsDescription.TabIndex = 26; - this.Sega8CheatsDescription.Text = "Cheats"; - // - // Sega8BrowseCheats - // - this.Sega8BrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BrowseCheats.Location = new System.Drawing.Point(300, 178); - this.Sega8BrowseCheats.Name = "Sega8BrowseCheats"; - this.Sega8BrowseCheats.Size = new System.Drawing.Size(54, 23); - this.Sega8BrowseCheats.TabIndex = 26; - this.Sega8BrowseCheats.Text = "Browse"; - this.Sega8BrowseCheats.UseVisualStyleBackColor = true; - this.Sega8BrowseCheats.Click += new System.EventHandler(this.Sega8BrowseCheats_Click); - // - // Sega8CheatsBox - // - this.Sega8CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8CheatsBox.Location = new System.Drawing.Point(13, 179); - this.Sega8CheatsBox.Name = "Sega8CheatsBox"; - this.Sega8CheatsBox.Size = new System.Drawing.Size(280, 20); - this.Sega8CheatsBox.TabIndex = 25; - // - // Sega8BaseBox - // - this.Sega8BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BaseBox.Location = new System.Drawing.Point(13, 21); - this.Sega8BaseBox.Name = "Sega8BaseBox"; - this.Sega8BaseBox.Size = new System.Drawing.Size(280, 20); - this.Sega8BaseBox.TabIndex = 15; - // - // Sega8BaseDescription - // - this.Sega8BaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BaseDescription.AutoSize = true; - this.Sega8BaseDescription.Location = new System.Drawing.Point(360, 25); - this.Sega8BaseDescription.Name = "Sega8BaseDescription"; - this.Sega8BaseDescription.Size = new System.Drawing.Size(31, 13); - this.Sega8BaseDescription.TabIndex = 21; - this.Sega8BaseDescription.Text = "Base"; - // - // Sega8BrowseBase - // - this.Sega8BrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.Sega8BrowseBase.Location = new System.Drawing.Point(300, 20); - this.Sega8BrowseBase.Name = "Sega8BrowseBase"; - this.Sega8BrowseBase.Size = new System.Drawing.Size(54, 23); - this.Sega8BrowseBase.TabIndex = 16; - this.Sega8BrowseBase.Text = "Browse"; - this.Sega8BrowseBase.UseVisualStyleBackColor = true; - this.Sega8BrowseBase.Click += new System.EventHandler(this.Sega8BrowseBase_Click); - // - // tabPage9 - // - this.tabPage9.Controls.Add(this.SGCheatsDescription); - this.tabPage9.Controls.Add(this.SGBrowseCheats); - this.tabPage9.Controls.Add(this.SGCheatsBox); - this.tabPage9.Controls.Add(this.SGBaseBox); - this.tabPage9.Controls.Add(this.SGBaseDescription); - this.tabPage9.Controls.Add(this.SGBrowseBase); - this.tabPage9.Controls.Add(this.SGROMsBox); - this.tabPage9.Controls.Add(this.SGScreenshotsBox); - this.tabPage9.Controls.Add(this.SGBrowseSavestates); - this.tabPage9.Controls.Add(this.SGScreenshotsDescription); - this.tabPage9.Controls.Add(this.SGSavestatesDescription); - this.tabPage9.Controls.Add(this.SGBrowseScreenshots); - this.tabPage9.Controls.Add(this.SGSavestatesBox); - this.tabPage9.Controls.Add(this.SGBrowseSaveRAM); - this.tabPage9.Controls.Add(this.SGSaveRAMDescription); - this.tabPage9.Controls.Add(this.SGROMsDescription); - this.tabPage9.Controls.Add(this.SGSaveRAMBox); - this.tabPage9.Controls.Add(this.SGROMsBrowse); - this.tabPage9.Location = new System.Drawing.Point(4, 22); - this.tabPage9.Name = "tabPage9"; - this.tabPage9.Size = new System.Drawing.Size(435, 251); - this.tabPage9.TabIndex = 8; - this.tabPage9.Text = "SG-1000"; - this.tabPage9.UseVisualStyleBackColor = true; - // - // SGCheatsDescription - // - this.SGCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGCheatsDescription.AutoSize = true; - this.SGCheatsDescription.Location = new System.Drawing.Point(360, 183); - this.SGCheatsDescription.Name = "SGCheatsDescription"; - this.SGCheatsDescription.Size = new System.Drawing.Size(40, 13); - this.SGCheatsDescription.TabIndex = 41; - this.SGCheatsDescription.Text = "Cheats"; - // - // SGBrowseCheats - // - this.SGBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGBrowseCheats.Location = new System.Drawing.Point(300, 178); - this.SGBrowseCheats.Name = "SGBrowseCheats"; - this.SGBrowseCheats.Size = new System.Drawing.Size(54, 23); - this.SGBrowseCheats.TabIndex = 42; - this.SGBrowseCheats.Text = "Browse"; - this.SGBrowseCheats.UseVisualStyleBackColor = true; - this.SGBrowseCheats.Click += new System.EventHandler(this.SGBrowseCheats_Click); - // - // SGCheatsBox - // - this.SGCheatsBox.AcceptsTab = true; - this.SGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.SGCheatsBox.Location = new System.Drawing.Point(13, 179); - this.SGCheatsBox.Name = "SGCheatsBox"; - this.SGCheatsBox.Size = new System.Drawing.Size(280, 20); - this.SGCheatsBox.TabIndex = 41; - // - // SGBaseBox - // - this.SGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.SGBaseBox.Location = new System.Drawing.Point(13, 21); - this.SGBaseBox.Name = "SGBaseBox"; - this.SGBaseBox.Size = new System.Drawing.Size(280, 20); - this.SGBaseBox.TabIndex = 30; - // - // SGBaseDescription - // - this.SGBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGBaseDescription.AutoSize = true; - this.SGBaseDescription.Location = new System.Drawing.Point(360, 25); - this.SGBaseDescription.Name = "SGBaseDescription"; - this.SGBaseDescription.Size = new System.Drawing.Size(31, 13); - this.SGBaseDescription.TabIndex = 38; - this.SGBaseDescription.Text = "Base"; - // - // SGBrowseBase - // - this.SGBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGBrowseBase.Location = new System.Drawing.Point(300, 20); - this.SGBrowseBase.Name = "SGBrowseBase"; - this.SGBrowseBase.Size = new System.Drawing.Size(54, 23); - this.SGBrowseBase.TabIndex = 31; - this.SGBrowseBase.Text = "Browse"; - this.SGBrowseBase.UseVisualStyleBackColor = true; - this.SGBrowseBase.Click += new System.EventHandler(this.SGBrowseBase_Click); - // - // SGROMsBox - // - this.SGROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.SGROMsBox.Location = new System.Drawing.Point(13, 59); - this.SGROMsBox.Name = "SGROMsBox"; - this.SGROMsBox.Size = new System.Drawing.Size(280, 20); - this.SGROMsBox.TabIndex = 32; - // - // SGScreenshotsBox - // - this.SGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.SGScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.SGScreenshotsBox.Name = "SGScreenshotsBox"; - this.SGScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.SGScreenshotsBox.TabIndex = 39; - // - // SGBrowseSavestates - // - this.SGBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGBrowseSavestates.Location = new System.Drawing.Point(300, 88); - this.SGBrowseSavestates.Name = "SGBrowseSavestates"; - this.SGBrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.SGBrowseSavestates.TabIndex = 35; - this.SGBrowseSavestates.Text = "Browse"; - this.SGBrowseSavestates.UseVisualStyleBackColor = true; - this.SGBrowseSavestates.Click += new System.EventHandler(this.SGBrowseSavestates_Click); - // - // SGScreenshotsDescription - // - this.SGScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGScreenshotsDescription.AutoSize = true; - this.SGScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.SGScreenshotsDescription.Name = "SGScreenshotsDescription"; - this.SGScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.SGScreenshotsDescription.TabIndex = 35; - this.SGScreenshotsDescription.Text = "Screenshots"; - // - // SGSavestatesDescription - // - this.SGSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGSavestatesDescription.AutoSize = true; - this.SGSavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.SGSavestatesDescription.Name = "SGSavestatesDescription"; - this.SGSavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.SGSavestatesDescription.TabIndex = 26; - this.SGSavestatesDescription.Text = "Savestates"; - // - // SGBrowseScreenshots - // - this.SGBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGBrowseScreenshots.Location = new System.Drawing.Point(300, 148); - this.SGBrowseScreenshots.Name = "SGBrowseScreenshots"; - this.SGBrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.SGBrowseScreenshots.TabIndex = 40; - this.SGBrowseScreenshots.Text = "Browse"; - this.SGBrowseScreenshots.UseVisualStyleBackColor = true; - this.SGBrowseScreenshots.Click += new System.EventHandler(this.SGBrowseScreenshots_Click); - // - // SGSavestatesBox - // - this.SGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.SGSavestatesBox.Location = new System.Drawing.Point(13, 89); - this.SGSavestatesBox.Name = "SGSavestatesBox"; - this.SGSavestatesBox.Size = new System.Drawing.Size(280, 20); - this.SGSavestatesBox.TabIndex = 34; - // - // SGBrowseSaveRAM - // - this.SGBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); - this.SGBrowseSaveRAM.Name = "SGBrowseSaveRAM"; - this.SGBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.SGBrowseSaveRAM.TabIndex = 38; - this.SGBrowseSaveRAM.Text = "Browse"; - this.SGBrowseSaveRAM.UseVisualStyleBackColor = true; - this.SGBrowseSaveRAM.Click += new System.EventHandler(this.SGBrowseSaveRAM_Click); - // - // SGSaveRAMDescription - // - this.SGSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGSaveRAMDescription.AutoSize = true; - this.SGSaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.SGSaveRAMDescription.Name = "SGSaveRAMDescription"; - this.SGSaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.SGSaveRAMDescription.TabIndex = 29; - this.SGSaveRAMDescription.Text = "Save RAM"; - // - // SGROMsDescription - // - this.SGROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGROMsDescription.AutoSize = true; - this.SGROMsDescription.Location = new System.Drawing.Point(360, 63); - this.SGROMsDescription.Name = "SGROMsDescription"; - this.SGROMsDescription.Size = new System.Drawing.Size(37, 13); - this.SGROMsDescription.TabIndex = 32; - this.SGROMsDescription.Text = "ROMs"; - // - // SGSaveRAMBox - // - this.SGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.SGSaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.SGSaveRAMBox.Name = "SGSaveRAMBox"; - this.SGSaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.SGSaveRAMBox.TabIndex = 36; - // - // SGROMsBrowse - // - this.SGROMsBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.SGROMsBrowse.Location = new System.Drawing.Point(300, 58); - this.SGROMsBrowse.Name = "SGROMsBrowse"; - this.SGROMsBrowse.Size = new System.Drawing.Size(54, 23); - this.SGROMsBrowse.TabIndex = 33; - this.SGROMsBrowse.Text = "Browse"; - this.SGROMsBrowse.UseVisualStyleBackColor = true; - this.SGROMsBrowse.Click += new System.EventHandler(this.SGROMsBrowse_Click); - // - // tabPage8 - // - this.tabPage8.Controls.Add(this.GGCheatsDescription); - this.tabPage8.Controls.Add(this.GGBrowseCheats); - this.tabPage8.Controls.Add(this.GGCheatsBox); - this.tabPage8.Controls.Add(this.GGBaseBox); - this.tabPage8.Controls.Add(this.GGScreenshotsBox); - this.tabPage8.Controls.Add(this.GGBaseDescription); - this.tabPage8.Controls.Add(this.GGScreenshotsDescription); - this.tabPage8.Controls.Add(this.GGBrowseBase); - this.tabPage8.Controls.Add(this.GGBrowseScreenshots); - this.tabPage8.Controls.Add(this.GGROMBox); - this.tabPage8.Controls.Add(this.GGBrowseSavestates); - this.tabPage8.Controls.Add(this.GGSavestatesDescription); - this.tabPage8.Controls.Add(this.GGROMsDescription); - this.tabPage8.Controls.Add(this.GGSavestatesBox); - this.tabPage8.Controls.Add(this.GGBrowseROMs); - this.tabPage8.Controls.Add(this.GGBrowseSaveRAM); - this.tabPage8.Controls.Add(this.GGSaveRAMDescription); - this.tabPage8.Controls.Add(this.GGSaveRAMBox); - this.tabPage8.Location = new System.Drawing.Point(4, 22); - this.tabPage8.Name = "tabPage8"; - this.tabPage8.Size = new System.Drawing.Size(435, 251); - this.tabPage8.TabIndex = 7; - this.tabPage8.Text = "G. Gear"; - this.tabPage8.UseVisualStyleBackColor = true; - // - // GGCheatsDescription - // - this.GGCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGCheatsDescription.AutoSize = true; - this.GGCheatsDescription.Location = new System.Drawing.Point(360, 183); - this.GGCheatsDescription.Name = "GGCheatsDescription"; - this.GGCheatsDescription.Size = new System.Drawing.Size(40, 13); - this.GGCheatsDescription.TabIndex = 44; - this.GGCheatsDescription.Text = "Cheats"; - // - // GGBrowseCheats - // - this.GGBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBrowseCheats.Location = new System.Drawing.Point(300, 178); - this.GGBrowseCheats.Name = "GGBrowseCheats"; - this.GGBrowseCheats.Size = new System.Drawing.Size(54, 23); - this.GGBrowseCheats.TabIndex = 54; - this.GGBrowseCheats.Text = "Browse"; - this.GGBrowseCheats.UseVisualStyleBackColor = true; - this.GGBrowseCheats.Click += new System.EventHandler(this.GGBrowseCheats_Click); - // - // GGCheatsBox - // - this.GGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GGCheatsBox.Location = new System.Drawing.Point(13, 179); - this.GGCheatsBox.Name = "GGCheatsBox"; - this.GGCheatsBox.Size = new System.Drawing.Size(280, 20); - this.GGCheatsBox.TabIndex = 53; - // - // GGBaseBox - // - this.GGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GGBaseBox.Location = new System.Drawing.Point(13, 21); - this.GGBaseBox.Name = "GGBaseBox"; - this.GGBaseBox.Size = new System.Drawing.Size(280, 20); - this.GGBaseBox.TabIndex = 43; - // - // GGScreenshotsBox - // - this.GGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GGScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.GGScreenshotsBox.Name = "GGScreenshotsBox"; - this.GGScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.GGScreenshotsBox.TabIndex = 51; - // - // GGBaseDescription - // - this.GGBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBaseDescription.AutoSize = true; - this.GGBaseDescription.Location = new System.Drawing.Point(360, 25); - this.GGBaseDescription.Name = "GGBaseDescription"; - this.GGBaseDescription.Size = new System.Drawing.Size(31, 13); - this.GGBaseDescription.TabIndex = 41; - this.GGBaseDescription.Text = "Base"; - // - // GGScreenshotsDescription - // - this.GGScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGScreenshotsDescription.AutoSize = true; - this.GGScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.GGScreenshotsDescription.Name = "GGScreenshotsDescription"; - this.GGScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.GGScreenshotsDescription.TabIndex = 38; - this.GGScreenshotsDescription.Text = "Screenshots"; - // - // GGBrowseBase - // - this.GGBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBrowseBase.Location = new System.Drawing.Point(300, 20); - this.GGBrowseBase.Name = "GGBrowseBase"; - this.GGBrowseBase.Size = new System.Drawing.Size(54, 23); - this.GGBrowseBase.TabIndex = 44; - this.GGBrowseBase.Text = "Browse"; - this.GGBrowseBase.UseVisualStyleBackColor = true; - this.GGBrowseBase.Click += new System.EventHandler(this.GGBrowseBase_Click); - // - // GGBrowseScreenshots - // - this.GGBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBrowseScreenshots.Location = new System.Drawing.Point(300, 148); - this.GGBrowseScreenshots.Name = "GGBrowseScreenshots"; - this.GGBrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.GGBrowseScreenshots.TabIndex = 52; - this.GGBrowseScreenshots.Text = "Browse"; - this.GGBrowseScreenshots.UseVisualStyleBackColor = true; - this.GGBrowseScreenshots.Click += new System.EventHandler(this.GGBrowseScreenshots_Click); - // - // GGROMBox - // - this.GGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GGROMBox.Location = new System.Drawing.Point(13, 59); - this.GGROMBox.Name = "GGROMBox"; - this.GGROMBox.Size = new System.Drawing.Size(280, 20); - this.GGROMBox.TabIndex = 45; - // - // GGBrowseSavestates - // - this.GGBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBrowseSavestates.Location = new System.Drawing.Point(300, 88); - this.GGBrowseSavestates.Name = "GGBrowseSavestates"; - this.GGBrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.GGBrowseSavestates.TabIndex = 48; - this.GGBrowseSavestates.Text = "Browse"; - this.GGBrowseSavestates.UseVisualStyleBackColor = true; - this.GGBrowseSavestates.Click += new System.EventHandler(this.GGBrowseSavestates_Click); - // - // GGSavestatesDescription - // - this.GGSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGSavestatesDescription.AutoSize = true; - this.GGSavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.GGSavestatesDescription.Name = "GGSavestatesDescription"; - this.GGSavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.GGSavestatesDescription.TabIndex = 29; - this.GGSavestatesDescription.Text = "Savestates"; - // - // GGROMsDescription - // - this.GGROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGROMsDescription.AutoSize = true; - this.GGROMsDescription.Location = new System.Drawing.Point(360, 63); - this.GGROMsDescription.Name = "GGROMsDescription"; - this.GGROMsDescription.Size = new System.Drawing.Size(37, 13); - this.GGROMsDescription.TabIndex = 35; - this.GGROMsDescription.Text = "ROMs"; - // - // GGSavestatesBox - // - this.GGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GGSavestatesBox.Location = new System.Drawing.Point(13, 89); - this.GGSavestatesBox.Name = "GGSavestatesBox"; - this.GGSavestatesBox.Size = new System.Drawing.Size(280, 20); - this.GGSavestatesBox.TabIndex = 47; - // - // GGBrowseROMs - // - this.GGBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBrowseROMs.Location = new System.Drawing.Point(300, 58); - this.GGBrowseROMs.Name = "GGBrowseROMs"; - this.GGBrowseROMs.Size = new System.Drawing.Size(54, 23); - this.GGBrowseROMs.TabIndex = 46; - this.GGBrowseROMs.Text = "Browse"; - this.GGBrowseROMs.UseVisualStyleBackColor = true; - this.GGBrowseROMs.Click += new System.EventHandler(this.GGBrowseROMs_Click); - // - // GGBrowseSaveRAM - // - this.GGBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); - this.GGBrowseSaveRAM.Name = "GGBrowseSaveRAM"; - this.GGBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.GGBrowseSaveRAM.TabIndex = 50; - this.GGBrowseSaveRAM.Text = "Browse"; - this.GGBrowseSaveRAM.UseVisualStyleBackColor = true; - this.GGBrowseSaveRAM.Click += new System.EventHandler(this.GGBrowseSaveRAM_Click); - // - // GGSaveRAMDescription - // - this.GGSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GGSaveRAMDescription.AutoSize = true; - this.GGSaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.GGSaveRAMDescription.Name = "GGSaveRAMDescription"; - this.GGSaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.GGSaveRAMDescription.TabIndex = 32; - this.GGSaveRAMDescription.Text = "Save RAM"; - // - // GGSaveRAMBox - // - this.GGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GGSaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.GGSaveRAMBox.Name = "GGSaveRAMBox"; - this.GGSaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.GGSaveRAMBox.TabIndex = 49; - // - // tabPage3 - // - this.tabPage3.Controls.Add(this.GenesisCheatsDescription); - this.tabPage3.Controls.Add(this.GenesisBrowseCheats); - this.tabPage3.Controls.Add(this.GenesisCheatsBox); - this.tabPage3.Controls.Add(this.GenesisBaseBox); - this.tabPage3.Controls.Add(this.GenesisScreenshotsBox); - this.tabPage3.Controls.Add(this.GenesisBrowseSaveRAM); - this.tabPage3.Controls.Add(this.GenesisBrowseROMs); - this.tabPage3.Controls.Add(this.GenesisBaseDescription); - this.tabPage3.Controls.Add(this.GenesisSaveRAMDescription); - this.tabPage3.Controls.Add(this.GenesisSavestatesBox); - this.tabPage3.Controls.Add(this.GenesisScreenshotsDescription); - this.tabPage3.Controls.Add(this.GenesisSaveRAMBox); - this.tabPage3.Controls.Add(this.GenesisROMsDescription); - this.tabPage3.Controls.Add(this.GenesisBrowseBase); - this.tabPage3.Controls.Add(this.GenesisSavestatesDescription); - this.tabPage3.Controls.Add(this.GenesisBrowseSavestates); - this.tabPage3.Controls.Add(this.GenesisBrowseScreenshots); - this.tabPage3.Controls.Add(this.GenesisROMsBox); - this.tabPage3.Location = new System.Drawing.Point(4, 22); - this.tabPage3.Name = "tabPage3"; - this.tabPage3.Size = new System.Drawing.Size(435, 251); - this.tabPage3.TabIndex = 2; - this.tabPage3.Text = "Genesis"; - this.tabPage3.UseVisualStyleBackColor = true; - // - // GenesisCheatsDescription - // - this.GenesisCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisCheatsDescription.AutoSize = true; - this.GenesisCheatsDescription.Location = new System.Drawing.Point(360, 183); - this.GenesisCheatsDescription.Name = "GenesisCheatsDescription"; - this.GenesisCheatsDescription.Size = new System.Drawing.Size(40, 13); - this.GenesisCheatsDescription.TabIndex = 39; - this.GenesisCheatsDescription.Text = "Cheats"; - // - // GenesisBrowseCheats - // - this.GenesisBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBrowseCheats.Location = new System.Drawing.Point(300, 178); - this.GenesisBrowseCheats.Name = "GenesisBrowseCheats"; - this.GenesisBrowseCheats.Size = new System.Drawing.Size(54, 23); - this.GenesisBrowseCheats.TabIndex = 71; - this.GenesisBrowseCheats.Text = "Browse"; - this.GenesisBrowseCheats.UseVisualStyleBackColor = true; - this.GenesisBrowseCheats.Click += new System.EventHandler(this.GenesisBrowseCheats_Click); - // - // GenesisCheatsBox - // - this.GenesisCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisCheatsBox.Location = new System.Drawing.Point(13, 179); - this.GenesisCheatsBox.Name = "GenesisCheatsBox"; - this.GenesisCheatsBox.Size = new System.Drawing.Size(280, 20); - this.GenesisCheatsBox.TabIndex = 70; - // - // GenesisBaseBox - // - this.GenesisBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBaseBox.Location = new System.Drawing.Point(13, 21); - this.GenesisBaseBox.Name = "GenesisBaseBox"; - this.GenesisBaseBox.Size = new System.Drawing.Size(280, 20); - this.GenesisBaseBox.TabIndex = 60; - // - // GenesisScreenshotsBox - // - this.GenesisScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.GenesisScreenshotsBox.Name = "GenesisScreenshotsBox"; - this.GenesisScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.GenesisScreenshotsBox.TabIndex = 68; - // - // GenesisBrowseSaveRAM - // - this.GenesisBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); - this.GenesisBrowseSaveRAM.Name = "GenesisBrowseSaveRAM"; - this.GenesisBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.GenesisBrowseSaveRAM.TabIndex = 67; - this.GenesisBrowseSaveRAM.Text = "Browse"; - this.GenesisBrowseSaveRAM.UseVisualStyleBackColor = true; - this.GenesisBrowseSaveRAM.Click += new System.EventHandler(this.GenesisBrowseSaveRAM_Click); - // - // GenesisBrowseROMs - // - this.GenesisBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBrowseROMs.Location = new System.Drawing.Point(300, 58); - this.GenesisBrowseROMs.Name = "GenesisBrowseROMs"; - this.GenesisBrowseROMs.Size = new System.Drawing.Size(54, 23); - this.GenesisBrowseROMs.TabIndex = 63; - this.GenesisBrowseROMs.Text = "Browse"; - this.GenesisBrowseROMs.UseVisualStyleBackColor = true; - this.GenesisBrowseROMs.Click += new System.EventHandler(this.GenesisBrowseROMs_Click); - // - // GenesisBaseDescription - // - this.GenesisBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBaseDescription.AutoSize = true; - this.GenesisBaseDescription.Location = new System.Drawing.Point(360, 25); - this.GenesisBaseDescription.Name = "GenesisBaseDescription"; - this.GenesisBaseDescription.Size = new System.Drawing.Size(31, 13); - this.GenesisBaseDescription.TabIndex = 36; - this.GenesisBaseDescription.Text = "Base"; - // - // GenesisSaveRAMDescription - // - this.GenesisSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisSaveRAMDescription.AutoSize = true; - this.GenesisSaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.GenesisSaveRAMDescription.Name = "GenesisSaveRAMDescription"; - this.GenesisSaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.GenesisSaveRAMDescription.TabIndex = 27; - this.GenesisSaveRAMDescription.Text = "Save RAM"; - // - // GenesisSavestatesBox - // - this.GenesisSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisSavestatesBox.Location = new System.Drawing.Point(13, 89); - this.GenesisSavestatesBox.Name = "GenesisSavestatesBox"; - this.GenesisSavestatesBox.Size = new System.Drawing.Size(280, 20); - this.GenesisSavestatesBox.TabIndex = 64; - // - // GenesisScreenshotsDescription - // - this.GenesisScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisScreenshotsDescription.AutoSize = true; - this.GenesisScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.GenesisScreenshotsDescription.Name = "GenesisScreenshotsDescription"; - this.GenesisScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.GenesisScreenshotsDescription.TabIndex = 33; - this.GenesisScreenshotsDescription.Text = "Screenshots"; - // - // GenesisSaveRAMBox - // - this.GenesisSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisSaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.GenesisSaveRAMBox.Name = "GenesisSaveRAMBox"; - this.GenesisSaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.GenesisSaveRAMBox.TabIndex = 66; - // - // GenesisROMsDescription - // - this.GenesisROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisROMsDescription.AutoSize = true; - this.GenesisROMsDescription.Location = new System.Drawing.Point(360, 63); - this.GenesisROMsDescription.Name = "GenesisROMsDescription"; - this.GenesisROMsDescription.Size = new System.Drawing.Size(37, 13); - this.GenesisROMsDescription.TabIndex = 30; - this.GenesisROMsDescription.Text = "ROMs"; - // - // GenesisBrowseBase - // - this.GenesisBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBrowseBase.Location = new System.Drawing.Point(300, 20); - this.GenesisBrowseBase.Name = "GenesisBrowseBase"; - this.GenesisBrowseBase.Size = new System.Drawing.Size(54, 23); - this.GenesisBrowseBase.TabIndex = 61; - this.GenesisBrowseBase.Text = "Browse"; - this.GenesisBrowseBase.UseVisualStyleBackColor = true; - this.GenesisBrowseBase.Click += new System.EventHandler(this.GenesisBrowseBase_Click); - // - // GenesisSavestatesDescription - // - this.GenesisSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisSavestatesDescription.AutoSize = true; - this.GenesisSavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.GenesisSavestatesDescription.Name = "GenesisSavestatesDescription"; - this.GenesisSavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.GenesisSavestatesDescription.TabIndex = 24; - this.GenesisSavestatesDescription.Text = "Savestates"; - // - // GenesisBrowseSavestates - // - this.GenesisBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBrowseSavestates.Location = new System.Drawing.Point(300, 88); - this.GenesisBrowseSavestates.Name = "GenesisBrowseSavestates"; - this.GenesisBrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.GenesisBrowseSavestates.TabIndex = 65; - this.GenesisBrowseSavestates.Text = "Browse"; - this.GenesisBrowseSavestates.UseVisualStyleBackColor = true; - this.GenesisBrowseSavestates.Click += new System.EventHandler(this.GenesisBrowseSavestates_Click); - // - // GenesisBrowseScreenshots - // - this.GenesisBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisBrowseScreenshots.Location = new System.Drawing.Point(300, 148); - this.GenesisBrowseScreenshots.Name = "GenesisBrowseScreenshots"; - this.GenesisBrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.GenesisBrowseScreenshots.TabIndex = 69; - this.GenesisBrowseScreenshots.Text = "Browse"; - this.GenesisBrowseScreenshots.UseVisualStyleBackColor = true; - this.GenesisBrowseScreenshots.Click += new System.EventHandler(this.GenesisBrowseScreenshots_Click); - // - // GenesisROMsBox - // - this.GenesisROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GenesisROMsBox.Location = new System.Drawing.Point(13, 59); - this.GenesisROMsBox.Name = "GenesisROMsBox"; - this.GenesisROMsBox.Size = new System.Drawing.Size(280, 20); - this.GenesisROMsBox.TabIndex = 62; - // - // tabPage4 - // - this.tabPage4.Controls.Add(this.PCECheatsDescription); - this.tabPage4.Controls.Add(this.PCEBrowseCheats); - this.tabPage4.Controls.Add(this.PCECheatsBox); - this.tabPage4.Controls.Add(this.PCEBaseBox); - this.tabPage4.Controls.Add(this.PCEScreenshotsBox); - this.tabPage4.Controls.Add(this.PCEBaseDescription); - this.tabPage4.Controls.Add(this.PCEScreenshotsDescription); - this.tabPage4.Controls.Add(this.PCEBrowseBase); - this.tabPage4.Controls.Add(this.PCEBrowseScreenshots); - this.tabPage4.Controls.Add(this.PCEROMsBox); - this.tabPage4.Controls.Add(this.PCEBrowseSavestates); - this.tabPage4.Controls.Add(this.PCESavestatesDescription); - this.tabPage4.Controls.Add(this.PCEROMsDescription); - this.tabPage4.Controls.Add(this.PCESavestatesBox); - this.tabPage4.Controls.Add(this.PCEBrowseROMs); - this.tabPage4.Controls.Add(this.PCEBrowseSaveRAM); - this.tabPage4.Controls.Add(this.PCESaveRAMDescription); - this.tabPage4.Controls.Add(this.PCESaveRAMBox); - this.tabPage4.Location = new System.Drawing.Point(4, 22); - this.tabPage4.Name = "tabPage4"; - this.tabPage4.Size = new System.Drawing.Size(435, 251); - this.tabPage4.TabIndex = 3; - this.tabPage4.Text = "PC Engine"; - this.tabPage4.UseVisualStyleBackColor = true; - // - // PCECheatsDescription - // - this.PCECheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCECheatsDescription.AutoSize = true; - this.PCECheatsDescription.Location = new System.Drawing.Point(360, 183); - this.PCECheatsDescription.Name = "PCECheatsDescription"; - this.PCECheatsDescription.Size = new System.Drawing.Size(40, 13); - this.PCECheatsDescription.TabIndex = 39; - this.PCECheatsDescription.Text = "Cheats"; - // - // PCEBrowseCheats - // - this.PCEBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBrowseCheats.Location = new System.Drawing.Point(300, 178); - this.PCEBrowseCheats.Name = "PCEBrowseCheats"; - this.PCEBrowseCheats.Size = new System.Drawing.Size(54, 23); - this.PCEBrowseCheats.TabIndex = 88; - this.PCEBrowseCheats.Text = "Browse"; - this.PCEBrowseCheats.UseVisualStyleBackColor = true; - this.PCEBrowseCheats.Click += new System.EventHandler(this.PCEBrowseCheats_Click); - // - // PCECheatsBox - // - this.PCECheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PCECheatsBox.Location = new System.Drawing.Point(13, 179); - this.PCECheatsBox.Name = "PCECheatsBox"; - this.PCECheatsBox.Size = new System.Drawing.Size(280, 20); - this.PCECheatsBox.TabIndex = 87; - // - // PCEBaseBox - // - this.PCEBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBaseBox.Location = new System.Drawing.Point(13, 21); - this.PCEBaseBox.Name = "PCEBaseBox"; - this.PCEBaseBox.Size = new System.Drawing.Size(280, 20); - this.PCEBaseBox.TabIndex = 77; - // - // PCEScreenshotsBox - // - this.PCEScreenshotsBox.AcceptsReturn = true; - this.PCEScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PCEScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.PCEScreenshotsBox.Name = "PCEScreenshotsBox"; - this.PCEScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.PCEScreenshotsBox.TabIndex = 85; - // - // PCEBaseDescription - // - this.PCEBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBaseDescription.AutoSize = true; - this.PCEBaseDescription.Location = new System.Drawing.Point(360, 25); - this.PCEBaseDescription.Name = "PCEBaseDescription"; - this.PCEBaseDescription.Size = new System.Drawing.Size(31, 13); - this.PCEBaseDescription.TabIndex = 36; - this.PCEBaseDescription.Text = "Base"; - // - // PCEScreenshotsDescription - // - this.PCEScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEScreenshotsDescription.AutoSize = true; - this.PCEScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.PCEScreenshotsDescription.Name = "PCEScreenshotsDescription"; - this.PCEScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.PCEScreenshotsDescription.TabIndex = 33; - this.PCEScreenshotsDescription.Text = "Screenshots"; - // - // PCEBrowseBase - // - this.PCEBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBrowseBase.Location = new System.Drawing.Point(300, 20); - this.PCEBrowseBase.Name = "PCEBrowseBase"; - this.PCEBrowseBase.Size = new System.Drawing.Size(54, 23); - this.PCEBrowseBase.TabIndex = 78; - this.PCEBrowseBase.Text = "Browse"; - this.PCEBrowseBase.UseVisualStyleBackColor = true; - this.PCEBrowseBase.Click += new System.EventHandler(this.PCEBrowseBase_Click); - // - // PCEBrowseScreenshots - // - this.PCEBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBrowseScreenshots.Location = new System.Drawing.Point(300, 148); - this.PCEBrowseScreenshots.Name = "PCEBrowseScreenshots"; - this.PCEBrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.PCEBrowseScreenshots.TabIndex = 86; - this.PCEBrowseScreenshots.Text = "Browse"; - this.PCEBrowseScreenshots.UseVisualStyleBackColor = true; - this.PCEBrowseScreenshots.Click += new System.EventHandler(this.PCEBrowseScreenshots_Click); - // - // PCEROMsBox - // - this.PCEROMsBox.AcceptsReturn = true; - this.PCEROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PCEROMsBox.Location = new System.Drawing.Point(13, 59); - this.PCEROMsBox.Name = "PCEROMsBox"; - this.PCEROMsBox.Size = new System.Drawing.Size(280, 20); - this.PCEROMsBox.TabIndex = 79; - // - // PCEBrowseSavestates - // - this.PCEBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBrowseSavestates.Location = new System.Drawing.Point(300, 88); - this.PCEBrowseSavestates.Name = "PCEBrowseSavestates"; - this.PCEBrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.PCEBrowseSavestates.TabIndex = 82; - this.PCEBrowseSavestates.Text = "Browse"; - this.PCEBrowseSavestates.UseVisualStyleBackColor = true; - this.PCEBrowseSavestates.Click += new System.EventHandler(this.PCEBrowseSavestates_Click); - // - // PCESavestatesDescription - // - this.PCESavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCESavestatesDescription.AutoSize = true; - this.PCESavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.PCESavestatesDescription.Name = "PCESavestatesDescription"; - this.PCESavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.PCESavestatesDescription.TabIndex = 24; - this.PCESavestatesDescription.Text = "Savestates"; - // - // PCEROMsDescription - // - this.PCEROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEROMsDescription.AutoSize = true; - this.PCEROMsDescription.Location = new System.Drawing.Point(360, 63); - this.PCEROMsDescription.Name = "PCEROMsDescription"; - this.PCEROMsDescription.Size = new System.Drawing.Size(37, 13); - this.PCEROMsDescription.TabIndex = 30; - this.PCEROMsDescription.Text = "ROMs"; - // - // PCESavestatesBox - // - this.PCESavestatesBox.AcceptsTab = true; - this.PCESavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PCESavestatesBox.Location = new System.Drawing.Point(13, 89); - this.PCESavestatesBox.Name = "PCESavestatesBox"; - this.PCESavestatesBox.Size = new System.Drawing.Size(280, 20); - this.PCESavestatesBox.TabIndex = 81; - // - // PCEBrowseROMs - // - this.PCEBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBrowseROMs.Location = new System.Drawing.Point(300, 58); - this.PCEBrowseROMs.Name = "PCEBrowseROMs"; - this.PCEBrowseROMs.Size = new System.Drawing.Size(54, 23); - this.PCEBrowseROMs.TabIndex = 80; - this.PCEBrowseROMs.Text = "Browse"; - this.PCEBrowseROMs.UseVisualStyleBackColor = true; - this.PCEBrowseROMs.Click += new System.EventHandler(this.PCEBrowseROMs_Click); - // - // PCEBrowseSaveRAM - // - this.PCEBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCEBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); - this.PCEBrowseSaveRAM.Name = "PCEBrowseSaveRAM"; - this.PCEBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.PCEBrowseSaveRAM.TabIndex = 84; - this.PCEBrowseSaveRAM.Text = "Browse"; - this.PCEBrowseSaveRAM.UseVisualStyleBackColor = true; - this.PCEBrowseSaveRAM.Click += new System.EventHandler(this.PCEBrowseSaveRAM_Click); - // - // PCESaveRAMDescription - // - this.PCESaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PCESaveRAMDescription.AutoSize = true; - this.PCESaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.PCESaveRAMDescription.Name = "PCESaveRAMDescription"; - this.PCESaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.PCESaveRAMDescription.TabIndex = 27; - this.PCESaveRAMDescription.Text = "Save RAM"; - // - // PCESaveRAMBox - // - this.PCESaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.PCESaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.PCESaveRAMBox.Name = "PCESaveRAMBox"; - this.PCESaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.PCESaveRAMBox.TabIndex = 83; - // - // tabPage5 - // - this.tabPage5.Controls.Add(this.GBCheatsDescription); - this.tabPage5.Controls.Add(this.GBBrowseCheats); - this.tabPage5.Controls.Add(this.GBCheatsBox); - this.tabPage5.Controls.Add(this.GBBaseBox); - this.tabPage5.Controls.Add(this.GBScreenshotsBox); - this.tabPage5.Controls.Add(this.GBBaseDescription); - this.tabPage5.Controls.Add(this.GBScreenshotsDescription); - this.tabPage5.Controls.Add(this.GBBrowseBase); - this.tabPage5.Controls.Add(this.GBBrowseScreenshots); - this.tabPage5.Controls.Add(this.GBROMsBox); - this.tabPage5.Controls.Add(this.GBBrowseSavestates); - this.tabPage5.Controls.Add(this.GBSavestatesDescription); - this.tabPage5.Controls.Add(this.GBROMsDescription); - this.tabPage5.Controls.Add(this.GBSavestatesBox); - this.tabPage5.Controls.Add(this.GBBrowseROMs); - this.tabPage5.Controls.Add(this.GBBrowseSaveRAM); - this.tabPage5.Controls.Add(this.GBSaveRAMDescription); - this.tabPage5.Controls.Add(this.GBSaveRAMBox); - this.tabPage5.Location = new System.Drawing.Point(4, 22); - this.tabPage5.Name = "tabPage5"; - this.tabPage5.Size = new System.Drawing.Size(435, 251); - this.tabPage5.TabIndex = 4; - this.tabPage5.Text = "Gameboy"; - this.tabPage5.UseVisualStyleBackColor = true; - // - // GBCheatsDescription - // - this.GBCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBCheatsDescription.AutoSize = true; - this.GBCheatsDescription.Location = new System.Drawing.Point(360, 183); - this.GBCheatsDescription.Name = "GBCheatsDescription"; - this.GBCheatsDescription.Size = new System.Drawing.Size(40, 13); - this.GBCheatsDescription.TabIndex = 39; - this.GBCheatsDescription.Text = "Cheats"; - // - // GBBrowseCheats - // - this.GBBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBrowseCheats.Location = new System.Drawing.Point(300, 178); - this.GBBrowseCheats.Name = "GBBrowseCheats"; - this.GBBrowseCheats.Size = new System.Drawing.Size(54, 23); - this.GBBrowseCheats.TabIndex = 101; - this.GBBrowseCheats.Text = "Browse"; - this.GBBrowseCheats.UseVisualStyleBackColor = true; - this.GBBrowseCheats.Click += new System.EventHandler(this.GBBrowseCheats_Click); - // - // GBCheatsBox - // - this.GBCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GBCheatsBox.Location = new System.Drawing.Point(13, 179); - this.GBCheatsBox.Name = "GBCheatsBox"; - this.GBCheatsBox.Size = new System.Drawing.Size(280, 20); - this.GBCheatsBox.TabIndex = 100; - // - // GBBaseBox - // - this.GBBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GBBaseBox.Location = new System.Drawing.Point(13, 21); - this.GBBaseBox.Name = "GBBaseBox"; - this.GBBaseBox.Size = new System.Drawing.Size(280, 20); - this.GBBaseBox.TabIndex = 90; - // - // GBScreenshotsBox - // - this.GBScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GBScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.GBScreenshotsBox.Name = "GBScreenshotsBox"; - this.GBScreenshotsBox.Size = new System.Drawing.Size(280, 20); - this.GBScreenshotsBox.TabIndex = 98; - // - // GBBaseDescription - // - this.GBBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBaseDescription.AutoSize = true; - this.GBBaseDescription.Location = new System.Drawing.Point(360, 25); - this.GBBaseDescription.Name = "GBBaseDescription"; - this.GBBaseDescription.Size = new System.Drawing.Size(31, 13); - this.GBBaseDescription.TabIndex = 36; - this.GBBaseDescription.Text = "Base"; - // - // GBScreenshotsDescription - // - this.GBScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBScreenshotsDescription.AutoSize = true; - this.GBScreenshotsDescription.Location = new System.Drawing.Point(360, 153); - this.GBScreenshotsDescription.Name = "GBScreenshotsDescription"; - this.GBScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.GBScreenshotsDescription.TabIndex = 33; - this.GBScreenshotsDescription.Text = "Screenshots"; - // - // GBBrowseBase - // - this.GBBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBrowseBase.Location = new System.Drawing.Point(300, 20); - this.GBBrowseBase.Name = "GBBrowseBase"; - this.GBBrowseBase.Size = new System.Drawing.Size(54, 23); - this.GBBrowseBase.TabIndex = 91; - this.GBBrowseBase.Text = "Browse"; - this.GBBrowseBase.UseVisualStyleBackColor = true; - this.GBBrowseBase.Click += new System.EventHandler(this.GBBrowseBase_Click); - // - // GBBrowseScreenshots - // - this.GBBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBrowseScreenshots.Location = new System.Drawing.Point(300, 148); - this.GBBrowseScreenshots.Name = "GBBrowseScreenshots"; - this.GBBrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.GBBrowseScreenshots.TabIndex = 99; - this.GBBrowseScreenshots.Text = "Browse"; - this.GBBrowseScreenshots.UseVisualStyleBackColor = true; - this.GBBrowseScreenshots.Click += new System.EventHandler(this.GBBrowseScreenshots_Click); - // - // GBROMsBox - // - this.GBROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GBROMsBox.Location = new System.Drawing.Point(13, 59); - this.GBROMsBox.Name = "GBROMsBox"; - this.GBROMsBox.Size = new System.Drawing.Size(280, 20); - this.GBROMsBox.TabIndex = 92; - // - // GBBrowseSavestates - // - this.GBBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBrowseSavestates.Location = new System.Drawing.Point(300, 88); - this.GBBrowseSavestates.Name = "GBBrowseSavestates"; - this.GBBrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.GBBrowseSavestates.TabIndex = 95; - this.GBBrowseSavestates.Text = "Browse"; - this.GBBrowseSavestates.UseVisualStyleBackColor = true; - this.GBBrowseSavestates.Click += new System.EventHandler(this.GBBrowseSavestates_Click); - // - // GBSavestatesDescription - // - this.GBSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBSavestatesDescription.AutoSize = true; - this.GBSavestatesDescription.Location = new System.Drawing.Point(360, 93); - this.GBSavestatesDescription.Name = "GBSavestatesDescription"; - this.GBSavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.GBSavestatesDescription.TabIndex = 24; - this.GBSavestatesDescription.Text = "Savestates"; - // - // GBROMsDescription - // - this.GBROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBROMsDescription.AutoSize = true; - this.GBROMsDescription.Location = new System.Drawing.Point(360, 63); - this.GBROMsDescription.Name = "GBROMsDescription"; - this.GBROMsDescription.Size = new System.Drawing.Size(37, 13); - this.GBROMsDescription.TabIndex = 30; - this.GBROMsDescription.Text = "ROMs"; - // - // GBSavestatesBox - // - this.GBSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GBSavestatesBox.Location = new System.Drawing.Point(13, 89); - this.GBSavestatesBox.Name = "GBSavestatesBox"; - this.GBSavestatesBox.Size = new System.Drawing.Size(280, 20); - this.GBSavestatesBox.TabIndex = 94; - // - // GBBrowseROMs - // - this.GBBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBrowseROMs.Location = new System.Drawing.Point(300, 58); - this.GBBrowseROMs.Name = "GBBrowseROMs"; - this.GBBrowseROMs.Size = new System.Drawing.Size(54, 23); - this.GBBrowseROMs.TabIndex = 93; - this.GBBrowseROMs.Text = "Browse"; - this.GBBrowseROMs.UseVisualStyleBackColor = true; - this.GBBrowseROMs.Click += new System.EventHandler(this.GBBrowseROMs_Click); - // - // GBBrowseSaveRAM - // - this.GBBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); - this.GBBrowseSaveRAM.Name = "GBBrowseSaveRAM"; - this.GBBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.GBBrowseSaveRAM.TabIndex = 97; - this.GBBrowseSaveRAM.Text = "Browse"; - this.GBBrowseSaveRAM.UseVisualStyleBackColor = true; - this.GBBrowseSaveRAM.Click += new System.EventHandler(this.GBBrowseSaveRAM_Click); - // - // GBSaveRAMDescription - // - this.GBSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GBSaveRAMDescription.AutoSize = true; - this.GBSaveRAMDescription.Location = new System.Drawing.Point(360, 123); - this.GBSaveRAMDescription.Name = "GBSaveRAMDescription"; - this.GBSaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.GBSaveRAMDescription.TabIndex = 27; - this.GBSaveRAMDescription.Text = "Save RAM"; - // - // GBSaveRAMBox - // - this.GBSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.GBSaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.GBSaveRAMBox.Name = "GBSaveRAMBox"; - this.GBSaveRAMBox.Size = new System.Drawing.Size(280, 20); - this.GBSaveRAMBox.TabIndex = 96; - // - // tabPage6 - // - this.tabPage6.Controls.Add(this.TI83CheatsDescription); - this.tabPage6.Controls.Add(this.TI83BrowseBox); - this.tabPage6.Controls.Add(this.TI83CheatsBox); - this.tabPage6.Controls.Add(this.TI83BaseBox); - this.tabPage6.Controls.Add(this.TI83ScreenshotsBox); - this.tabPage6.Controls.Add(this.TI83BaseDescription); - this.tabPage6.Controls.Add(this.TI83ScreenshotsDescription); - this.tabPage6.Controls.Add(this.TI83BrowseBase); - this.tabPage6.Controls.Add(this.TI83BrowseScreenshots); - this.tabPage6.Controls.Add(this.TI83ROMsBox); - this.tabPage6.Controls.Add(this.TI83BrowseSavestates); - this.tabPage6.Controls.Add(this.TI83SavestatesDescription); - this.tabPage6.Controls.Add(this.TI83ROMsDescription); - this.tabPage6.Controls.Add(this.TI83SavestatesBox); - this.tabPage6.Controls.Add(this.TI83BrowseROMs); - this.tabPage6.Controls.Add(this.TI83BrowseSaveRAM); - this.tabPage6.Controls.Add(this.TI83SaveRAMDescription); - this.tabPage6.Controls.Add(this.TI83SaveRAMBox); - this.tabPage6.Location = new System.Drawing.Point(4, 22); - this.tabPage6.Name = "tabPage6"; - this.tabPage6.Size = new System.Drawing.Size(452, 251); - this.tabPage6.TabIndex = 5; - this.tabPage6.Text = "TI83"; - this.tabPage6.UseVisualStyleBackColor = true; - // - // TI83CheatsDescription - // - this.TI83CheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83CheatsDescription.AutoSize = true; - this.TI83CheatsDescription.Location = new System.Drawing.Point(377, 183); - this.TI83CheatsDescription.Name = "TI83CheatsDescription"; - this.TI83CheatsDescription.Size = new System.Drawing.Size(40, 13); - this.TI83CheatsDescription.TabIndex = 39; - this.TI83CheatsDescription.Text = "Cheats"; - // - // TI83BrowseBox - // - this.TI83BrowseBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BrowseBox.Location = new System.Drawing.Point(317, 178); - this.TI83BrowseBox.Name = "TI83BrowseBox"; - this.TI83BrowseBox.Size = new System.Drawing.Size(54, 23); - this.TI83BrowseBox.TabIndex = 113; - this.TI83BrowseBox.Text = "Browse"; - this.TI83BrowseBox.UseVisualStyleBackColor = true; - this.TI83BrowseBox.Click += new System.EventHandler(this.TI83BrowseBox_Click); - // - // TI83CheatsBox - // - this.TI83CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.TI83CheatsBox.Location = new System.Drawing.Point(13, 179); - this.TI83CheatsBox.Name = "TI83CheatsBox"; - this.TI83CheatsBox.Size = new System.Drawing.Size(297, 20); - this.TI83CheatsBox.TabIndex = 112; - // - // TI83BaseBox - // - this.TI83BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BaseBox.Location = new System.Drawing.Point(13, 21); - this.TI83BaseBox.Name = "TI83BaseBox"; - this.TI83BaseBox.Size = new System.Drawing.Size(297, 20); - this.TI83BaseBox.TabIndex = 102; - // - // TI83ScreenshotsBox - // - this.TI83ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.TI83ScreenshotsBox.Location = new System.Drawing.Point(13, 149); - this.TI83ScreenshotsBox.Name = "TI83ScreenshotsBox"; - this.TI83ScreenshotsBox.Size = new System.Drawing.Size(297, 20); - this.TI83ScreenshotsBox.TabIndex = 110; - // - // TI83BaseDescription - // - this.TI83BaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BaseDescription.AutoSize = true; - this.TI83BaseDescription.Location = new System.Drawing.Point(377, 25); - this.TI83BaseDescription.Name = "TI83BaseDescription"; - this.TI83BaseDescription.Size = new System.Drawing.Size(31, 13); - this.TI83BaseDescription.TabIndex = 36; - this.TI83BaseDescription.Text = "Base"; - // - // TI83ScreenshotsDescription - // - this.TI83ScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83ScreenshotsDescription.AutoSize = true; - this.TI83ScreenshotsDescription.Location = new System.Drawing.Point(377, 153); - this.TI83ScreenshotsDescription.Name = "TI83ScreenshotsDescription"; - this.TI83ScreenshotsDescription.Size = new System.Drawing.Size(66, 13); - this.TI83ScreenshotsDescription.TabIndex = 33; - this.TI83ScreenshotsDescription.Text = "Screenshots"; - // - // TI83BrowseBase - // - this.TI83BrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BrowseBase.Location = new System.Drawing.Point(317, 20); - this.TI83BrowseBase.Name = "TI83BrowseBase"; - this.TI83BrowseBase.Size = new System.Drawing.Size(54, 23); - this.TI83BrowseBase.TabIndex = 103; - this.TI83BrowseBase.Text = "Browse"; - this.TI83BrowseBase.UseVisualStyleBackColor = true; - this.TI83BrowseBase.Click += new System.EventHandler(this.TI83BrowseBase_Click); - // - // TI83BrowseScreenshots - // - this.TI83BrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BrowseScreenshots.Location = new System.Drawing.Point(317, 148); - this.TI83BrowseScreenshots.Name = "TI83BrowseScreenshots"; - this.TI83BrowseScreenshots.Size = new System.Drawing.Size(54, 23); - this.TI83BrowseScreenshots.TabIndex = 111; - this.TI83BrowseScreenshots.Text = "Browse"; - this.TI83BrowseScreenshots.UseVisualStyleBackColor = true; - this.TI83BrowseScreenshots.Click += new System.EventHandler(this.TI83BrowseScreenshots_Click); - // - // TI83ROMsBox - // - this.TI83ROMsBox.AcceptsTab = true; - this.TI83ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.TI83ROMsBox.Location = new System.Drawing.Point(13, 59); - this.TI83ROMsBox.Name = "TI83ROMsBox"; - this.TI83ROMsBox.Size = new System.Drawing.Size(297, 20); - this.TI83ROMsBox.TabIndex = 104; - // - // TI83BrowseSavestates - // - this.TI83BrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BrowseSavestates.Location = new System.Drawing.Point(317, 88); - this.TI83BrowseSavestates.Name = "TI83BrowseSavestates"; - this.TI83BrowseSavestates.Size = new System.Drawing.Size(54, 23); - this.TI83BrowseSavestates.TabIndex = 107; - this.TI83BrowseSavestates.Text = "Browse"; - this.TI83BrowseSavestates.UseVisualStyleBackColor = true; - this.TI83BrowseSavestates.Click += new System.EventHandler(this.TI83BrowseSavestates_Click); - // - // TI83SavestatesDescription - // - this.TI83SavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83SavestatesDescription.AutoSize = true; - this.TI83SavestatesDescription.Location = new System.Drawing.Point(377, 93); - this.TI83SavestatesDescription.Name = "TI83SavestatesDescription"; - this.TI83SavestatesDescription.Size = new System.Drawing.Size(60, 13); - this.TI83SavestatesDescription.TabIndex = 24; - this.TI83SavestatesDescription.Text = "Savestates"; - // - // TI83ROMsDescription - // - this.TI83ROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83ROMsDescription.AutoSize = true; - this.TI83ROMsDescription.Location = new System.Drawing.Point(377, 63); - this.TI83ROMsDescription.Name = "TI83ROMsDescription"; - this.TI83ROMsDescription.Size = new System.Drawing.Size(37, 13); - this.TI83ROMsDescription.TabIndex = 30; - this.TI83ROMsDescription.Text = "ROMs"; - // - // TI83SavestatesBox - // - this.TI83SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.TI83SavestatesBox.Location = new System.Drawing.Point(13, 89); - this.TI83SavestatesBox.Name = "TI83SavestatesBox"; - this.TI83SavestatesBox.Size = new System.Drawing.Size(297, 20); - this.TI83SavestatesBox.TabIndex = 106; - // - // TI83BrowseROMs - // - this.TI83BrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BrowseROMs.Location = new System.Drawing.Point(317, 58); - this.TI83BrowseROMs.Name = "TI83BrowseROMs"; - this.TI83BrowseROMs.Size = new System.Drawing.Size(54, 23); - this.TI83BrowseROMs.TabIndex = 105; - this.TI83BrowseROMs.Text = "Browse"; - this.TI83BrowseROMs.UseVisualStyleBackColor = true; - this.TI83BrowseROMs.Click += new System.EventHandler(this.TI83BrowseROMs_Click); - // - // TI83BrowseSaveRAM - // - this.TI83BrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83BrowseSaveRAM.Location = new System.Drawing.Point(317, 118); - this.TI83BrowseSaveRAM.Name = "TI83BrowseSaveRAM"; - this.TI83BrowseSaveRAM.Size = new System.Drawing.Size(54, 23); - this.TI83BrowseSaveRAM.TabIndex = 109; - this.TI83BrowseSaveRAM.Text = "Browse"; - this.TI83BrowseSaveRAM.UseVisualStyleBackColor = true; - this.TI83BrowseSaveRAM.Click += new System.EventHandler(this.TI83BrowseSaveRAM_Click); - // - // TI83SaveRAMDescription - // - this.TI83SaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.TI83SaveRAMDescription.AutoSize = true; - this.TI83SaveRAMDescription.Location = new System.Drawing.Point(377, 123); - this.TI83SaveRAMDescription.Name = "TI83SaveRAMDescription"; - this.TI83SaveRAMDescription.Size = new System.Drawing.Size(59, 13); - this.TI83SaveRAMDescription.TabIndex = 27; - this.TI83SaveRAMDescription.Text = "Save RAM"; - // - // TI83SaveRAMBox - // - this.TI83SaveRAMBox.AcceptsTab = true; - this.TI83SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.TI83SaveRAMBox.Location = new System.Drawing.Point(13, 119); - this.TI83SaveRAMBox.Name = "TI83SaveRAMBox"; - this.TI83SaveRAMBox.Size = new System.Drawing.Size(297, 20); - this.TI83SaveRAMBox.TabIndex = 108; - // - // tabPage7 - // - this.tabPage7.Controls.Add(this.AVIBox); - this.tabPage7.Controls.Add(this.MoviesBox); - this.tabPage7.Controls.Add(this.AVIDescription); - this.tabPage7.Controls.Add(this.BrowseAVI); - this.tabPage7.Controls.Add(this.WatchBox); - this.tabPage7.Controls.Add(this.BrowseLua); - this.tabPage7.Controls.Add(this.WatchDescription); - this.tabPage7.Controls.Add(this.LuaDescription); - this.tabPage7.Controls.Add(this.BrowseWatch); - this.tabPage7.Controls.Add(this.LuaBox); - this.tabPage7.Controls.Add(this.BrowseMovies); - this.tabPage7.Controls.Add(this.MoviesDescription); - this.tabPage7.Location = new System.Drawing.Point(4, 22); - this.tabPage7.Name = "tabPage7"; - this.tabPage7.Size = new System.Drawing.Size(452, 251); - this.tabPage7.TabIndex = 6; - this.tabPage7.Text = "Tools"; - this.tabPage7.UseVisualStyleBackColor = true; - // - // BasePathBox - // - this.BasePathBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.BasePathBox.Location = new System.Drawing.Point(29, 27); - this.BasePathBox.Name = "BasePathBox"; - this.BasePathBox.Size = new System.Drawing.Size(298, 20); - this.BasePathBox.TabIndex = 0; - // - // BrowseBase - // - this.BrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BrowseBase.Location = new System.Drawing.Point(334, 25); - this.BrowseBase.Name = "BrowseBase"; - this.BrowseBase.Size = new System.Drawing.Size(54, 23); - this.BrowseBase.TabIndex = 1; - this.BrowseBase.Text = "Browse"; - this.BrowseBase.UseVisualStyleBackColor = true; - this.BrowseBase.Click += new System.EventHandler(this.BrowseBase_Click); - // - // BaseDescription - // - this.BaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.BaseDescription.AutoSize = true; - this.BaseDescription.Location = new System.Drawing.Point(394, 30); - this.BaseDescription.Name = "BaseDescription"; - this.BaseDescription.Size = new System.Drawing.Size(63, 13); - this.BaseDescription.TabIndex = 25; - this.BaseDescription.Text = "Base Folder"; - // - // RecentForROMs - // - this.RecentForROMs.AutoSize = true; - this.RecentForROMs.Location = new System.Drawing.Point(29, 63); - this.RecentForROMs.Name = "RecentForROMs"; - this.RecentForROMs.Size = new System.Drawing.Size(184, 17); - this.RecentForROMs.TabIndex = 2; - this.RecentForROMs.Text = "Always use recent path for ROMs"; - this.RecentForROMs.UseVisualStyleBackColor = true; - this.RecentForROMs.CheckedChanged += new System.EventHandler(this.RecentForROMs_CheckedChanged); - // - // SaveButton - // - this.SaveButton.Location = new System.Drawing.Point(12, 390); - this.SaveButton.Name = "SaveButton"; - this.SaveButton.Size = new System.Drawing.Size(75, 23); - this.SaveButton.TabIndex = 200; - this.SaveButton.Text = "&Save"; - this.SaveButton.UseVisualStyleBackColor = true; - this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click); - // - // PathConfig - // - this.AcceptButton = this.OK; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.Cancel; - this.ClientSize = new System.Drawing.Size(485, 425); - this.Controls.Add(this.SaveButton); - this.Controls.Add(this.RecentForROMs); - this.Controls.Add(this.BasePathBox); - this.Controls.Add(this.BrowseBase); - this.Controls.Add(this.tabControl1); - this.Controls.Add(this.BaseDescription); - this.Controls.Add(this.OK); - this.Controls.Add(this.Cancel); - this.Name = "PathConfig"; - this.ShowIcon = false; - this.Text = "Path Configuration"; - this.Load += new System.EventHandler(this.PathConfig_Load); - this.tabControl1.ResumeLayout(false); - this.tabPage1.ResumeLayout(false); - this.tabPage1.PerformLayout(); - this.tabPage2.ResumeLayout(false); - this.tabPage2.PerformLayout(); - this.tabPage9.ResumeLayout(false); - this.tabPage9.PerformLayout(); - this.tabPage8.ResumeLayout(false); - this.tabPage8.PerformLayout(); - this.tabPage3.ResumeLayout(false); - this.tabPage3.PerformLayout(); - this.tabPage4.ResumeLayout(false); - this.tabPage4.PerformLayout(); - this.tabPage5.ResumeLayout(false); - this.tabPage5.PerformLayout(); - this.tabPage6.ResumeLayout(false); - this.tabPage6.PerformLayout(); - this.tabPage7.ResumeLayout(false); - this.tabPage7.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); + this.Cancel = new System.Windows.Forms.Button(); + this.OK = new System.Windows.Forms.Button(); + this.WatchBox = new System.Windows.Forms.TextBox(); + this.WatchDescription = new System.Windows.Forms.Label(); + this.BrowseWatch = new System.Windows.Forms.Button(); + this.MoviesBox = new System.Windows.Forms.TextBox(); + this.MoviesDescription = new System.Windows.Forms.Label(); + this.BrowseMovies = new System.Windows.Forms.Button(); + this.LuaBox = new System.Windows.Forms.TextBox(); + this.LuaDescription = new System.Windows.Forms.Label(); + this.BrowseLua = new System.Windows.Forms.Button(); + this.NESScreenshotsBox = new System.Windows.Forms.TextBox(); + this.NESScreenshotsDescription = new System.Windows.Forms.Label(); + this.BrowseNESScreenshots = new System.Windows.Forms.Button(); + this.NESROMsBox = new System.Windows.Forms.TextBox(); + this.NESROMsDescription = new System.Windows.Forms.Label(); + this.BrowseNESROMs = new System.Windows.Forms.Button(); + this.NESSaveRAMBox = new System.Windows.Forms.TextBox(); + this.NESSaveRAMDescription = new System.Windows.Forms.Label(); + this.BrowseNESSaveRAM = new System.Windows.Forms.Button(); + this.NESSavestatesBox = new System.Windows.Forms.TextBox(); + this.NESSavestatesDescription = new System.Windows.Forms.Label(); + this.BrowseNESSavestates = new System.Windows.Forms.Button(); + this.Sega8ScreenshotsBox = new System.Windows.Forms.TextBox(); + this.Sega8ScreenshotsDescription = new System.Windows.Forms.Label(); + this.Sega8BrowseScreenshots = new System.Windows.Forms.Button(); + this.Sega8ROMsBox = new System.Windows.Forms.TextBox(); + this.Sega8ROMsDescription = new System.Windows.Forms.Label(); + this.Sega8BrowseROMs = new System.Windows.Forms.Button(); + this.Sega8SaveRAMBox = new System.Windows.Forms.TextBox(); + this.Sega8SaveRAMDescription = new System.Windows.Forms.Label(); + this.Sega8BrowseSaveRAM = new System.Windows.Forms.Button(); + this.Sega8SavestatesBox = new System.Windows.Forms.TextBox(); + this.Sega8SavestatesDescription = new System.Windows.Forms.Label(); + this.Sega8BrowseSavestates = new System.Windows.Forms.Button(); + this.AVIBox = new System.Windows.Forms.TextBox(); + this.AVIDescription = new System.Windows.Forms.Label(); + this.BrowseAVI = new System.Windows.Forms.Button(); + this.tabControl1 = new System.Windows.Forms.TabControl(); + this.tabPage1 = new System.Windows.Forms.TabPage(); + this.NESCheatsDescription = new System.Windows.Forms.Label(); + this.NESBrowseCheats = new System.Windows.Forms.Button(); + this.NESCheatsBox = new System.Windows.Forms.TextBox(); + this.NESBaseBox = new System.Windows.Forms.TextBox(); + this.NESBaseDescription = new System.Windows.Forms.Label(); + this.BrowseNESBase = new System.Windows.Forms.Button(); + this.tabPage2 = new System.Windows.Forms.TabPage(); + this.Sega8CheatsDescription = new System.Windows.Forms.Label(); + this.Sega8BrowseCheats = new System.Windows.Forms.Button(); + this.Sega8CheatsBox = new System.Windows.Forms.TextBox(); + this.Sega8BaseBox = new System.Windows.Forms.TextBox(); + this.Sega8BaseDescription = new System.Windows.Forms.Label(); + this.Sega8BrowseBase = new System.Windows.Forms.Button(); + this.tabPage9 = new System.Windows.Forms.TabPage(); + this.SGCheatsDescription = new System.Windows.Forms.Label(); + this.SGBrowseCheats = new System.Windows.Forms.Button(); + this.SGCheatsBox = new System.Windows.Forms.TextBox(); + this.SGBaseBox = new System.Windows.Forms.TextBox(); + this.SGBaseDescription = new System.Windows.Forms.Label(); + this.SGBrowseBase = new System.Windows.Forms.Button(); + this.SGROMsBox = new System.Windows.Forms.TextBox(); + this.SGScreenshotsBox = new System.Windows.Forms.TextBox(); + this.SGBrowseSavestates = new System.Windows.Forms.Button(); + this.SGScreenshotsDescription = new System.Windows.Forms.Label(); + this.SGSavestatesDescription = new System.Windows.Forms.Label(); + this.SGBrowseScreenshots = new System.Windows.Forms.Button(); + this.SGSavestatesBox = new System.Windows.Forms.TextBox(); + this.SGBrowseSaveRAM = new System.Windows.Forms.Button(); + this.SGSaveRAMDescription = new System.Windows.Forms.Label(); + this.SGROMsDescription = new System.Windows.Forms.Label(); + this.SGSaveRAMBox = new System.Windows.Forms.TextBox(); + this.SGROMsBrowse = new System.Windows.Forms.Button(); + this.tabPage8 = new System.Windows.Forms.TabPage(); + this.GGCheatsDescription = new System.Windows.Forms.Label(); + this.GGBrowseCheats = new System.Windows.Forms.Button(); + this.GGCheatsBox = new System.Windows.Forms.TextBox(); + this.GGBaseBox = new System.Windows.Forms.TextBox(); + this.GGScreenshotsBox = new System.Windows.Forms.TextBox(); + this.GGBaseDescription = new System.Windows.Forms.Label(); + this.GGScreenshotsDescription = new System.Windows.Forms.Label(); + this.GGBrowseBase = new System.Windows.Forms.Button(); + this.GGBrowseScreenshots = new System.Windows.Forms.Button(); + this.GGROMBox = new System.Windows.Forms.TextBox(); + this.GGBrowseSavestates = new System.Windows.Forms.Button(); + this.GGSavestatesDescription = new System.Windows.Forms.Label(); + this.GGROMsDescription = new System.Windows.Forms.Label(); + this.GGSavestatesBox = new System.Windows.Forms.TextBox(); + this.GGBrowseROMs = new System.Windows.Forms.Button(); + this.GGBrowseSaveRAM = new System.Windows.Forms.Button(); + this.GGSaveRAMDescription = new System.Windows.Forms.Label(); + this.GGSaveRAMBox = new System.Windows.Forms.TextBox(); + this.tabPage3 = new System.Windows.Forms.TabPage(); + this.GenesisCheatsDescription = new System.Windows.Forms.Label(); + this.GenesisBrowseCheats = new System.Windows.Forms.Button(); + this.GenesisCheatsBox = new System.Windows.Forms.TextBox(); + this.GenesisBaseBox = new System.Windows.Forms.TextBox(); + this.GenesisScreenshotsBox = new System.Windows.Forms.TextBox(); + this.GenesisBrowseSaveRAM = new System.Windows.Forms.Button(); + this.GenesisBrowseROMs = new System.Windows.Forms.Button(); + this.GenesisBaseDescription = new System.Windows.Forms.Label(); + this.GenesisSaveRAMDescription = new System.Windows.Forms.Label(); + this.GenesisSavestatesBox = new System.Windows.Forms.TextBox(); + this.GenesisScreenshotsDescription = new System.Windows.Forms.Label(); + this.GenesisSaveRAMBox = new System.Windows.Forms.TextBox(); + this.GenesisROMsDescription = new System.Windows.Forms.Label(); + this.GenesisBrowseBase = new System.Windows.Forms.Button(); + this.GenesisSavestatesDescription = new System.Windows.Forms.Label(); + this.GenesisBrowseSavestates = new System.Windows.Forms.Button(); + this.GenesisBrowseScreenshots = new System.Windows.Forms.Button(); + this.GenesisROMsBox = new System.Windows.Forms.TextBox(); + this.tabPage4 = new System.Windows.Forms.TabPage(); + this.PCECheatsDescription = new System.Windows.Forms.Label(); + this.PCEBrowseCheats = new System.Windows.Forms.Button(); + this.PCECheatsBox = new System.Windows.Forms.TextBox(); + this.PCEBaseBox = new System.Windows.Forms.TextBox(); + this.PCEScreenshotsBox = new System.Windows.Forms.TextBox(); + this.PCEBaseDescription = new System.Windows.Forms.Label(); + this.PCEScreenshotsDescription = new System.Windows.Forms.Label(); + this.PCEBrowseBase = new System.Windows.Forms.Button(); + this.PCEBrowseScreenshots = new System.Windows.Forms.Button(); + this.PCEROMsBox = new System.Windows.Forms.TextBox(); + this.PCEBrowseSavestates = new System.Windows.Forms.Button(); + this.PCESavestatesDescription = new System.Windows.Forms.Label(); + this.PCEROMsDescription = new System.Windows.Forms.Label(); + this.PCESavestatesBox = new System.Windows.Forms.TextBox(); + this.PCEBrowseROMs = new System.Windows.Forms.Button(); + this.PCEBrowseSaveRAM = new System.Windows.Forms.Button(); + this.PCESaveRAMDescription = new System.Windows.Forms.Label(); + this.PCESaveRAMBox = new System.Windows.Forms.TextBox(); + this.tabPage5 = new System.Windows.Forms.TabPage(); + this.GBCheatsDescription = new System.Windows.Forms.Label(); + this.GBBrowseCheats = new System.Windows.Forms.Button(); + this.GBCheatsBox = new System.Windows.Forms.TextBox(); + this.GBBaseBox = new System.Windows.Forms.TextBox(); + this.GBScreenshotsBox = new System.Windows.Forms.TextBox(); + this.GBBaseDescription = new System.Windows.Forms.Label(); + this.GBScreenshotsDescription = new System.Windows.Forms.Label(); + this.GBBrowseBase = new System.Windows.Forms.Button(); + this.GBBrowseScreenshots = new System.Windows.Forms.Button(); + this.GBROMsBox = new System.Windows.Forms.TextBox(); + this.GBBrowseSavestates = new System.Windows.Forms.Button(); + this.GBSavestatesDescription = new System.Windows.Forms.Label(); + this.GBROMsDescription = new System.Windows.Forms.Label(); + this.GBSavestatesBox = new System.Windows.Forms.TextBox(); + this.GBBrowseROMs = new System.Windows.Forms.Button(); + this.GBBrowseSaveRAM = new System.Windows.Forms.Button(); + this.GBSaveRAMDescription = new System.Windows.Forms.Label(); + this.GBSaveRAMBox = new System.Windows.Forms.TextBox(); + this.tabPage6 = new System.Windows.Forms.TabPage(); + this.TI83CheatsDescription = new System.Windows.Forms.Label(); + this.TI83BrowseBox = new System.Windows.Forms.Button(); + this.TI83CheatsBox = new System.Windows.Forms.TextBox(); + this.TI83BaseBox = new System.Windows.Forms.TextBox(); + this.TI83ScreenshotsBox = new System.Windows.Forms.TextBox(); + this.TI83BaseDescription = new System.Windows.Forms.Label(); + this.TI83ScreenshotsDescription = new System.Windows.Forms.Label(); + this.TI83BrowseBase = new System.Windows.Forms.Button(); + this.TI83BrowseScreenshots = new System.Windows.Forms.Button(); + this.TI83ROMsBox = new System.Windows.Forms.TextBox(); + this.TI83BrowseSavestates = new System.Windows.Forms.Button(); + this.TI83SavestatesDescription = new System.Windows.Forms.Label(); + this.TI83ROMsDescription = new System.Windows.Forms.Label(); + this.TI83SavestatesBox = new System.Windows.Forms.TextBox(); + this.TI83BrowseROMs = new System.Windows.Forms.Button(); + this.TI83BrowseSaveRAM = new System.Windows.Forms.Button(); + this.TI83SaveRAMDescription = new System.Windows.Forms.Label(); + this.TI83SaveRAMBox = new System.Windows.Forms.TextBox(); + this.tabPage7 = new System.Windows.Forms.TabPage(); + this.BasePathBox = new System.Windows.Forms.TextBox(); + this.BrowseBase = new System.Windows.Forms.Button(); + this.BaseDescription = new System.Windows.Forms.Label(); + this.RecentForROMs = new System.Windows.Forms.CheckBox(); + this.SaveButton = new System.Windows.Forms.Button(); + this.NESPaletteBox = new System.Windows.Forms.TextBox(); + this.NESBrowsePalette = new System.Windows.Forms.Button(); + this.NESPaletteDescription = new System.Windows.Forms.Label(); + this.tabControl1.SuspendLayout(); + this.tabPage1.SuspendLayout(); + this.tabPage2.SuspendLayout(); + this.tabPage9.SuspendLayout(); + this.tabPage8.SuspendLayout(); + this.tabPage3.SuspendLayout(); + this.tabPage4.SuspendLayout(); + this.tabPage5.SuspendLayout(); + this.tabPage6.SuspendLayout(); + this.tabPage7.SuspendLayout(); + this.SuspendLayout(); + // + // Cancel + // + this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.Cancel.Location = new System.Drawing.Point(398, 390); + this.Cancel.Name = "Cancel"; + this.Cancel.Size = new System.Drawing.Size(75, 23); + this.Cancel.TabIndex = 202; + this.Cancel.Text = "&Cancel"; + this.Cancel.UseVisualStyleBackColor = true; + this.Cancel.Click += new System.EventHandler(this.Cancel_Click); + // + // OK + // + this.OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.OK.Location = new System.Drawing.Point(317, 390); + this.OK.Name = "OK"; + this.OK.Size = new System.Drawing.Size(75, 23); + this.OK.TabIndex = 201; + this.OK.Text = "&Ok"; + this.OK.UseVisualStyleBackColor = true; + this.OK.Click += new System.EventHandler(this.OK_Click); + // + // WatchBox + // + this.WatchBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.WatchBox.Location = new System.Drawing.Point(13, 89); + this.WatchBox.Name = "WatchBox"; + this.WatchBox.Size = new System.Drawing.Size(297, 20); + this.WatchBox.TabIndex = 124; + // + // WatchDescription + // + this.WatchDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.WatchDescription.AutoSize = true; + this.WatchDescription.Location = new System.Drawing.Point(377, 93); + this.WatchDescription.Name = "WatchDescription"; + this.WatchDescription.Size = new System.Drawing.Size(71, 13); + this.WatchDescription.TabIndex = 17; + this.WatchDescription.Text = "Watch (.wch)"; + // + // BrowseWatch + // + this.BrowseWatch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseWatch.Location = new System.Drawing.Point(317, 88); + this.BrowseWatch.Name = "BrowseWatch"; + this.BrowseWatch.Size = new System.Drawing.Size(54, 23); + this.BrowseWatch.TabIndex = 125; + this.BrowseWatch.Text = "Browse"; + this.BrowseWatch.UseVisualStyleBackColor = true; + this.BrowseWatch.Click += new System.EventHandler(this.BrowseWatch_Click); + // + // MoviesBox + // + this.MoviesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.MoviesBox.Location = new System.Drawing.Point(13, 21); + this.MoviesBox.Name = "MoviesBox"; + this.MoviesBox.Size = new System.Drawing.Size(297, 20); + this.MoviesBox.TabIndex = 120; + // + // MoviesDescription + // + this.MoviesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.MoviesDescription.AutoSize = true; + this.MoviesDescription.Location = new System.Drawing.Point(377, 25); + this.MoviesDescription.Name = "MoviesDescription"; + this.MoviesDescription.Size = new System.Drawing.Size(41, 13); + this.MoviesDescription.TabIndex = 13; + this.MoviesDescription.Text = "Movies"; + // + // BrowseMovies + // + this.BrowseMovies.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseMovies.Location = new System.Drawing.Point(317, 20); + this.BrowseMovies.Name = "BrowseMovies"; + this.BrowseMovies.Size = new System.Drawing.Size(54, 23); + this.BrowseMovies.TabIndex = 121; + this.BrowseMovies.Text = "Browse"; + this.BrowseMovies.UseVisualStyleBackColor = true; + this.BrowseMovies.Click += new System.EventHandler(this.BrowseMovies_Click); + // + // LuaBox + // + this.LuaBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.LuaBox.Location = new System.Drawing.Point(13, 59); + this.LuaBox.Name = "LuaBox"; + this.LuaBox.Size = new System.Drawing.Size(297, 20); + this.LuaBox.TabIndex = 122; + // + // LuaDescription + // + this.LuaDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.LuaDescription.AutoSize = true; + this.LuaDescription.Location = new System.Drawing.Point(377, 63); + this.LuaDescription.Name = "LuaDescription"; + this.LuaDescription.Size = new System.Drawing.Size(25, 13); + this.LuaDescription.TabIndex = 9; + this.LuaDescription.Text = "Lua"; + // + // BrowseLua + // + this.BrowseLua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseLua.Location = new System.Drawing.Point(317, 58); + this.BrowseLua.Name = "BrowseLua"; + this.BrowseLua.Size = new System.Drawing.Size(54, 23); + this.BrowseLua.TabIndex = 123; + this.BrowseLua.Text = "Browse"; + this.BrowseLua.UseVisualStyleBackColor = true; + this.BrowseLua.Click += new System.EventHandler(this.BrowseLua_Click); + // + // NESScreenshotsBox + // + this.NESScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.NESScreenshotsBox.Name = "NESScreenshotsBox"; + this.NESScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.NESScreenshotsBox.TabIndex = 11; + // + // NESScreenshotsDescription + // + this.NESScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESScreenshotsDescription.AutoSize = true; + this.NESScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.NESScreenshotsDescription.Name = "NESScreenshotsDescription"; + this.NESScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.NESScreenshotsDescription.TabIndex = 17; + this.NESScreenshotsDescription.Text = "Screenshots"; + // + // BrowseNESScreenshots + // + this.BrowseNESScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseNESScreenshots.Location = new System.Drawing.Point(300, 148); + this.BrowseNESScreenshots.Name = "BrowseNESScreenshots"; + this.BrowseNESScreenshots.Size = new System.Drawing.Size(54, 23); + this.BrowseNESScreenshots.TabIndex = 12; + this.BrowseNESScreenshots.Text = "Browse"; + this.BrowseNESScreenshots.UseVisualStyleBackColor = true; + this.BrowseNESScreenshots.Click += new System.EventHandler(this.BrowseNESScreenshots_Click); + // + // NESROMsBox + // + this.NESROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESROMsBox.Location = new System.Drawing.Point(13, 59); + this.NESROMsBox.Name = "NESROMsBox"; + this.NESROMsBox.Size = new System.Drawing.Size(280, 20); + this.NESROMsBox.TabIndex = 5; + // + // NESROMsDescription + // + this.NESROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESROMsDescription.AutoSize = true; + this.NESROMsDescription.Location = new System.Drawing.Point(360, 63); + this.NESROMsDescription.Name = "NESROMsDescription"; + this.NESROMsDescription.Size = new System.Drawing.Size(37, 13); + this.NESROMsDescription.TabIndex = 13; + this.NESROMsDescription.Text = "ROMs"; + // + // BrowseNESROMs + // + this.BrowseNESROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseNESROMs.Location = new System.Drawing.Point(300, 58); + this.BrowseNESROMs.Name = "BrowseNESROMs"; + this.BrowseNESROMs.Size = new System.Drawing.Size(54, 23); + this.BrowseNESROMs.TabIndex = 6; + this.BrowseNESROMs.Text = "Browse"; + this.BrowseNESROMs.UseVisualStyleBackColor = true; + this.BrowseNESROMs.Click += new System.EventHandler(this.BrowseNESROMs_Click); + // + // NESSaveRAMBox + // + this.NESSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESSaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.NESSaveRAMBox.Name = "NESSaveRAMBox"; + this.NESSaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.NESSaveRAMBox.TabIndex = 9; + // + // NESSaveRAMDescription + // + this.NESSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESSaveRAMDescription.AutoSize = true; + this.NESSaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.NESSaveRAMDescription.Name = "NESSaveRAMDescription"; + this.NESSaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.NESSaveRAMDescription.TabIndex = 9; + this.NESSaveRAMDescription.Text = "Save RAM"; + // + // BrowseNESSaveRAM + // + this.BrowseNESSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseNESSaveRAM.Location = new System.Drawing.Point(300, 118); + this.BrowseNESSaveRAM.Name = "BrowseNESSaveRAM"; + this.BrowseNESSaveRAM.Size = new System.Drawing.Size(54, 23); + this.BrowseNESSaveRAM.TabIndex = 10; + this.BrowseNESSaveRAM.Text = "Browse"; + this.BrowseNESSaveRAM.UseVisualStyleBackColor = true; + this.BrowseNESSaveRAM.Click += new System.EventHandler(this.BrowseNESSaveRAM_Click); + // + // NESSavestatesBox + // + this.NESSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESSavestatesBox.Location = new System.Drawing.Point(13, 89); + this.NESSavestatesBox.Name = "NESSavestatesBox"; + this.NESSavestatesBox.Size = new System.Drawing.Size(280, 20); + this.NESSavestatesBox.TabIndex = 7; + // + // NESSavestatesDescription + // + this.NESSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESSavestatesDescription.AutoSize = true; + this.NESSavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.NESSavestatesDescription.Name = "NESSavestatesDescription"; + this.NESSavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.NESSavestatesDescription.TabIndex = 5; + this.NESSavestatesDescription.Text = "Savestates"; + // + // BrowseNESSavestates + // + this.BrowseNESSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseNESSavestates.Location = new System.Drawing.Point(300, 88); + this.BrowseNESSavestates.Name = "BrowseNESSavestates"; + this.BrowseNESSavestates.Size = new System.Drawing.Size(54, 23); + this.BrowseNESSavestates.TabIndex = 8; + this.BrowseNESSavestates.Text = "Browse"; + this.BrowseNESSavestates.UseVisualStyleBackColor = true; + this.BrowseNESSavestates.Click += new System.EventHandler(this.BrowseNESSavestates_Click); + // + // Sega8ScreenshotsBox + // + this.Sega8ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8ScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.Sega8ScreenshotsBox.Name = "Sega8ScreenshotsBox"; + this.Sega8ScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.Sega8ScreenshotsBox.TabIndex = 23; + // + // Sega8ScreenshotsDescription + // + this.Sega8ScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8ScreenshotsDescription.AutoSize = true; + this.Sega8ScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.Sega8ScreenshotsDescription.Name = "Sega8ScreenshotsDescription"; + this.Sega8ScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.Sega8ScreenshotsDescription.TabIndex = 17; + this.Sega8ScreenshotsDescription.Text = "Screenshots"; + // + // Sega8BrowseScreenshots + // + this.Sega8BrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BrowseScreenshots.Location = new System.Drawing.Point(300, 148); + this.Sega8BrowseScreenshots.Name = "Sega8BrowseScreenshots"; + this.Sega8BrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.Sega8BrowseScreenshots.TabIndex = 24; + this.Sega8BrowseScreenshots.Text = "Browse"; + this.Sega8BrowseScreenshots.UseVisualStyleBackColor = true; + this.Sega8BrowseScreenshots.Click += new System.EventHandler(this.Sega8BrowseScreenshots_Click); + // + // Sega8ROMsBox + // + this.Sega8ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8ROMsBox.Location = new System.Drawing.Point(13, 59); + this.Sega8ROMsBox.Name = "Sega8ROMsBox"; + this.Sega8ROMsBox.Size = new System.Drawing.Size(280, 20); + this.Sega8ROMsBox.TabIndex = 17; + // + // Sega8ROMsDescription + // + this.Sega8ROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8ROMsDescription.AutoSize = true; + this.Sega8ROMsDescription.Location = new System.Drawing.Point(360, 63); + this.Sega8ROMsDescription.Name = "Sega8ROMsDescription"; + this.Sega8ROMsDescription.Size = new System.Drawing.Size(37, 13); + this.Sega8ROMsDescription.TabIndex = 13; + this.Sega8ROMsDescription.Text = "ROMs"; + // + // Sega8BrowseROMs + // + this.Sega8BrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BrowseROMs.Location = new System.Drawing.Point(300, 58); + this.Sega8BrowseROMs.Name = "Sega8BrowseROMs"; + this.Sega8BrowseROMs.Size = new System.Drawing.Size(54, 23); + this.Sega8BrowseROMs.TabIndex = 18; + this.Sega8BrowseROMs.Text = "Browse"; + this.Sega8BrowseROMs.UseVisualStyleBackColor = true; + this.Sega8BrowseROMs.Click += new System.EventHandler(this.Sega8BrowseROMs_Click); + // + // Sega8SaveRAMBox + // + this.Sega8SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8SaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.Sega8SaveRAMBox.Name = "Sega8SaveRAMBox"; + this.Sega8SaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.Sega8SaveRAMBox.TabIndex = 21; + // + // Sega8SaveRAMDescription + // + this.Sega8SaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8SaveRAMDescription.AutoSize = true; + this.Sega8SaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.Sega8SaveRAMDescription.Name = "Sega8SaveRAMDescription"; + this.Sega8SaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.Sega8SaveRAMDescription.TabIndex = 9; + this.Sega8SaveRAMDescription.Text = "Save RAM"; + // + // Sega8BrowseSaveRAM + // + this.Sega8BrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BrowseSaveRAM.Location = new System.Drawing.Point(300, 118); + this.Sega8BrowseSaveRAM.Name = "Sega8BrowseSaveRAM"; + this.Sega8BrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.Sega8BrowseSaveRAM.TabIndex = 22; + this.Sega8BrowseSaveRAM.Text = "Browse"; + this.Sega8BrowseSaveRAM.UseVisualStyleBackColor = true; + this.Sega8BrowseSaveRAM.Click += new System.EventHandler(this.Sega8BrowseSaveRAM_Click); + // + // Sega8SavestatesBox + // + this.Sega8SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8SavestatesBox.Location = new System.Drawing.Point(13, 89); + this.Sega8SavestatesBox.Name = "Sega8SavestatesBox"; + this.Sega8SavestatesBox.Size = new System.Drawing.Size(280, 20); + this.Sega8SavestatesBox.TabIndex = 19; + // + // Sega8SavestatesDescription + // + this.Sega8SavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8SavestatesDescription.AutoSize = true; + this.Sega8SavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.Sega8SavestatesDescription.Name = "Sega8SavestatesDescription"; + this.Sega8SavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.Sega8SavestatesDescription.TabIndex = 5; + this.Sega8SavestatesDescription.Text = "Savestates"; + // + // Sega8BrowseSavestates + // + this.Sega8BrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BrowseSavestates.Location = new System.Drawing.Point(300, 88); + this.Sega8BrowseSavestates.Name = "Sega8BrowseSavestates"; + this.Sega8BrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.Sega8BrowseSavestates.TabIndex = 20; + this.Sega8BrowseSavestates.Text = "Browse"; + this.Sega8BrowseSavestates.UseVisualStyleBackColor = true; + this.Sega8BrowseSavestates.Click += new System.EventHandler(this.Sega8BrowseSavestates_Click); + // + // AVIBox + // + this.AVIBox.AcceptsReturn = true; + this.AVIBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.AVIBox.Location = new System.Drawing.Point(13, 119); + this.AVIBox.Name = "AVIBox"; + this.AVIBox.Size = new System.Drawing.Size(297, 20); + this.AVIBox.TabIndex = 126; + this.AVIBox.TabStop = false; + // + // AVIDescription + // + this.AVIDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.AVIDescription.AutoSize = true; + this.AVIDescription.Location = new System.Drawing.Point(377, 123); + this.AVIDescription.Name = "AVIDescription"; + this.AVIDescription.Size = new System.Drawing.Size(60, 13); + this.AVIDescription.TabIndex = 22; + this.AVIDescription.Text = "Video (AVI)"; + // + // BrowseAVI + // + this.BrowseAVI.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseAVI.Location = new System.Drawing.Point(317, 118); + this.BrowseAVI.Name = "BrowseAVI"; + this.BrowseAVI.Size = new System.Drawing.Size(54, 23); + this.BrowseAVI.TabIndex = 127; + this.BrowseAVI.Text = "Browse"; + this.BrowseAVI.UseVisualStyleBackColor = true; + this.BrowseAVI.Click += new System.EventHandler(this.BrowseAVI_Click); + // + // tabControl1 + // + this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tabControl1.Controls.Add(this.tabPage1); + this.tabControl1.Controls.Add(this.tabPage2); + this.tabControl1.Controls.Add(this.tabPage9); + this.tabControl1.Controls.Add(this.tabPage8); + this.tabControl1.Controls.Add(this.tabPage3); + this.tabControl1.Controls.Add(this.tabPage4); + this.tabControl1.Controls.Add(this.tabPage5); + this.tabControl1.Controls.Add(this.tabPage6); + this.tabControl1.Controls.Add(this.tabPage7); + this.tabControl1.Location = new System.Drawing.Point(13, 97); + this.tabControl1.Name = "tabControl1"; + this.tabControl1.SelectedIndex = 0; + this.tabControl1.Size = new System.Drawing.Size(460, 277); + this.tabControl1.TabIndex = 23; + this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); + // + // tabPage1 + // + this.tabPage1.Controls.Add(this.NESPaletteDescription); + this.tabPage1.Controls.Add(this.NESBrowsePalette); + this.tabPage1.Controls.Add(this.NESPaletteBox); + this.tabPage1.Controls.Add(this.NESCheatsDescription); + this.tabPage1.Controls.Add(this.NESBrowseCheats); + this.tabPage1.Controls.Add(this.NESCheatsBox); + this.tabPage1.Controls.Add(this.NESBaseBox); + this.tabPage1.Controls.Add(this.NESBaseDescription); + this.tabPage1.Controls.Add(this.BrowseNESBase); + this.tabPage1.Controls.Add(this.NESROMsBox); + this.tabPage1.Controls.Add(this.NESScreenshotsBox); + this.tabPage1.Controls.Add(this.BrowseNESSavestates); + this.tabPage1.Controls.Add(this.NESScreenshotsDescription); + this.tabPage1.Controls.Add(this.NESSavestatesDescription); + this.tabPage1.Controls.Add(this.BrowseNESScreenshots); + this.tabPage1.Controls.Add(this.NESSavestatesBox); + this.tabPage1.Controls.Add(this.BrowseNESSaveRAM); + this.tabPage1.Controls.Add(this.NESSaveRAMDescription); + this.tabPage1.Controls.Add(this.NESROMsDescription); + this.tabPage1.Controls.Add(this.NESSaveRAMBox); + this.tabPage1.Controls.Add(this.BrowseNESROMs); + this.tabPage1.Location = new System.Drawing.Point(4, 22); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(3); + this.tabPage1.Size = new System.Drawing.Size(452, 251); + this.tabPage1.TabIndex = 0; + this.tabPage1.Text = "NES"; + this.tabPage1.UseVisualStyleBackColor = true; + // + // NESCheatsDescription + // + this.NESCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESCheatsDescription.AutoSize = true; + this.NESCheatsDescription.Location = new System.Drawing.Point(360, 183); + this.NESCheatsDescription.Name = "NESCheatsDescription"; + this.NESCheatsDescription.Size = new System.Drawing.Size(40, 13); + this.NESCheatsDescription.TabIndex = 23; + this.NESCheatsDescription.Text = "Cheats"; + // + // NESBrowseCheats + // + this.NESBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESBrowseCheats.Location = new System.Drawing.Point(300, 178); + this.NESBrowseCheats.Name = "NESBrowseCheats"; + this.NESBrowseCheats.Size = new System.Drawing.Size(54, 23); + this.NESBrowseCheats.TabIndex = 14; + this.NESBrowseCheats.Text = "Browse"; + this.NESBrowseCheats.UseVisualStyleBackColor = true; + this.NESBrowseCheats.Click += new System.EventHandler(this.NESBrowseCheats_Click); + // + // NESCheatsBox + // + this.NESCheatsBox.AcceptsTab = true; + this.NESCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESCheatsBox.Location = new System.Drawing.Point(13, 179); + this.NESCheatsBox.Name = "NESCheatsBox"; + this.NESCheatsBox.Size = new System.Drawing.Size(280, 20); + this.NESCheatsBox.TabIndex = 13; + // + // NESBaseBox + // + this.NESBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESBaseBox.Location = new System.Drawing.Point(13, 21); + this.NESBaseBox.Name = "NESBaseBox"; + this.NESBaseBox.Size = new System.Drawing.Size(280, 20); + this.NESBaseBox.TabIndex = 3; + // + // NESBaseDescription + // + this.NESBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESBaseDescription.AutoSize = true; + this.NESBaseDescription.Location = new System.Drawing.Point(360, 25); + this.NESBaseDescription.Name = "NESBaseDescription"; + this.NESBaseDescription.Size = new System.Drawing.Size(31, 13); + this.NESBaseDescription.TabIndex = 20; + this.NESBaseDescription.Text = "Base"; + // + // BrowseNESBase + // + this.BrowseNESBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseNESBase.Location = new System.Drawing.Point(300, 20); + this.BrowseNESBase.Name = "BrowseNESBase"; + this.BrowseNESBase.Size = new System.Drawing.Size(54, 23); + this.BrowseNESBase.TabIndex = 4; + this.BrowseNESBase.Text = "Browse"; + this.BrowseNESBase.UseVisualStyleBackColor = true; + this.BrowseNESBase.Click += new System.EventHandler(this.BrowseNESBase_Click); + // + // tabPage2 + // + this.tabPage2.Controls.Add(this.Sega8CheatsDescription); + this.tabPage2.Controls.Add(this.Sega8BrowseCheats); + this.tabPage2.Controls.Add(this.Sega8CheatsBox); + this.tabPage2.Controls.Add(this.Sega8BaseBox); + this.tabPage2.Controls.Add(this.Sega8ScreenshotsBox); + this.tabPage2.Controls.Add(this.Sega8BaseDescription); + this.tabPage2.Controls.Add(this.Sega8ScreenshotsDescription); + this.tabPage2.Controls.Add(this.Sega8BrowseBase); + this.tabPage2.Controls.Add(this.Sega8BrowseScreenshots); + this.tabPage2.Controls.Add(this.Sega8ROMsBox); + this.tabPage2.Controls.Add(this.Sega8BrowseSavestates); + this.tabPage2.Controls.Add(this.Sega8SavestatesDescription); + this.tabPage2.Controls.Add(this.Sega8ROMsDescription); + this.tabPage2.Controls.Add(this.Sega8SavestatesBox); + this.tabPage2.Controls.Add(this.Sega8BrowseROMs); + this.tabPage2.Controls.Add(this.Sega8BrowseSaveRAM); + this.tabPage2.Controls.Add(this.Sega8SaveRAMDescription); + this.tabPage2.Controls.Add(this.Sega8SaveRAMBox); + this.tabPage2.Location = new System.Drawing.Point(4, 22); + this.tabPage2.Name = "tabPage2"; + this.tabPage2.Padding = new System.Windows.Forms.Padding(3); + this.tabPage2.Size = new System.Drawing.Size(452, 251); + this.tabPage2.TabIndex = 1; + this.tabPage2.Text = "SMS"; + this.tabPage2.UseVisualStyleBackColor = true; + // + // Sega8CheatsDescription + // + this.Sega8CheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8CheatsDescription.AutoSize = true; + this.Sega8CheatsDescription.Location = new System.Drawing.Point(360, 183); + this.Sega8CheatsDescription.Name = "Sega8CheatsDescription"; + this.Sega8CheatsDescription.Size = new System.Drawing.Size(40, 13); + this.Sega8CheatsDescription.TabIndex = 26; + this.Sega8CheatsDescription.Text = "Cheats"; + // + // Sega8BrowseCheats + // + this.Sega8BrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BrowseCheats.Location = new System.Drawing.Point(300, 178); + this.Sega8BrowseCheats.Name = "Sega8BrowseCheats"; + this.Sega8BrowseCheats.Size = new System.Drawing.Size(54, 23); + this.Sega8BrowseCheats.TabIndex = 26; + this.Sega8BrowseCheats.Text = "Browse"; + this.Sega8BrowseCheats.UseVisualStyleBackColor = true; + this.Sega8BrowseCheats.Click += new System.EventHandler(this.Sega8BrowseCheats_Click); + // + // Sega8CheatsBox + // + this.Sega8CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8CheatsBox.Location = new System.Drawing.Point(13, 179); + this.Sega8CheatsBox.Name = "Sega8CheatsBox"; + this.Sega8CheatsBox.Size = new System.Drawing.Size(280, 20); + this.Sega8CheatsBox.TabIndex = 25; + // + // Sega8BaseBox + // + this.Sega8BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BaseBox.Location = new System.Drawing.Point(13, 21); + this.Sega8BaseBox.Name = "Sega8BaseBox"; + this.Sega8BaseBox.Size = new System.Drawing.Size(280, 20); + this.Sega8BaseBox.TabIndex = 15; + // + // Sega8BaseDescription + // + this.Sega8BaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BaseDescription.AutoSize = true; + this.Sega8BaseDescription.Location = new System.Drawing.Point(360, 25); + this.Sega8BaseDescription.Name = "Sega8BaseDescription"; + this.Sega8BaseDescription.Size = new System.Drawing.Size(31, 13); + this.Sega8BaseDescription.TabIndex = 21; + this.Sega8BaseDescription.Text = "Base"; + // + // Sega8BrowseBase + // + this.Sega8BrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Sega8BrowseBase.Location = new System.Drawing.Point(300, 20); + this.Sega8BrowseBase.Name = "Sega8BrowseBase"; + this.Sega8BrowseBase.Size = new System.Drawing.Size(54, 23); + this.Sega8BrowseBase.TabIndex = 16; + this.Sega8BrowseBase.Text = "Browse"; + this.Sega8BrowseBase.UseVisualStyleBackColor = true; + this.Sega8BrowseBase.Click += new System.EventHandler(this.Sega8BrowseBase_Click); + // + // tabPage9 + // + this.tabPage9.Controls.Add(this.SGCheatsDescription); + this.tabPage9.Controls.Add(this.SGBrowseCheats); + this.tabPage9.Controls.Add(this.SGCheatsBox); + this.tabPage9.Controls.Add(this.SGBaseBox); + this.tabPage9.Controls.Add(this.SGBaseDescription); + this.tabPage9.Controls.Add(this.SGBrowseBase); + this.tabPage9.Controls.Add(this.SGROMsBox); + this.tabPage9.Controls.Add(this.SGScreenshotsBox); + this.tabPage9.Controls.Add(this.SGBrowseSavestates); + this.tabPage9.Controls.Add(this.SGScreenshotsDescription); + this.tabPage9.Controls.Add(this.SGSavestatesDescription); + this.tabPage9.Controls.Add(this.SGBrowseScreenshots); + this.tabPage9.Controls.Add(this.SGSavestatesBox); + this.tabPage9.Controls.Add(this.SGBrowseSaveRAM); + this.tabPage9.Controls.Add(this.SGSaveRAMDescription); + this.tabPage9.Controls.Add(this.SGROMsDescription); + this.tabPage9.Controls.Add(this.SGSaveRAMBox); + this.tabPage9.Controls.Add(this.SGROMsBrowse); + this.tabPage9.Location = new System.Drawing.Point(4, 22); + this.tabPage9.Name = "tabPage9"; + this.tabPage9.Size = new System.Drawing.Size(452, 251); + this.tabPage9.TabIndex = 8; + this.tabPage9.Text = "SG-1000"; + this.tabPage9.UseVisualStyleBackColor = true; + // + // SGCheatsDescription + // + this.SGCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGCheatsDescription.AutoSize = true; + this.SGCheatsDescription.Location = new System.Drawing.Point(360, 183); + this.SGCheatsDescription.Name = "SGCheatsDescription"; + this.SGCheatsDescription.Size = new System.Drawing.Size(40, 13); + this.SGCheatsDescription.TabIndex = 41; + this.SGCheatsDescription.Text = "Cheats"; + // + // SGBrowseCheats + // + this.SGBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGBrowseCheats.Location = new System.Drawing.Point(300, 178); + this.SGBrowseCheats.Name = "SGBrowseCheats"; + this.SGBrowseCheats.Size = new System.Drawing.Size(54, 23); + this.SGBrowseCheats.TabIndex = 42; + this.SGBrowseCheats.Text = "Browse"; + this.SGBrowseCheats.UseVisualStyleBackColor = true; + this.SGBrowseCheats.Click += new System.EventHandler(this.SGBrowseCheats_Click); + // + // SGCheatsBox + // + this.SGCheatsBox.AcceptsTab = true; + this.SGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SGCheatsBox.Location = new System.Drawing.Point(13, 179); + this.SGCheatsBox.Name = "SGCheatsBox"; + this.SGCheatsBox.Size = new System.Drawing.Size(280, 20); + this.SGCheatsBox.TabIndex = 41; + // + // SGBaseBox + // + this.SGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SGBaseBox.Location = new System.Drawing.Point(13, 21); + this.SGBaseBox.Name = "SGBaseBox"; + this.SGBaseBox.Size = new System.Drawing.Size(280, 20); + this.SGBaseBox.TabIndex = 30; + // + // SGBaseDescription + // + this.SGBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGBaseDescription.AutoSize = true; + this.SGBaseDescription.Location = new System.Drawing.Point(360, 25); + this.SGBaseDescription.Name = "SGBaseDescription"; + this.SGBaseDescription.Size = new System.Drawing.Size(31, 13); + this.SGBaseDescription.TabIndex = 38; + this.SGBaseDescription.Text = "Base"; + // + // SGBrowseBase + // + this.SGBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGBrowseBase.Location = new System.Drawing.Point(300, 20); + this.SGBrowseBase.Name = "SGBrowseBase"; + this.SGBrowseBase.Size = new System.Drawing.Size(54, 23); + this.SGBrowseBase.TabIndex = 31; + this.SGBrowseBase.Text = "Browse"; + this.SGBrowseBase.UseVisualStyleBackColor = true; + this.SGBrowseBase.Click += new System.EventHandler(this.SGBrowseBase_Click); + // + // SGROMsBox + // + this.SGROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SGROMsBox.Location = new System.Drawing.Point(13, 59); + this.SGROMsBox.Name = "SGROMsBox"; + this.SGROMsBox.Size = new System.Drawing.Size(280, 20); + this.SGROMsBox.TabIndex = 32; + // + // SGScreenshotsBox + // + this.SGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SGScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.SGScreenshotsBox.Name = "SGScreenshotsBox"; + this.SGScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.SGScreenshotsBox.TabIndex = 39; + // + // SGBrowseSavestates + // + this.SGBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGBrowseSavestates.Location = new System.Drawing.Point(300, 88); + this.SGBrowseSavestates.Name = "SGBrowseSavestates"; + this.SGBrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.SGBrowseSavestates.TabIndex = 35; + this.SGBrowseSavestates.Text = "Browse"; + this.SGBrowseSavestates.UseVisualStyleBackColor = true; + this.SGBrowseSavestates.Click += new System.EventHandler(this.SGBrowseSavestates_Click); + // + // SGScreenshotsDescription + // + this.SGScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGScreenshotsDescription.AutoSize = true; + this.SGScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.SGScreenshotsDescription.Name = "SGScreenshotsDescription"; + this.SGScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.SGScreenshotsDescription.TabIndex = 35; + this.SGScreenshotsDescription.Text = "Screenshots"; + // + // SGSavestatesDescription + // + this.SGSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGSavestatesDescription.AutoSize = true; + this.SGSavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.SGSavestatesDescription.Name = "SGSavestatesDescription"; + this.SGSavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.SGSavestatesDescription.TabIndex = 26; + this.SGSavestatesDescription.Text = "Savestates"; + // + // SGBrowseScreenshots + // + this.SGBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGBrowseScreenshots.Location = new System.Drawing.Point(300, 148); + this.SGBrowseScreenshots.Name = "SGBrowseScreenshots"; + this.SGBrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.SGBrowseScreenshots.TabIndex = 40; + this.SGBrowseScreenshots.Text = "Browse"; + this.SGBrowseScreenshots.UseVisualStyleBackColor = true; + this.SGBrowseScreenshots.Click += new System.EventHandler(this.SGBrowseScreenshots_Click); + // + // SGSavestatesBox + // + this.SGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SGSavestatesBox.Location = new System.Drawing.Point(13, 89); + this.SGSavestatesBox.Name = "SGSavestatesBox"; + this.SGSavestatesBox.Size = new System.Drawing.Size(280, 20); + this.SGSavestatesBox.TabIndex = 34; + // + // SGBrowseSaveRAM + // + this.SGBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); + this.SGBrowseSaveRAM.Name = "SGBrowseSaveRAM"; + this.SGBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.SGBrowseSaveRAM.TabIndex = 38; + this.SGBrowseSaveRAM.Text = "Browse"; + this.SGBrowseSaveRAM.UseVisualStyleBackColor = true; + this.SGBrowseSaveRAM.Click += new System.EventHandler(this.SGBrowseSaveRAM_Click); + // + // SGSaveRAMDescription + // + this.SGSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGSaveRAMDescription.AutoSize = true; + this.SGSaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.SGSaveRAMDescription.Name = "SGSaveRAMDescription"; + this.SGSaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.SGSaveRAMDescription.TabIndex = 29; + this.SGSaveRAMDescription.Text = "Save RAM"; + // + // SGROMsDescription + // + this.SGROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGROMsDescription.AutoSize = true; + this.SGROMsDescription.Location = new System.Drawing.Point(360, 63); + this.SGROMsDescription.Name = "SGROMsDescription"; + this.SGROMsDescription.Size = new System.Drawing.Size(37, 13); + this.SGROMsDescription.TabIndex = 32; + this.SGROMsDescription.Text = "ROMs"; + // + // SGSaveRAMBox + // + this.SGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.SGSaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.SGSaveRAMBox.Name = "SGSaveRAMBox"; + this.SGSaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.SGSaveRAMBox.TabIndex = 36; + // + // SGROMsBrowse + // + this.SGROMsBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.SGROMsBrowse.Location = new System.Drawing.Point(300, 58); + this.SGROMsBrowse.Name = "SGROMsBrowse"; + this.SGROMsBrowse.Size = new System.Drawing.Size(54, 23); + this.SGROMsBrowse.TabIndex = 33; + this.SGROMsBrowse.Text = "Browse"; + this.SGROMsBrowse.UseVisualStyleBackColor = true; + this.SGROMsBrowse.Click += new System.EventHandler(this.SGROMsBrowse_Click); + // + // tabPage8 + // + this.tabPage8.Controls.Add(this.GGCheatsDescription); + this.tabPage8.Controls.Add(this.GGBrowseCheats); + this.tabPage8.Controls.Add(this.GGCheatsBox); + this.tabPage8.Controls.Add(this.GGBaseBox); + this.tabPage8.Controls.Add(this.GGScreenshotsBox); + this.tabPage8.Controls.Add(this.GGBaseDescription); + this.tabPage8.Controls.Add(this.GGScreenshotsDescription); + this.tabPage8.Controls.Add(this.GGBrowseBase); + this.tabPage8.Controls.Add(this.GGBrowseScreenshots); + this.tabPage8.Controls.Add(this.GGROMBox); + this.tabPage8.Controls.Add(this.GGBrowseSavestates); + this.tabPage8.Controls.Add(this.GGSavestatesDescription); + this.tabPage8.Controls.Add(this.GGROMsDescription); + this.tabPage8.Controls.Add(this.GGSavestatesBox); + this.tabPage8.Controls.Add(this.GGBrowseROMs); + this.tabPage8.Controls.Add(this.GGBrowseSaveRAM); + this.tabPage8.Controls.Add(this.GGSaveRAMDescription); + this.tabPage8.Controls.Add(this.GGSaveRAMBox); + this.tabPage8.Location = new System.Drawing.Point(4, 22); + this.tabPage8.Name = "tabPage8"; + this.tabPage8.Size = new System.Drawing.Size(452, 251); + this.tabPage8.TabIndex = 7; + this.tabPage8.Text = "G. Gear"; + this.tabPage8.UseVisualStyleBackColor = true; + // + // GGCheatsDescription + // + this.GGCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGCheatsDescription.AutoSize = true; + this.GGCheatsDescription.Location = new System.Drawing.Point(360, 183); + this.GGCheatsDescription.Name = "GGCheatsDescription"; + this.GGCheatsDescription.Size = new System.Drawing.Size(40, 13); + this.GGCheatsDescription.TabIndex = 44; + this.GGCheatsDescription.Text = "Cheats"; + // + // GGBrowseCheats + // + this.GGBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBrowseCheats.Location = new System.Drawing.Point(300, 178); + this.GGBrowseCheats.Name = "GGBrowseCheats"; + this.GGBrowseCheats.Size = new System.Drawing.Size(54, 23); + this.GGBrowseCheats.TabIndex = 54; + this.GGBrowseCheats.Text = "Browse"; + this.GGBrowseCheats.UseVisualStyleBackColor = true; + this.GGBrowseCheats.Click += new System.EventHandler(this.GGBrowseCheats_Click); + // + // GGCheatsBox + // + this.GGCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GGCheatsBox.Location = new System.Drawing.Point(13, 179); + this.GGCheatsBox.Name = "GGCheatsBox"; + this.GGCheatsBox.Size = new System.Drawing.Size(280, 20); + this.GGCheatsBox.TabIndex = 53; + // + // GGBaseBox + // + this.GGBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GGBaseBox.Location = new System.Drawing.Point(13, 21); + this.GGBaseBox.Name = "GGBaseBox"; + this.GGBaseBox.Size = new System.Drawing.Size(280, 20); + this.GGBaseBox.TabIndex = 43; + // + // GGScreenshotsBox + // + this.GGScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GGScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.GGScreenshotsBox.Name = "GGScreenshotsBox"; + this.GGScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.GGScreenshotsBox.TabIndex = 51; + // + // GGBaseDescription + // + this.GGBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBaseDescription.AutoSize = true; + this.GGBaseDescription.Location = new System.Drawing.Point(360, 25); + this.GGBaseDescription.Name = "GGBaseDescription"; + this.GGBaseDescription.Size = new System.Drawing.Size(31, 13); + this.GGBaseDescription.TabIndex = 41; + this.GGBaseDescription.Text = "Base"; + // + // GGScreenshotsDescription + // + this.GGScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGScreenshotsDescription.AutoSize = true; + this.GGScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.GGScreenshotsDescription.Name = "GGScreenshotsDescription"; + this.GGScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.GGScreenshotsDescription.TabIndex = 38; + this.GGScreenshotsDescription.Text = "Screenshots"; + // + // GGBrowseBase + // + this.GGBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBrowseBase.Location = new System.Drawing.Point(300, 20); + this.GGBrowseBase.Name = "GGBrowseBase"; + this.GGBrowseBase.Size = new System.Drawing.Size(54, 23); + this.GGBrowseBase.TabIndex = 44; + this.GGBrowseBase.Text = "Browse"; + this.GGBrowseBase.UseVisualStyleBackColor = true; + this.GGBrowseBase.Click += new System.EventHandler(this.GGBrowseBase_Click); + // + // GGBrowseScreenshots + // + this.GGBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBrowseScreenshots.Location = new System.Drawing.Point(300, 148); + this.GGBrowseScreenshots.Name = "GGBrowseScreenshots"; + this.GGBrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.GGBrowseScreenshots.TabIndex = 52; + this.GGBrowseScreenshots.Text = "Browse"; + this.GGBrowseScreenshots.UseVisualStyleBackColor = true; + this.GGBrowseScreenshots.Click += new System.EventHandler(this.GGBrowseScreenshots_Click); + // + // GGROMBox + // + this.GGROMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GGROMBox.Location = new System.Drawing.Point(13, 59); + this.GGROMBox.Name = "GGROMBox"; + this.GGROMBox.Size = new System.Drawing.Size(280, 20); + this.GGROMBox.TabIndex = 45; + // + // GGBrowseSavestates + // + this.GGBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBrowseSavestates.Location = new System.Drawing.Point(300, 88); + this.GGBrowseSavestates.Name = "GGBrowseSavestates"; + this.GGBrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.GGBrowseSavestates.TabIndex = 48; + this.GGBrowseSavestates.Text = "Browse"; + this.GGBrowseSavestates.UseVisualStyleBackColor = true; + this.GGBrowseSavestates.Click += new System.EventHandler(this.GGBrowseSavestates_Click); + // + // GGSavestatesDescription + // + this.GGSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGSavestatesDescription.AutoSize = true; + this.GGSavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.GGSavestatesDescription.Name = "GGSavestatesDescription"; + this.GGSavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.GGSavestatesDescription.TabIndex = 29; + this.GGSavestatesDescription.Text = "Savestates"; + // + // GGROMsDescription + // + this.GGROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGROMsDescription.AutoSize = true; + this.GGROMsDescription.Location = new System.Drawing.Point(360, 63); + this.GGROMsDescription.Name = "GGROMsDescription"; + this.GGROMsDescription.Size = new System.Drawing.Size(37, 13); + this.GGROMsDescription.TabIndex = 35; + this.GGROMsDescription.Text = "ROMs"; + // + // GGSavestatesBox + // + this.GGSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GGSavestatesBox.Location = new System.Drawing.Point(13, 89); + this.GGSavestatesBox.Name = "GGSavestatesBox"; + this.GGSavestatesBox.Size = new System.Drawing.Size(280, 20); + this.GGSavestatesBox.TabIndex = 47; + // + // GGBrowseROMs + // + this.GGBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBrowseROMs.Location = new System.Drawing.Point(300, 58); + this.GGBrowseROMs.Name = "GGBrowseROMs"; + this.GGBrowseROMs.Size = new System.Drawing.Size(54, 23); + this.GGBrowseROMs.TabIndex = 46; + this.GGBrowseROMs.Text = "Browse"; + this.GGBrowseROMs.UseVisualStyleBackColor = true; + this.GGBrowseROMs.Click += new System.EventHandler(this.GGBrowseROMs_Click); + // + // GGBrowseSaveRAM + // + this.GGBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); + this.GGBrowseSaveRAM.Name = "GGBrowseSaveRAM"; + this.GGBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.GGBrowseSaveRAM.TabIndex = 50; + this.GGBrowseSaveRAM.Text = "Browse"; + this.GGBrowseSaveRAM.UseVisualStyleBackColor = true; + this.GGBrowseSaveRAM.Click += new System.EventHandler(this.GGBrowseSaveRAM_Click); + // + // GGSaveRAMDescription + // + this.GGSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GGSaveRAMDescription.AutoSize = true; + this.GGSaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.GGSaveRAMDescription.Name = "GGSaveRAMDescription"; + this.GGSaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.GGSaveRAMDescription.TabIndex = 32; + this.GGSaveRAMDescription.Text = "Save RAM"; + // + // GGSaveRAMBox + // + this.GGSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GGSaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.GGSaveRAMBox.Name = "GGSaveRAMBox"; + this.GGSaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.GGSaveRAMBox.TabIndex = 49; + // + // tabPage3 + // + this.tabPage3.Controls.Add(this.GenesisCheatsDescription); + this.tabPage3.Controls.Add(this.GenesisBrowseCheats); + this.tabPage3.Controls.Add(this.GenesisCheatsBox); + this.tabPage3.Controls.Add(this.GenesisBaseBox); + this.tabPage3.Controls.Add(this.GenesisScreenshotsBox); + this.tabPage3.Controls.Add(this.GenesisBrowseSaveRAM); + this.tabPage3.Controls.Add(this.GenesisBrowseROMs); + this.tabPage3.Controls.Add(this.GenesisBaseDescription); + this.tabPage3.Controls.Add(this.GenesisSaveRAMDescription); + this.tabPage3.Controls.Add(this.GenesisSavestatesBox); + this.tabPage3.Controls.Add(this.GenesisScreenshotsDescription); + this.tabPage3.Controls.Add(this.GenesisSaveRAMBox); + this.tabPage3.Controls.Add(this.GenesisROMsDescription); + this.tabPage3.Controls.Add(this.GenesisBrowseBase); + this.tabPage3.Controls.Add(this.GenesisSavestatesDescription); + this.tabPage3.Controls.Add(this.GenesisBrowseSavestates); + this.tabPage3.Controls.Add(this.GenesisBrowseScreenshots); + this.tabPage3.Controls.Add(this.GenesisROMsBox); + this.tabPage3.Location = new System.Drawing.Point(4, 22); + this.tabPage3.Name = "tabPage3"; + this.tabPage3.Size = new System.Drawing.Size(452, 251); + this.tabPage3.TabIndex = 2; + this.tabPage3.Text = "Genesis"; + this.tabPage3.UseVisualStyleBackColor = true; + // + // GenesisCheatsDescription + // + this.GenesisCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisCheatsDescription.AutoSize = true; + this.GenesisCheatsDescription.Location = new System.Drawing.Point(360, 183); + this.GenesisCheatsDescription.Name = "GenesisCheatsDescription"; + this.GenesisCheatsDescription.Size = new System.Drawing.Size(40, 13); + this.GenesisCheatsDescription.TabIndex = 39; + this.GenesisCheatsDescription.Text = "Cheats"; + // + // GenesisBrowseCheats + // + this.GenesisBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBrowseCheats.Location = new System.Drawing.Point(300, 178); + this.GenesisBrowseCheats.Name = "GenesisBrowseCheats"; + this.GenesisBrowseCheats.Size = new System.Drawing.Size(54, 23); + this.GenesisBrowseCheats.TabIndex = 71; + this.GenesisBrowseCheats.Text = "Browse"; + this.GenesisBrowseCheats.UseVisualStyleBackColor = true; + this.GenesisBrowseCheats.Click += new System.EventHandler(this.GenesisBrowseCheats_Click); + // + // GenesisCheatsBox + // + this.GenesisCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisCheatsBox.Location = new System.Drawing.Point(13, 179); + this.GenesisCheatsBox.Name = "GenesisCheatsBox"; + this.GenesisCheatsBox.Size = new System.Drawing.Size(280, 20); + this.GenesisCheatsBox.TabIndex = 70; + // + // GenesisBaseBox + // + this.GenesisBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBaseBox.Location = new System.Drawing.Point(13, 21); + this.GenesisBaseBox.Name = "GenesisBaseBox"; + this.GenesisBaseBox.Size = new System.Drawing.Size(280, 20); + this.GenesisBaseBox.TabIndex = 60; + // + // GenesisScreenshotsBox + // + this.GenesisScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.GenesisScreenshotsBox.Name = "GenesisScreenshotsBox"; + this.GenesisScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.GenesisScreenshotsBox.TabIndex = 68; + // + // GenesisBrowseSaveRAM + // + this.GenesisBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); + this.GenesisBrowseSaveRAM.Name = "GenesisBrowseSaveRAM"; + this.GenesisBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.GenesisBrowseSaveRAM.TabIndex = 67; + this.GenesisBrowseSaveRAM.Text = "Browse"; + this.GenesisBrowseSaveRAM.UseVisualStyleBackColor = true; + this.GenesisBrowseSaveRAM.Click += new System.EventHandler(this.GenesisBrowseSaveRAM_Click); + // + // GenesisBrowseROMs + // + this.GenesisBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBrowseROMs.Location = new System.Drawing.Point(300, 58); + this.GenesisBrowseROMs.Name = "GenesisBrowseROMs"; + this.GenesisBrowseROMs.Size = new System.Drawing.Size(54, 23); + this.GenesisBrowseROMs.TabIndex = 63; + this.GenesisBrowseROMs.Text = "Browse"; + this.GenesisBrowseROMs.UseVisualStyleBackColor = true; + this.GenesisBrowseROMs.Click += new System.EventHandler(this.GenesisBrowseROMs_Click); + // + // GenesisBaseDescription + // + this.GenesisBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBaseDescription.AutoSize = true; + this.GenesisBaseDescription.Location = new System.Drawing.Point(360, 25); + this.GenesisBaseDescription.Name = "GenesisBaseDescription"; + this.GenesisBaseDescription.Size = new System.Drawing.Size(31, 13); + this.GenesisBaseDescription.TabIndex = 36; + this.GenesisBaseDescription.Text = "Base"; + // + // GenesisSaveRAMDescription + // + this.GenesisSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisSaveRAMDescription.AutoSize = true; + this.GenesisSaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.GenesisSaveRAMDescription.Name = "GenesisSaveRAMDescription"; + this.GenesisSaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.GenesisSaveRAMDescription.TabIndex = 27; + this.GenesisSaveRAMDescription.Text = "Save RAM"; + // + // GenesisSavestatesBox + // + this.GenesisSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisSavestatesBox.Location = new System.Drawing.Point(13, 89); + this.GenesisSavestatesBox.Name = "GenesisSavestatesBox"; + this.GenesisSavestatesBox.Size = new System.Drawing.Size(280, 20); + this.GenesisSavestatesBox.TabIndex = 64; + // + // GenesisScreenshotsDescription + // + this.GenesisScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisScreenshotsDescription.AutoSize = true; + this.GenesisScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.GenesisScreenshotsDescription.Name = "GenesisScreenshotsDescription"; + this.GenesisScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.GenesisScreenshotsDescription.TabIndex = 33; + this.GenesisScreenshotsDescription.Text = "Screenshots"; + // + // GenesisSaveRAMBox + // + this.GenesisSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisSaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.GenesisSaveRAMBox.Name = "GenesisSaveRAMBox"; + this.GenesisSaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.GenesisSaveRAMBox.TabIndex = 66; + // + // GenesisROMsDescription + // + this.GenesisROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisROMsDescription.AutoSize = true; + this.GenesisROMsDescription.Location = new System.Drawing.Point(360, 63); + this.GenesisROMsDescription.Name = "GenesisROMsDescription"; + this.GenesisROMsDescription.Size = new System.Drawing.Size(37, 13); + this.GenesisROMsDescription.TabIndex = 30; + this.GenesisROMsDescription.Text = "ROMs"; + // + // GenesisBrowseBase + // + this.GenesisBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBrowseBase.Location = new System.Drawing.Point(300, 20); + this.GenesisBrowseBase.Name = "GenesisBrowseBase"; + this.GenesisBrowseBase.Size = new System.Drawing.Size(54, 23); + this.GenesisBrowseBase.TabIndex = 61; + this.GenesisBrowseBase.Text = "Browse"; + this.GenesisBrowseBase.UseVisualStyleBackColor = true; + this.GenesisBrowseBase.Click += new System.EventHandler(this.GenesisBrowseBase_Click); + // + // GenesisSavestatesDescription + // + this.GenesisSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisSavestatesDescription.AutoSize = true; + this.GenesisSavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.GenesisSavestatesDescription.Name = "GenesisSavestatesDescription"; + this.GenesisSavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.GenesisSavestatesDescription.TabIndex = 24; + this.GenesisSavestatesDescription.Text = "Savestates"; + // + // GenesisBrowseSavestates + // + this.GenesisBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBrowseSavestates.Location = new System.Drawing.Point(300, 88); + this.GenesisBrowseSavestates.Name = "GenesisBrowseSavestates"; + this.GenesisBrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.GenesisBrowseSavestates.TabIndex = 65; + this.GenesisBrowseSavestates.Text = "Browse"; + this.GenesisBrowseSavestates.UseVisualStyleBackColor = true; + this.GenesisBrowseSavestates.Click += new System.EventHandler(this.GenesisBrowseSavestates_Click); + // + // GenesisBrowseScreenshots + // + this.GenesisBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisBrowseScreenshots.Location = new System.Drawing.Point(300, 148); + this.GenesisBrowseScreenshots.Name = "GenesisBrowseScreenshots"; + this.GenesisBrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.GenesisBrowseScreenshots.TabIndex = 69; + this.GenesisBrowseScreenshots.Text = "Browse"; + this.GenesisBrowseScreenshots.UseVisualStyleBackColor = true; + this.GenesisBrowseScreenshots.Click += new System.EventHandler(this.GenesisBrowseScreenshots_Click); + // + // GenesisROMsBox + // + this.GenesisROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GenesisROMsBox.Location = new System.Drawing.Point(13, 59); + this.GenesisROMsBox.Name = "GenesisROMsBox"; + this.GenesisROMsBox.Size = new System.Drawing.Size(280, 20); + this.GenesisROMsBox.TabIndex = 62; + // + // tabPage4 + // + this.tabPage4.Controls.Add(this.PCECheatsDescription); + this.tabPage4.Controls.Add(this.PCEBrowseCheats); + this.tabPage4.Controls.Add(this.PCECheatsBox); + this.tabPage4.Controls.Add(this.PCEBaseBox); + this.tabPage4.Controls.Add(this.PCEScreenshotsBox); + this.tabPage4.Controls.Add(this.PCEBaseDescription); + this.tabPage4.Controls.Add(this.PCEScreenshotsDescription); + this.tabPage4.Controls.Add(this.PCEBrowseBase); + this.tabPage4.Controls.Add(this.PCEBrowseScreenshots); + this.tabPage4.Controls.Add(this.PCEROMsBox); + this.tabPage4.Controls.Add(this.PCEBrowseSavestates); + this.tabPage4.Controls.Add(this.PCESavestatesDescription); + this.tabPage4.Controls.Add(this.PCEROMsDescription); + this.tabPage4.Controls.Add(this.PCESavestatesBox); + this.tabPage4.Controls.Add(this.PCEBrowseROMs); + this.tabPage4.Controls.Add(this.PCEBrowseSaveRAM); + this.tabPage4.Controls.Add(this.PCESaveRAMDescription); + this.tabPage4.Controls.Add(this.PCESaveRAMBox); + this.tabPage4.Location = new System.Drawing.Point(4, 22); + this.tabPage4.Name = "tabPage4"; + this.tabPage4.Size = new System.Drawing.Size(452, 251); + this.tabPage4.TabIndex = 3; + this.tabPage4.Text = "PC Engine"; + this.tabPage4.UseVisualStyleBackColor = true; + // + // PCECheatsDescription + // + this.PCECheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCECheatsDescription.AutoSize = true; + this.PCECheatsDescription.Location = new System.Drawing.Point(360, 183); + this.PCECheatsDescription.Name = "PCECheatsDescription"; + this.PCECheatsDescription.Size = new System.Drawing.Size(40, 13); + this.PCECheatsDescription.TabIndex = 39; + this.PCECheatsDescription.Text = "Cheats"; + // + // PCEBrowseCheats + // + this.PCEBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBrowseCheats.Location = new System.Drawing.Point(300, 178); + this.PCEBrowseCheats.Name = "PCEBrowseCheats"; + this.PCEBrowseCheats.Size = new System.Drawing.Size(54, 23); + this.PCEBrowseCheats.TabIndex = 88; + this.PCEBrowseCheats.Text = "Browse"; + this.PCEBrowseCheats.UseVisualStyleBackColor = true; + this.PCEBrowseCheats.Click += new System.EventHandler(this.PCEBrowseCheats_Click); + // + // PCECheatsBox + // + this.PCECheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.PCECheatsBox.Location = new System.Drawing.Point(13, 179); + this.PCECheatsBox.Name = "PCECheatsBox"; + this.PCECheatsBox.Size = new System.Drawing.Size(280, 20); + this.PCECheatsBox.TabIndex = 87; + // + // PCEBaseBox + // + this.PCEBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBaseBox.Location = new System.Drawing.Point(13, 21); + this.PCEBaseBox.Name = "PCEBaseBox"; + this.PCEBaseBox.Size = new System.Drawing.Size(280, 20); + this.PCEBaseBox.TabIndex = 77; + // + // PCEScreenshotsBox + // + this.PCEScreenshotsBox.AcceptsReturn = true; + this.PCEScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.PCEScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.PCEScreenshotsBox.Name = "PCEScreenshotsBox"; + this.PCEScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.PCEScreenshotsBox.TabIndex = 85; + // + // PCEBaseDescription + // + this.PCEBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBaseDescription.AutoSize = true; + this.PCEBaseDescription.Location = new System.Drawing.Point(360, 25); + this.PCEBaseDescription.Name = "PCEBaseDescription"; + this.PCEBaseDescription.Size = new System.Drawing.Size(31, 13); + this.PCEBaseDescription.TabIndex = 36; + this.PCEBaseDescription.Text = "Base"; + // + // PCEScreenshotsDescription + // + this.PCEScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEScreenshotsDescription.AutoSize = true; + this.PCEScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.PCEScreenshotsDescription.Name = "PCEScreenshotsDescription"; + this.PCEScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.PCEScreenshotsDescription.TabIndex = 33; + this.PCEScreenshotsDescription.Text = "Screenshots"; + // + // PCEBrowseBase + // + this.PCEBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBrowseBase.Location = new System.Drawing.Point(300, 20); + this.PCEBrowseBase.Name = "PCEBrowseBase"; + this.PCEBrowseBase.Size = new System.Drawing.Size(54, 23); + this.PCEBrowseBase.TabIndex = 78; + this.PCEBrowseBase.Text = "Browse"; + this.PCEBrowseBase.UseVisualStyleBackColor = true; + this.PCEBrowseBase.Click += new System.EventHandler(this.PCEBrowseBase_Click); + // + // PCEBrowseScreenshots + // + this.PCEBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBrowseScreenshots.Location = new System.Drawing.Point(300, 148); + this.PCEBrowseScreenshots.Name = "PCEBrowseScreenshots"; + this.PCEBrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.PCEBrowseScreenshots.TabIndex = 86; + this.PCEBrowseScreenshots.Text = "Browse"; + this.PCEBrowseScreenshots.UseVisualStyleBackColor = true; + this.PCEBrowseScreenshots.Click += new System.EventHandler(this.PCEBrowseScreenshots_Click); + // + // PCEROMsBox + // + this.PCEROMsBox.AcceptsReturn = true; + this.PCEROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.PCEROMsBox.Location = new System.Drawing.Point(13, 59); + this.PCEROMsBox.Name = "PCEROMsBox"; + this.PCEROMsBox.Size = new System.Drawing.Size(280, 20); + this.PCEROMsBox.TabIndex = 79; + // + // PCEBrowseSavestates + // + this.PCEBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBrowseSavestates.Location = new System.Drawing.Point(300, 88); + this.PCEBrowseSavestates.Name = "PCEBrowseSavestates"; + this.PCEBrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.PCEBrowseSavestates.TabIndex = 82; + this.PCEBrowseSavestates.Text = "Browse"; + this.PCEBrowseSavestates.UseVisualStyleBackColor = true; + this.PCEBrowseSavestates.Click += new System.EventHandler(this.PCEBrowseSavestates_Click); + // + // PCESavestatesDescription + // + this.PCESavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCESavestatesDescription.AutoSize = true; + this.PCESavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.PCESavestatesDescription.Name = "PCESavestatesDescription"; + this.PCESavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.PCESavestatesDescription.TabIndex = 24; + this.PCESavestatesDescription.Text = "Savestates"; + // + // PCEROMsDescription + // + this.PCEROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEROMsDescription.AutoSize = true; + this.PCEROMsDescription.Location = new System.Drawing.Point(360, 63); + this.PCEROMsDescription.Name = "PCEROMsDescription"; + this.PCEROMsDescription.Size = new System.Drawing.Size(37, 13); + this.PCEROMsDescription.TabIndex = 30; + this.PCEROMsDescription.Text = "ROMs"; + // + // PCESavestatesBox + // + this.PCESavestatesBox.AcceptsTab = true; + this.PCESavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.PCESavestatesBox.Location = new System.Drawing.Point(13, 89); + this.PCESavestatesBox.Name = "PCESavestatesBox"; + this.PCESavestatesBox.Size = new System.Drawing.Size(280, 20); + this.PCESavestatesBox.TabIndex = 81; + // + // PCEBrowseROMs + // + this.PCEBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBrowseROMs.Location = new System.Drawing.Point(300, 58); + this.PCEBrowseROMs.Name = "PCEBrowseROMs"; + this.PCEBrowseROMs.Size = new System.Drawing.Size(54, 23); + this.PCEBrowseROMs.TabIndex = 80; + this.PCEBrowseROMs.Text = "Browse"; + this.PCEBrowseROMs.UseVisualStyleBackColor = true; + this.PCEBrowseROMs.Click += new System.EventHandler(this.PCEBrowseROMs_Click); + // + // PCEBrowseSaveRAM + // + this.PCEBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCEBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); + this.PCEBrowseSaveRAM.Name = "PCEBrowseSaveRAM"; + this.PCEBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.PCEBrowseSaveRAM.TabIndex = 84; + this.PCEBrowseSaveRAM.Text = "Browse"; + this.PCEBrowseSaveRAM.UseVisualStyleBackColor = true; + this.PCEBrowseSaveRAM.Click += new System.EventHandler(this.PCEBrowseSaveRAM_Click); + // + // PCESaveRAMDescription + // + this.PCESaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.PCESaveRAMDescription.AutoSize = true; + this.PCESaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.PCESaveRAMDescription.Name = "PCESaveRAMDescription"; + this.PCESaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.PCESaveRAMDescription.TabIndex = 27; + this.PCESaveRAMDescription.Text = "Save RAM"; + // + // PCESaveRAMBox + // + this.PCESaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.PCESaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.PCESaveRAMBox.Name = "PCESaveRAMBox"; + this.PCESaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.PCESaveRAMBox.TabIndex = 83; + // + // tabPage5 + // + this.tabPage5.Controls.Add(this.GBCheatsDescription); + this.tabPage5.Controls.Add(this.GBBrowseCheats); + this.tabPage5.Controls.Add(this.GBCheatsBox); + this.tabPage5.Controls.Add(this.GBBaseBox); + this.tabPage5.Controls.Add(this.GBScreenshotsBox); + this.tabPage5.Controls.Add(this.GBBaseDescription); + this.tabPage5.Controls.Add(this.GBScreenshotsDescription); + this.tabPage5.Controls.Add(this.GBBrowseBase); + this.tabPage5.Controls.Add(this.GBBrowseScreenshots); + this.tabPage5.Controls.Add(this.GBROMsBox); + this.tabPage5.Controls.Add(this.GBBrowseSavestates); + this.tabPage5.Controls.Add(this.GBSavestatesDescription); + this.tabPage5.Controls.Add(this.GBROMsDescription); + this.tabPage5.Controls.Add(this.GBSavestatesBox); + this.tabPage5.Controls.Add(this.GBBrowseROMs); + this.tabPage5.Controls.Add(this.GBBrowseSaveRAM); + this.tabPage5.Controls.Add(this.GBSaveRAMDescription); + this.tabPage5.Controls.Add(this.GBSaveRAMBox); + this.tabPage5.Location = new System.Drawing.Point(4, 22); + this.tabPage5.Name = "tabPage5"; + this.tabPage5.Size = new System.Drawing.Size(452, 251); + this.tabPage5.TabIndex = 4; + this.tabPage5.Text = "Gameboy"; + this.tabPage5.UseVisualStyleBackColor = true; + // + // GBCheatsDescription + // + this.GBCheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBCheatsDescription.AutoSize = true; + this.GBCheatsDescription.Location = new System.Drawing.Point(360, 183); + this.GBCheatsDescription.Name = "GBCheatsDescription"; + this.GBCheatsDescription.Size = new System.Drawing.Size(40, 13); + this.GBCheatsDescription.TabIndex = 39; + this.GBCheatsDescription.Text = "Cheats"; + // + // GBBrowseCheats + // + this.GBBrowseCheats.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBrowseCheats.Location = new System.Drawing.Point(300, 178); + this.GBBrowseCheats.Name = "GBBrowseCheats"; + this.GBBrowseCheats.Size = new System.Drawing.Size(54, 23); + this.GBBrowseCheats.TabIndex = 101; + this.GBBrowseCheats.Text = "Browse"; + this.GBBrowseCheats.UseVisualStyleBackColor = true; + this.GBBrowseCheats.Click += new System.EventHandler(this.GBBrowseCheats_Click); + // + // GBCheatsBox + // + this.GBCheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GBCheatsBox.Location = new System.Drawing.Point(13, 179); + this.GBCheatsBox.Name = "GBCheatsBox"; + this.GBCheatsBox.Size = new System.Drawing.Size(280, 20); + this.GBCheatsBox.TabIndex = 100; + // + // GBBaseBox + // + this.GBBaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GBBaseBox.Location = new System.Drawing.Point(13, 21); + this.GBBaseBox.Name = "GBBaseBox"; + this.GBBaseBox.Size = new System.Drawing.Size(280, 20); + this.GBBaseBox.TabIndex = 90; + // + // GBScreenshotsBox + // + this.GBScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GBScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.GBScreenshotsBox.Name = "GBScreenshotsBox"; + this.GBScreenshotsBox.Size = new System.Drawing.Size(280, 20); + this.GBScreenshotsBox.TabIndex = 98; + // + // GBBaseDescription + // + this.GBBaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBaseDescription.AutoSize = true; + this.GBBaseDescription.Location = new System.Drawing.Point(360, 25); + this.GBBaseDescription.Name = "GBBaseDescription"; + this.GBBaseDescription.Size = new System.Drawing.Size(31, 13); + this.GBBaseDescription.TabIndex = 36; + this.GBBaseDescription.Text = "Base"; + // + // GBScreenshotsDescription + // + this.GBScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBScreenshotsDescription.AutoSize = true; + this.GBScreenshotsDescription.Location = new System.Drawing.Point(360, 153); + this.GBScreenshotsDescription.Name = "GBScreenshotsDescription"; + this.GBScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.GBScreenshotsDescription.TabIndex = 33; + this.GBScreenshotsDescription.Text = "Screenshots"; + // + // GBBrowseBase + // + this.GBBrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBrowseBase.Location = new System.Drawing.Point(300, 20); + this.GBBrowseBase.Name = "GBBrowseBase"; + this.GBBrowseBase.Size = new System.Drawing.Size(54, 23); + this.GBBrowseBase.TabIndex = 91; + this.GBBrowseBase.Text = "Browse"; + this.GBBrowseBase.UseVisualStyleBackColor = true; + this.GBBrowseBase.Click += new System.EventHandler(this.GBBrowseBase_Click); + // + // GBBrowseScreenshots + // + this.GBBrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBrowseScreenshots.Location = new System.Drawing.Point(300, 148); + this.GBBrowseScreenshots.Name = "GBBrowseScreenshots"; + this.GBBrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.GBBrowseScreenshots.TabIndex = 99; + this.GBBrowseScreenshots.Text = "Browse"; + this.GBBrowseScreenshots.UseVisualStyleBackColor = true; + this.GBBrowseScreenshots.Click += new System.EventHandler(this.GBBrowseScreenshots_Click); + // + // GBROMsBox + // + this.GBROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GBROMsBox.Location = new System.Drawing.Point(13, 59); + this.GBROMsBox.Name = "GBROMsBox"; + this.GBROMsBox.Size = new System.Drawing.Size(280, 20); + this.GBROMsBox.TabIndex = 92; + // + // GBBrowseSavestates + // + this.GBBrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBrowseSavestates.Location = new System.Drawing.Point(300, 88); + this.GBBrowseSavestates.Name = "GBBrowseSavestates"; + this.GBBrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.GBBrowseSavestates.TabIndex = 95; + this.GBBrowseSavestates.Text = "Browse"; + this.GBBrowseSavestates.UseVisualStyleBackColor = true; + this.GBBrowseSavestates.Click += new System.EventHandler(this.GBBrowseSavestates_Click); + // + // GBSavestatesDescription + // + this.GBSavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBSavestatesDescription.AutoSize = true; + this.GBSavestatesDescription.Location = new System.Drawing.Point(360, 93); + this.GBSavestatesDescription.Name = "GBSavestatesDescription"; + this.GBSavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.GBSavestatesDescription.TabIndex = 24; + this.GBSavestatesDescription.Text = "Savestates"; + // + // GBROMsDescription + // + this.GBROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBROMsDescription.AutoSize = true; + this.GBROMsDescription.Location = new System.Drawing.Point(360, 63); + this.GBROMsDescription.Name = "GBROMsDescription"; + this.GBROMsDescription.Size = new System.Drawing.Size(37, 13); + this.GBROMsDescription.TabIndex = 30; + this.GBROMsDescription.Text = "ROMs"; + // + // GBSavestatesBox + // + this.GBSavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GBSavestatesBox.Location = new System.Drawing.Point(13, 89); + this.GBSavestatesBox.Name = "GBSavestatesBox"; + this.GBSavestatesBox.Size = new System.Drawing.Size(280, 20); + this.GBSavestatesBox.TabIndex = 94; + // + // GBBrowseROMs + // + this.GBBrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBrowseROMs.Location = new System.Drawing.Point(300, 58); + this.GBBrowseROMs.Name = "GBBrowseROMs"; + this.GBBrowseROMs.Size = new System.Drawing.Size(54, 23); + this.GBBrowseROMs.TabIndex = 93; + this.GBBrowseROMs.Text = "Browse"; + this.GBBrowseROMs.UseVisualStyleBackColor = true; + this.GBBrowseROMs.Click += new System.EventHandler(this.GBBrowseROMs_Click); + // + // GBBrowseSaveRAM + // + this.GBBrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBBrowseSaveRAM.Location = new System.Drawing.Point(300, 118); + this.GBBrowseSaveRAM.Name = "GBBrowseSaveRAM"; + this.GBBrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.GBBrowseSaveRAM.TabIndex = 97; + this.GBBrowseSaveRAM.Text = "Browse"; + this.GBBrowseSaveRAM.UseVisualStyleBackColor = true; + this.GBBrowseSaveRAM.Click += new System.EventHandler(this.GBBrowseSaveRAM_Click); + // + // GBSaveRAMDescription + // + this.GBSaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.GBSaveRAMDescription.AutoSize = true; + this.GBSaveRAMDescription.Location = new System.Drawing.Point(360, 123); + this.GBSaveRAMDescription.Name = "GBSaveRAMDescription"; + this.GBSaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.GBSaveRAMDescription.TabIndex = 27; + this.GBSaveRAMDescription.Text = "Save RAM"; + // + // GBSaveRAMBox + // + this.GBSaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.GBSaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.GBSaveRAMBox.Name = "GBSaveRAMBox"; + this.GBSaveRAMBox.Size = new System.Drawing.Size(280, 20); + this.GBSaveRAMBox.TabIndex = 96; + // + // tabPage6 + // + this.tabPage6.Controls.Add(this.TI83CheatsDescription); + this.tabPage6.Controls.Add(this.TI83BrowseBox); + this.tabPage6.Controls.Add(this.TI83CheatsBox); + this.tabPage6.Controls.Add(this.TI83BaseBox); + this.tabPage6.Controls.Add(this.TI83ScreenshotsBox); + this.tabPage6.Controls.Add(this.TI83BaseDescription); + this.tabPage6.Controls.Add(this.TI83ScreenshotsDescription); + this.tabPage6.Controls.Add(this.TI83BrowseBase); + this.tabPage6.Controls.Add(this.TI83BrowseScreenshots); + this.tabPage6.Controls.Add(this.TI83ROMsBox); + this.tabPage6.Controls.Add(this.TI83BrowseSavestates); + this.tabPage6.Controls.Add(this.TI83SavestatesDescription); + this.tabPage6.Controls.Add(this.TI83ROMsDescription); + this.tabPage6.Controls.Add(this.TI83SavestatesBox); + this.tabPage6.Controls.Add(this.TI83BrowseROMs); + this.tabPage6.Controls.Add(this.TI83BrowseSaveRAM); + this.tabPage6.Controls.Add(this.TI83SaveRAMDescription); + this.tabPage6.Controls.Add(this.TI83SaveRAMBox); + this.tabPage6.Location = new System.Drawing.Point(4, 22); + this.tabPage6.Name = "tabPage6"; + this.tabPage6.Size = new System.Drawing.Size(452, 251); + this.tabPage6.TabIndex = 5; + this.tabPage6.Text = "TI83"; + this.tabPage6.UseVisualStyleBackColor = true; + // + // TI83CheatsDescription + // + this.TI83CheatsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83CheatsDescription.AutoSize = true; + this.TI83CheatsDescription.Location = new System.Drawing.Point(377, 183); + this.TI83CheatsDescription.Name = "TI83CheatsDescription"; + this.TI83CheatsDescription.Size = new System.Drawing.Size(40, 13); + this.TI83CheatsDescription.TabIndex = 39; + this.TI83CheatsDescription.Text = "Cheats"; + // + // TI83BrowseBox + // + this.TI83BrowseBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BrowseBox.Location = new System.Drawing.Point(317, 178); + this.TI83BrowseBox.Name = "TI83BrowseBox"; + this.TI83BrowseBox.Size = new System.Drawing.Size(54, 23); + this.TI83BrowseBox.TabIndex = 113; + this.TI83BrowseBox.Text = "Browse"; + this.TI83BrowseBox.UseVisualStyleBackColor = true; + this.TI83BrowseBox.Click += new System.EventHandler(this.TI83BrowseBox_Click); + // + // TI83CheatsBox + // + this.TI83CheatsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TI83CheatsBox.Location = new System.Drawing.Point(13, 179); + this.TI83CheatsBox.Name = "TI83CheatsBox"; + this.TI83CheatsBox.Size = new System.Drawing.Size(297, 20); + this.TI83CheatsBox.TabIndex = 112; + // + // TI83BaseBox + // + this.TI83BaseBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BaseBox.Location = new System.Drawing.Point(13, 21); + this.TI83BaseBox.Name = "TI83BaseBox"; + this.TI83BaseBox.Size = new System.Drawing.Size(297, 20); + this.TI83BaseBox.TabIndex = 102; + // + // TI83ScreenshotsBox + // + this.TI83ScreenshotsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TI83ScreenshotsBox.Location = new System.Drawing.Point(13, 149); + this.TI83ScreenshotsBox.Name = "TI83ScreenshotsBox"; + this.TI83ScreenshotsBox.Size = new System.Drawing.Size(297, 20); + this.TI83ScreenshotsBox.TabIndex = 110; + // + // TI83BaseDescription + // + this.TI83BaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BaseDescription.AutoSize = true; + this.TI83BaseDescription.Location = new System.Drawing.Point(377, 25); + this.TI83BaseDescription.Name = "TI83BaseDescription"; + this.TI83BaseDescription.Size = new System.Drawing.Size(31, 13); + this.TI83BaseDescription.TabIndex = 36; + this.TI83BaseDescription.Text = "Base"; + // + // TI83ScreenshotsDescription + // + this.TI83ScreenshotsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83ScreenshotsDescription.AutoSize = true; + this.TI83ScreenshotsDescription.Location = new System.Drawing.Point(377, 153); + this.TI83ScreenshotsDescription.Name = "TI83ScreenshotsDescription"; + this.TI83ScreenshotsDescription.Size = new System.Drawing.Size(66, 13); + this.TI83ScreenshotsDescription.TabIndex = 33; + this.TI83ScreenshotsDescription.Text = "Screenshots"; + // + // TI83BrowseBase + // + this.TI83BrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BrowseBase.Location = new System.Drawing.Point(317, 20); + this.TI83BrowseBase.Name = "TI83BrowseBase"; + this.TI83BrowseBase.Size = new System.Drawing.Size(54, 23); + this.TI83BrowseBase.TabIndex = 103; + this.TI83BrowseBase.Text = "Browse"; + this.TI83BrowseBase.UseVisualStyleBackColor = true; + this.TI83BrowseBase.Click += new System.EventHandler(this.TI83BrowseBase_Click); + // + // TI83BrowseScreenshots + // + this.TI83BrowseScreenshots.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BrowseScreenshots.Location = new System.Drawing.Point(317, 148); + this.TI83BrowseScreenshots.Name = "TI83BrowseScreenshots"; + this.TI83BrowseScreenshots.Size = new System.Drawing.Size(54, 23); + this.TI83BrowseScreenshots.TabIndex = 111; + this.TI83BrowseScreenshots.Text = "Browse"; + this.TI83BrowseScreenshots.UseVisualStyleBackColor = true; + this.TI83BrowseScreenshots.Click += new System.EventHandler(this.TI83BrowseScreenshots_Click); + // + // TI83ROMsBox + // + this.TI83ROMsBox.AcceptsTab = true; + this.TI83ROMsBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TI83ROMsBox.Location = new System.Drawing.Point(13, 59); + this.TI83ROMsBox.Name = "TI83ROMsBox"; + this.TI83ROMsBox.Size = new System.Drawing.Size(297, 20); + this.TI83ROMsBox.TabIndex = 104; + // + // TI83BrowseSavestates + // + this.TI83BrowseSavestates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BrowseSavestates.Location = new System.Drawing.Point(317, 88); + this.TI83BrowseSavestates.Name = "TI83BrowseSavestates"; + this.TI83BrowseSavestates.Size = new System.Drawing.Size(54, 23); + this.TI83BrowseSavestates.TabIndex = 107; + this.TI83BrowseSavestates.Text = "Browse"; + this.TI83BrowseSavestates.UseVisualStyleBackColor = true; + this.TI83BrowseSavestates.Click += new System.EventHandler(this.TI83BrowseSavestates_Click); + // + // TI83SavestatesDescription + // + this.TI83SavestatesDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83SavestatesDescription.AutoSize = true; + this.TI83SavestatesDescription.Location = new System.Drawing.Point(377, 93); + this.TI83SavestatesDescription.Name = "TI83SavestatesDescription"; + this.TI83SavestatesDescription.Size = new System.Drawing.Size(60, 13); + this.TI83SavestatesDescription.TabIndex = 24; + this.TI83SavestatesDescription.Text = "Savestates"; + // + // TI83ROMsDescription + // + this.TI83ROMsDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83ROMsDescription.AutoSize = true; + this.TI83ROMsDescription.Location = new System.Drawing.Point(377, 63); + this.TI83ROMsDescription.Name = "TI83ROMsDescription"; + this.TI83ROMsDescription.Size = new System.Drawing.Size(37, 13); + this.TI83ROMsDescription.TabIndex = 30; + this.TI83ROMsDescription.Text = "ROMs"; + // + // TI83SavestatesBox + // + this.TI83SavestatesBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TI83SavestatesBox.Location = new System.Drawing.Point(13, 89); + this.TI83SavestatesBox.Name = "TI83SavestatesBox"; + this.TI83SavestatesBox.Size = new System.Drawing.Size(297, 20); + this.TI83SavestatesBox.TabIndex = 106; + // + // TI83BrowseROMs + // + this.TI83BrowseROMs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BrowseROMs.Location = new System.Drawing.Point(317, 58); + this.TI83BrowseROMs.Name = "TI83BrowseROMs"; + this.TI83BrowseROMs.Size = new System.Drawing.Size(54, 23); + this.TI83BrowseROMs.TabIndex = 105; + this.TI83BrowseROMs.Text = "Browse"; + this.TI83BrowseROMs.UseVisualStyleBackColor = true; + this.TI83BrowseROMs.Click += new System.EventHandler(this.TI83BrowseROMs_Click); + // + // TI83BrowseSaveRAM + // + this.TI83BrowseSaveRAM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83BrowseSaveRAM.Location = new System.Drawing.Point(317, 118); + this.TI83BrowseSaveRAM.Name = "TI83BrowseSaveRAM"; + this.TI83BrowseSaveRAM.Size = new System.Drawing.Size(54, 23); + this.TI83BrowseSaveRAM.TabIndex = 109; + this.TI83BrowseSaveRAM.Text = "Browse"; + this.TI83BrowseSaveRAM.UseVisualStyleBackColor = true; + this.TI83BrowseSaveRAM.Click += new System.EventHandler(this.TI83BrowseSaveRAM_Click); + // + // TI83SaveRAMDescription + // + this.TI83SaveRAMDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.TI83SaveRAMDescription.AutoSize = true; + this.TI83SaveRAMDescription.Location = new System.Drawing.Point(377, 123); + this.TI83SaveRAMDescription.Name = "TI83SaveRAMDescription"; + this.TI83SaveRAMDescription.Size = new System.Drawing.Size(59, 13); + this.TI83SaveRAMDescription.TabIndex = 27; + this.TI83SaveRAMDescription.Text = "Save RAM"; + // + // TI83SaveRAMBox + // + this.TI83SaveRAMBox.AcceptsTab = true; + this.TI83SaveRAMBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.TI83SaveRAMBox.Location = new System.Drawing.Point(13, 119); + this.TI83SaveRAMBox.Name = "TI83SaveRAMBox"; + this.TI83SaveRAMBox.Size = new System.Drawing.Size(297, 20); + this.TI83SaveRAMBox.TabIndex = 108; + // + // tabPage7 + // + this.tabPage7.Controls.Add(this.AVIBox); + this.tabPage7.Controls.Add(this.MoviesBox); + this.tabPage7.Controls.Add(this.AVIDescription); + this.tabPage7.Controls.Add(this.BrowseAVI); + this.tabPage7.Controls.Add(this.WatchBox); + this.tabPage7.Controls.Add(this.BrowseLua); + this.tabPage7.Controls.Add(this.WatchDescription); + this.tabPage7.Controls.Add(this.LuaDescription); + this.tabPage7.Controls.Add(this.BrowseWatch); + this.tabPage7.Controls.Add(this.LuaBox); + this.tabPage7.Controls.Add(this.BrowseMovies); + this.tabPage7.Controls.Add(this.MoviesDescription); + this.tabPage7.Location = new System.Drawing.Point(4, 22); + this.tabPage7.Name = "tabPage7"; + this.tabPage7.Size = new System.Drawing.Size(452, 251); + this.tabPage7.TabIndex = 6; + this.tabPage7.Text = "Tools"; + this.tabPage7.UseVisualStyleBackColor = true; + // + // BasePathBox + // + this.BasePathBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.BasePathBox.Location = new System.Drawing.Point(29, 27); + this.BasePathBox.Name = "BasePathBox"; + this.BasePathBox.Size = new System.Drawing.Size(298, 20); + this.BasePathBox.TabIndex = 0; + // + // BrowseBase + // + this.BrowseBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BrowseBase.Location = new System.Drawing.Point(334, 25); + this.BrowseBase.Name = "BrowseBase"; + this.BrowseBase.Size = new System.Drawing.Size(54, 23); + this.BrowseBase.TabIndex = 1; + this.BrowseBase.Text = "Browse"; + this.BrowseBase.UseVisualStyleBackColor = true; + this.BrowseBase.Click += new System.EventHandler(this.BrowseBase_Click); + // + // BaseDescription + // + this.BaseDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.BaseDescription.AutoSize = true; + this.BaseDescription.Location = new System.Drawing.Point(394, 30); + this.BaseDescription.Name = "BaseDescription"; + this.BaseDescription.Size = new System.Drawing.Size(63, 13); + this.BaseDescription.TabIndex = 25; + this.BaseDescription.Text = "Base Folder"; + // + // RecentForROMs + // + this.RecentForROMs.AutoSize = true; + this.RecentForROMs.Location = new System.Drawing.Point(29, 63); + this.RecentForROMs.Name = "RecentForROMs"; + this.RecentForROMs.Size = new System.Drawing.Size(184, 17); + this.RecentForROMs.TabIndex = 2; + this.RecentForROMs.Text = "Always use recent path for ROMs"; + this.RecentForROMs.UseVisualStyleBackColor = true; + this.RecentForROMs.CheckedChanged += new System.EventHandler(this.RecentForROMs_CheckedChanged); + // + // SaveButton + // + this.SaveButton.Location = new System.Drawing.Point(12, 390); + this.SaveButton.Name = "SaveButton"; + this.SaveButton.Size = new System.Drawing.Size(75, 23); + this.SaveButton.TabIndex = 200; + this.SaveButton.Text = "&Save"; + this.SaveButton.UseVisualStyleBackColor = true; + this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click); + // + // NESPaletteBox + // + this.NESPaletteBox.AcceptsTab = true; + this.NESPaletteBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.NESPaletteBox.Location = new System.Drawing.Point(13, 209); + this.NESPaletteBox.Name = "NESPaletteBox"; + this.NESPaletteBox.Size = new System.Drawing.Size(280, 20); + this.NESPaletteBox.TabIndex = 24; + // + // NESBrowsePalette + // + this.NESBrowsePalette.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESBrowsePalette.Location = new System.Drawing.Point(299, 208); + this.NESBrowsePalette.Name = "NESBrowsePalette"; + this.NESBrowsePalette.Size = new System.Drawing.Size(54, 23); + this.NESBrowsePalette.TabIndex = 25; + this.NESBrowsePalette.Text = "Browse"; + this.NESBrowsePalette.UseVisualStyleBackColor = true; + this.NESBrowsePalette.Click += new System.EventHandler(this.NESBrowsePalette_Click); + // + // NESPaletteDescription + // + this.NESPaletteDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.NESPaletteDescription.AutoSize = true; + this.NESPaletteDescription.Location = new System.Drawing.Point(360, 212); + this.NESPaletteDescription.Name = "NESPaletteDescription"; + this.NESPaletteDescription.Size = new System.Drawing.Size(40, 13); + this.NESPaletteDescription.TabIndex = 26; + this.NESPaletteDescription.Text = "Palette"; + // + // PathConfig + // + this.AcceptButton = this.OK; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.Cancel; + this.ClientSize = new System.Drawing.Size(485, 425); + this.Controls.Add(this.SaveButton); + this.Controls.Add(this.RecentForROMs); + this.Controls.Add(this.BasePathBox); + this.Controls.Add(this.BrowseBase); + this.Controls.Add(this.tabControl1); + this.Controls.Add(this.BaseDescription); + this.Controls.Add(this.OK); + this.Controls.Add(this.Cancel); + this.Name = "PathConfig"; + this.ShowIcon = false; + this.Text = "Path Configuration"; + this.Load += new System.EventHandler(this.PathConfig_Load); + this.tabControl1.ResumeLayout(false); + this.tabPage1.ResumeLayout(false); + this.tabPage1.PerformLayout(); + this.tabPage2.ResumeLayout(false); + this.tabPage2.PerformLayout(); + this.tabPage9.ResumeLayout(false); + this.tabPage9.PerformLayout(); + this.tabPage8.ResumeLayout(false); + this.tabPage8.PerformLayout(); + this.tabPage3.ResumeLayout(false); + this.tabPage3.PerformLayout(); + this.tabPage4.ResumeLayout(false); + this.tabPage4.PerformLayout(); + this.tabPage5.ResumeLayout(false); + this.tabPage5.PerformLayout(); + this.tabPage6.ResumeLayout(false); + this.tabPage6.PerformLayout(); + this.tabPage7.ResumeLayout(false); + this.tabPage7.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -2334,5 +2371,8 @@ private System.Windows.Forms.Label SGROMsDescription; private System.Windows.Forms.TextBox SGSaveRAMBox; private System.Windows.Forms.Button SGROMsBrowse; + private System.Windows.Forms.Label NESPaletteDescription; + private System.Windows.Forms.Button NESBrowsePalette; + private System.Windows.Forms.TextBox NESPaletteBox; } } \ No newline at end of file diff --git a/BizHawk.MultiClient/config/PathConfig.cs b/BizHawk.MultiClient/config/PathConfig.cs index a18ce98c6e..517b379f58 100644 --- a/BizHawk.MultiClient/config/PathConfig.cs +++ b/BizHawk.MultiClient/config/PathConfig.cs @@ -54,6 +54,7 @@ namespace BizHawk.MultiClient NESSaveRAMBox.Text = Global.Config.PathNESSaveRAM; NESScreenshotsBox.Text = Global.Config.PathNESScreenshots; NESCheatsBox.Text = Global.Config.PathNESCheats; + NESPaletteBox.Text = Global.Config.PathNESPalette; Sega8BaseBox.Text = Global.Config.BaseSMS; Sega8ROMsBox.Text = Global.Config.PathSMSROMs; @@ -121,6 +122,7 @@ namespace BizHawk.MultiClient Global.Config.PathNESSaveRAM = NESSaveRAMBox.Text; Global.Config.PathNESScreenshots = NESScreenshotsBox.Text; Global.Config.PathNESCheats = NESCheatsBox.Text; + Global.Config.PathNESPalette = NESPaletteBox.Text; Global.Config.BaseSMS = Sega8BaseBox.Text; Global.Config.PathSMSROMs = Sega8ROMsBox.Text; @@ -537,5 +539,10 @@ namespace BizHawk.MultiClient { BrowseFolder(SGCheatsBox, SGCheatsDescription.Text, "SG"); } + + private void NESBrowsePalette_Click(object sender, EventArgs e) + { + BrowseFolder(NESPaletteBox, NESPaletteDescription.Text, "NES"); + } } }