BizHawk/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.Designer.cs

740 lines
30 KiB
C#
Raw Normal View History

namespace BizHawk.Client.EmuHawk
{
partial class BasicBot
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.BotMenu = new MenuStripEx();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.NewMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2015-08-31 00:53:22 +00:00
this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2015-08-31 00:53:22 +00:00
this.RecentSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
2015-08-27 02:41:34 +00:00
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
2015-08-31 00:53:22 +00:00
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.countRerecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2015-08-27 02:41:34 +00:00
this.RunBtn = new System.Windows.Forms.Button();
this.BotStatusStrip = new System.Windows.Forms.StatusStrip();
this.ControlsBox = new System.Windows.Forms.GroupBox();
this.ControlProbabilityPanel = new System.Windows.Forms.Panel();
this.BestGroupBox = new System.Windows.Forms.GroupBox();
this.BestAttemptNumberLabel = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.BestAttemptLogLabel = new System.Windows.Forms.Label();
this.BestTieBreak3Box = new System.Windows.Forms.TextBox();
this.BestTieBreak2Box = new System.Windows.Forms.TextBox();
this.BestTieBreak1Box = new System.Windows.Forms.TextBox();
this.BestMaximizeBox = new System.Windows.Forms.TextBox();
this.label16 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
2015-08-27 02:41:34 +00:00
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.AttemptsLabel = new System.Windows.Forms.Label();
this.FramesLabel = new System.Windows.Forms.Label();
this.GoalGroupBox = new System.Windows.Forms.GroupBox();
this.label12 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.TieBreaker1Box = new BizHawk.Client.EmuHawk.HexTextBox();
this.TieBreaker2Box = new BizHawk.Client.EmuHawk.HexTextBox();
this.TieBreaker3Box = new BizHawk.Client.EmuHawk.HexTextBox();
2015-08-27 02:41:34 +00:00
this.label5 = new System.Windows.Forms.Label();
this.MaximizeAddressBox = new BizHawk.Client.EmuHawk.HexTextBox();
this.maximizeLabeltext = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.FrameLengthNumeric = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.StopBtn = new System.Windows.Forms.Button();
this.label8 = new System.Windows.Forms.Label();
this.StartFromSlotBox = new System.Windows.Forms.ComboBox();
2015-08-31 00:53:22 +00:00
this.ClearBestButton = new System.Windows.Forms.Button();
this.PlayBestButton = new System.Windows.Forms.Button();
this.BotMenu.SuspendLayout();
2015-08-27 02:41:34 +00:00
this.ControlsBox.SuspendLayout();
this.BestGroupBox.SuspendLayout();
this.panel1.SuspendLayout();
2015-08-27 02:41:34 +00:00
this.GoalGroupBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.FrameLengthNumeric)).BeginInit();
this.SuspendLayout();
//
// BotMenu
//
this.BotMenu.ClickThrough = true;
this.BotMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2015-08-27 02:41:34 +00:00
this.fileToolStripMenuItem,
this.optionsToolStripMenuItem});
this.BotMenu.Location = new System.Drawing.Point(0, 0);
this.BotMenu.Name = "BotMenu";
this.BotMenu.Size = new System.Drawing.Size(574, 24);
this.BotMenu.TabIndex = 0;
this.BotMenu.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
2015-08-31 00:53:22 +00:00
this.NewMenuItem,
this.OpenMenuItem,
this.SaveMenuItem,
this.SaveAsMenuItem,
this.RecentSubMenu,
this.toolStripSeparator1,
2015-08-31 00:53:22 +00:00
this.ExitMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// NewMenuItem
//
this.NewMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.NewFile;
this.NewMenuItem.Name = "NewMenuItem";
this.NewMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.NewMenuItem.Size = new System.Drawing.Size(195, 22);
this.NewMenuItem.Text = "&New";
//
2015-08-31 00:53:22 +00:00
// OpenMenuItem
//
2015-08-31 00:53:22 +00:00
this.OpenMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.OpenFile;
this.OpenMenuItem.Name = "OpenMenuItem";
this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenMenuItem.Size = new System.Drawing.Size(195, 22);
this.OpenMenuItem.Text = "&Open...";
//
2015-08-31 00:53:22 +00:00
// SaveMenuItem
//
2015-08-31 00:53:22 +00:00
this.SaveMenuItem.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.SaveAs;
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveMenuItem.Text = "&Save";
//
// SaveAsMenuItem
//
this.SaveAsMenuItem.Name = "SaveAsMenuItem";
this.SaveAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveAsMenuItem.Text = "Save &As...";
//
2015-08-31 00:53:22 +00:00
// RecentSubMenu
2015-08-27 02:41:34 +00:00
//
2015-08-31 00:53:22 +00:00
this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator2});
this.RecentSubMenu.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Recent;
this.RecentSubMenu.Name = "RecentSubMenu";
this.RecentSubMenu.Size = new System.Drawing.Size(195, 22);
this.RecentSubMenu.Text = "Recent";
2015-08-27 02:41:34 +00:00
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(57, 6);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
2015-08-31 00:53:22 +00:00
this.toolStripSeparator1.Size = new System.Drawing.Size(192, 6);
//
2015-08-31 00:53:22 +00:00
// ExitMenuItem
//
2015-08-31 00:53:22 +00:00
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(195, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
2015-08-27 02:41:34 +00:00
//
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.countRerecordsToolStripMenuItem});
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.optionsToolStripMenuItem.Text = "&Options";
//
// countRerecordsToolStripMenuItem
//
this.countRerecordsToolStripMenuItem.Enabled = false;
this.countRerecordsToolStripMenuItem.Name = "countRerecordsToolStripMenuItem";
this.countRerecordsToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
this.countRerecordsToolStripMenuItem.Text = "Count Rerecords";
//
2015-08-27 02:41:34 +00:00
// RunBtn
//
this.RunBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
2015-08-31 00:53:22 +00:00
this.RunBtn.Location = new System.Drawing.Point(487, 495);
2015-08-27 02:41:34 +00:00
this.RunBtn.Name = "RunBtn";
this.RunBtn.Size = new System.Drawing.Size(75, 23);
this.RunBtn.TabIndex = 2001;
2015-08-27 02:41:34 +00:00
this.RunBtn.Text = "&Run";
this.RunBtn.UseVisualStyleBackColor = true;
this.RunBtn.Click += new System.EventHandler(this.RunBtn_Click);
//
// BotStatusStrip
//
this.BotStatusStrip.Location = new System.Drawing.Point(0, 530);
this.BotStatusStrip.Name = "BotStatusStrip";
this.BotStatusStrip.Size = new System.Drawing.Size(574, 22);
this.BotStatusStrip.TabIndex = 2;
this.BotStatusStrip.Text = "statusStrip1";
//
// ControlsBox
//
this.ControlsBox.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)));
2015-08-27 02:41:34 +00:00
this.ControlsBox.Controls.Add(this.ControlProbabilityPanel);
this.ControlsBox.Location = new System.Drawing.Point(12, 27);
this.ControlsBox.Name = "ControlsBox";
this.ControlsBox.Size = new System.Drawing.Size(311, 344);
this.ControlsBox.TabIndex = 3;
this.ControlsBox.TabStop = false;
this.ControlsBox.Text = "Controls";
//
// ControlProbabilityPanel
//
this.ControlProbabilityPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.ControlProbabilityPanel.AutoScroll = true;
this.ControlProbabilityPanel.Location = new System.Drawing.Point(6, 19);
this.ControlProbabilityPanel.Name = "ControlProbabilityPanel";
this.ControlProbabilityPanel.Size = new System.Drawing.Size(299, 319);
this.ControlProbabilityPanel.TabIndex = 0;
//
// BestGroupBox
//
this.BestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.BestGroupBox.Controls.Add(this.BestAttemptNumberLabel);
this.BestGroupBox.Controls.Add(this.label17);
this.BestGroupBox.Controls.Add(this.panel1);
this.BestGroupBox.Controls.Add(this.BestTieBreak3Box);
this.BestGroupBox.Controls.Add(this.BestTieBreak2Box);
this.BestGroupBox.Controls.Add(this.BestTieBreak1Box);
this.BestGroupBox.Controls.Add(this.BestMaximizeBox);
this.BestGroupBox.Controls.Add(this.label16);
this.BestGroupBox.Controls.Add(this.label15);
this.BestGroupBox.Controls.Add(this.label14);
this.BestGroupBox.Controls.Add(this.label13);
2015-08-27 02:41:34 +00:00
this.BestGroupBox.Location = new System.Drawing.Point(329, 86);
this.BestGroupBox.Name = "BestGroupBox";
this.BestGroupBox.Size = new System.Drawing.Size(245, 285);
this.BestGroupBox.TabIndex = 4;
this.BestGroupBox.TabStop = false;
this.BestGroupBox.Text = "Best";
//
// BestAttemptNumberLabel
//
this.BestAttemptNumberLabel.AutoSize = true;
this.BestAttemptNumberLabel.Location = new System.Drawing.Point(17, 40);
this.BestAttemptNumberLabel.Name = "BestAttemptNumberLabel";
this.BestAttemptNumberLabel.Size = new System.Drawing.Size(13, 13);
this.BestAttemptNumberLabel.TabIndex = 23;
this.BestAttemptNumberLabel.Text = "0";
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(17, 20);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(46, 13);
this.label17.TabIndex = 22;
this.label17.Text = "Attempt:";
//
// panel1
//
this.panel1.AutoScroll = true;
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel1.Controls.Add(this.BestAttemptLogLabel);
this.panel1.Location = new System.Drawing.Point(12, 99);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(227, 180);
this.panel1.TabIndex = 21;
//
// BestAttemptLogLabel
//
this.BestAttemptLogLabel.AutoSize = true;
this.BestAttemptLogLabel.Location = new System.Drawing.Point(8, 8);
this.BestAttemptLogLabel.Name = "BestAttemptLogLabel";
this.BestAttemptLogLabel.Size = new System.Drawing.Size(130, 13);
this.BestAttemptLogLabel.TabIndex = 0;
this.BestAttemptLogLabel.Text = " ";
//
// BestTieBreak3Box
//
this.BestTieBreak3Box.Location = new System.Drawing.Point(178, 73);
this.BestTieBreak3Box.Name = "BestTieBreak3Box";
this.BestTieBreak3Box.ReadOnly = true;
this.BestTieBreak3Box.Size = new System.Drawing.Size(58, 20);
this.BestTieBreak3Box.TabIndex = 20;
this.BestTieBreak3Box.TabStop = false;
//
// BestTieBreak2Box
//
this.BestTieBreak2Box.Location = new System.Drawing.Point(178, 53);
this.BestTieBreak2Box.Name = "BestTieBreak2Box";
this.BestTieBreak2Box.ReadOnly = true;
this.BestTieBreak2Box.Size = new System.Drawing.Size(58, 20);
this.BestTieBreak2Box.TabIndex = 19;
this.BestTieBreak2Box.TabStop = false;
//
// BestTieBreak1Box
//
this.BestTieBreak1Box.Location = new System.Drawing.Point(178, 33);
this.BestTieBreak1Box.Name = "BestTieBreak1Box";
this.BestTieBreak1Box.ReadOnly = true;
this.BestTieBreak1Box.Size = new System.Drawing.Size(58, 20);
this.BestTieBreak1Box.TabIndex = 18;
this.BestTieBreak1Box.TabStop = false;
//
// BestMaximizeBox
//
this.BestMaximizeBox.Location = new System.Drawing.Point(178, 13);
this.BestMaximizeBox.Name = "BestMaximizeBox";
this.BestMaximizeBox.ReadOnly = true;
this.BestMaximizeBox.Size = new System.Drawing.Size(58, 20);
this.BestMaximizeBox.TabIndex = 17;
this.BestMaximizeBox.TabStop = false;
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(111, 76);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(61, 13);
this.label16.TabIndex = 16;
this.label16.Text = "Tiebreak 3:";
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(111, 56);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(61, 13);
this.label15.TabIndex = 15;
this.label15.Text = "Tiebreak 2:";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(111, 36);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(61, 13);
this.label14.TabIndex = 6;
this.label14.Text = "Tiebreak 1:";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(119, 16);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(53, 13);
this.label13.TabIndex = 0;
this.label13.Text = "Maximize:";
//
2015-08-27 02:41:34 +00:00
// label1
//
2015-08-31 00:53:22 +00:00
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2015-08-27 02:41:34 +00:00
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(339, 46);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(51, 13);
this.label1.TabIndex = 5;
this.label1.Text = "Attempts:";
//
// label2
//
2015-08-31 00:53:22 +00:00
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2015-08-27 02:41:34 +00:00
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(346, 63);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(44, 13);
this.label2.TabIndex = 6;
this.label2.Text = "Frames:";
//
// AttemptsLabel
//
2015-08-31 00:53:22 +00:00
this.AttemptsLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2015-08-27 02:41:34 +00:00
this.AttemptsLabel.AutoSize = true;
this.AttemptsLabel.Location = new System.Drawing.Point(397, 46);
this.AttemptsLabel.Name = "AttemptsLabel";
this.AttemptsLabel.Size = new System.Drawing.Size(13, 13);
this.AttemptsLabel.TabIndex = 7;
this.AttemptsLabel.Text = "0";
//
// FramesLabel
//
2015-08-31 00:53:22 +00:00
this.FramesLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
2015-08-27 02:41:34 +00:00
this.FramesLabel.AutoSize = true;
this.FramesLabel.Location = new System.Drawing.Point(397, 63);
this.FramesLabel.Name = "FramesLabel";
this.FramesLabel.Size = new System.Drawing.Size(13, 13);
this.FramesLabel.TabIndex = 8;
this.FramesLabel.Text = "0";
//
// GoalGroupBox
//
this.GoalGroupBox.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.GoalGroupBox.Controls.Add(this.label12);
this.GoalGroupBox.Controls.Add(this.label11);
this.GoalGroupBox.Controls.Add(this.label10);
this.GoalGroupBox.Controls.Add(this.label9);
2015-08-27 02:41:34 +00:00
this.GoalGroupBox.Controls.Add(this.label7);
this.GoalGroupBox.Controls.Add(this.label6);
this.GoalGroupBox.Controls.Add(this.TieBreaker1Box);
this.GoalGroupBox.Controls.Add(this.TieBreaker2Box);
this.GoalGroupBox.Controls.Add(this.TieBreaker3Box);
this.GoalGroupBox.Controls.Add(this.label5);
this.GoalGroupBox.Controls.Add(this.MaximizeAddressBox);
this.GoalGroupBox.Controls.Add(this.maximizeLabeltext);
this.GoalGroupBox.Controls.Add(this.label4);
this.GoalGroupBox.Controls.Add(this.FrameLengthNumeric);
this.GoalGroupBox.Controls.Add(this.label3);
this.GoalGroupBox.Location = new System.Drawing.Point(12, 377);
this.GoalGroupBox.Name = "GoalGroupBox";
this.GoalGroupBox.Size = new System.Drawing.Size(311, 150);
this.GoalGroupBox.TabIndex = 9;
this.GoalGroupBox.TabStop = false;
this.GoalGroupBox.Text = "Goal";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(108, 124);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(18, 13);
this.label12.TabIndex = 14;
this.label12.Text = "0x";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(108, 102);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(18, 13);
this.label11.TabIndex = 13;
this.label11.Text = "0x";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(108, 79);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(18, 13);
this.label10.TabIndex = 12;
this.label10.Text = "0x";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(108, 56);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(18, 13);
this.label9.TabIndex = 11;
this.label9.Text = "0x";
//
// label7
2015-08-27 02:41:34 +00:00
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(42, 124);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(61, 13);
this.label7.TabIndex = 10;
this.label7.Text = "Tiebreak 3:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(42, 102);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(61, 13);
this.label6.TabIndex = 9;
this.label6.Text = "Tiebreak 2:";
//
// TieBreaker1Box
//
this.TieBreaker1Box.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.TieBreaker1Box.Location = new System.Drawing.Point(128, 75);
this.TieBreaker1Box.Name = "TieBreaker1Box";
this.TieBreaker1Box.Nullable = true;
this.TieBreaker1Box.Size = new System.Drawing.Size(95, 20);
this.TieBreaker1Box.TabIndex = 1002;
//
// TieBreaker2Box
//
this.TieBreaker2Box.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.TieBreaker2Box.Location = new System.Drawing.Point(128, 98);
this.TieBreaker2Box.Name = "TieBreaker2Box";
this.TieBreaker2Box.Nullable = true;
this.TieBreaker2Box.Size = new System.Drawing.Size(95, 20);
this.TieBreaker2Box.TabIndex = 1003;
//
// TieBreaker3Box
//
this.TieBreaker3Box.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.TieBreaker3Box.Location = new System.Drawing.Point(128, 120);
this.TieBreaker3Box.Name = "TieBreaker3Box";
this.TieBreaker3Box.Nullable = true;
this.TieBreaker3Box.Size = new System.Drawing.Size(95, 20);
this.TieBreaker3Box.TabIndex = 1004;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(42, 79);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(61, 13);
this.label5.TabIndex = 5;
this.label5.Text = "Tiebreak 1:";
//
// MaximizeAddressBox
//
this.MaximizeAddressBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.MaximizeAddressBox.Location = new System.Drawing.Point(128, 52);
this.MaximizeAddressBox.Name = "MaximizeAddressBox";
this.MaximizeAddressBox.Nullable = true;
this.MaximizeAddressBox.Size = new System.Drawing.Size(95, 20);
this.MaximizeAddressBox.TabIndex = 1001;
//
// maximizeLabeltext
//
this.maximizeLabeltext.AutoSize = true;
this.maximizeLabeltext.Location = new System.Drawing.Point(9, 56);
this.maximizeLabeltext.Name = "maximizeLabeltext";
this.maximizeLabeltext.Size = new System.Drawing.Size(94, 13);
this.maximizeLabeltext.TabIndex = 3;
this.maximizeLabeltext.Text = "Maximize Address:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(113, 29);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(38, 13);
this.label4.TabIndex = 2;
this.label4.Text = "frames";
2015-08-27 02:41:34 +00:00
//
// FrameLengthNumeric
//
this.FrameLengthNumeric.Location = new System.Drawing.Point(60, 25);
this.FrameLengthNumeric.Maximum = new decimal(new int[] {
999,
0,
0,
0});
this.FrameLengthNumeric.Name = "FrameLengthNumeric";
this.FrameLengthNumeric.Size = new System.Drawing.Size(46, 20);
this.FrameLengthNumeric.TabIndex = 1000;
2015-08-27 02:41:34 +00:00
this.FrameLengthNumeric.Value = new decimal(new int[] {
100,
0,
0,
0});
//
// label3
2015-08-27 02:41:34 +00:00
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(7, 29);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(50, 13);
this.label3.TabIndex = 0;
this.label3.Text = "End after";
2015-08-27 02:41:34 +00:00
//
// StopBtn
2015-08-27 02:41:34 +00:00
//
this.StopBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.StopBtn.Location = new System.Drawing.Point(487, 495);
this.StopBtn.Name = "StopBtn";
this.StopBtn.Size = new System.Drawing.Size(75, 23);
this.StopBtn.TabIndex = 2002;
this.StopBtn.Text = "&Stop";
this.StopBtn.UseVisualStyleBackColor = true;
2015-08-31 00:53:22 +00:00
this.StopBtn.Visible = false;
this.StopBtn.Click += new System.EventHandler(this.StopBtn_Click);
2015-08-27 02:41:34 +00:00
//
// label8
//
this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.label8.AutoSize = true;
2015-08-31 00:53:22 +00:00
this.label8.Location = new System.Drawing.Point(423, 456);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(58, 13);
this.label8.TabIndex = 11;
this.label8.Text = "Start From:";
//
// StartFromSlotBox
//
this.StartFromSlotBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.StartFromSlotBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.StartFromSlotBox.FormattingEnabled = true;
this.StartFromSlotBox.Items.AddRange(new object[] {
"Slot 0",
"Slot 1",
"Slot 2",
"Slot 3",
"Slot 4",
"Slot 5",
"Slot 6",
"Slot 7",
"Slot 8",
"Slot 9"});
2015-08-31 00:53:22 +00:00
this.StartFromSlotBox.Location = new System.Drawing.Point(487, 456);
this.StartFromSlotBox.Name = "StartFromSlotBox";
this.StartFromSlotBox.Size = new System.Drawing.Size(75, 21);
this.StartFromSlotBox.TabIndex = 2000;
//
2015-08-31 00:53:22 +00:00
// ClearBestButton
//
this.ClearBestButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ClearBestButton.Enabled = false;
this.ClearBestButton.Location = new System.Drawing.Point(490, 38);
2015-08-31 00:53:22 +00:00
this.ClearBestButton.Name = "ClearBestButton";
this.ClearBestButton.Size = new System.Drawing.Size(75, 23);
this.ClearBestButton.TabIndex = 2003;
this.ClearBestButton.Text = "&Clear";
this.ClearBestButton.UseVisualStyleBackColor = true;
this.ClearBestButton.Click += new System.EventHandler(this.ClearBestButton_Click);
//
// PlayBestButton
2015-08-31 00:53:22 +00:00
//
this.PlayBestButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.PlayBestButton.Enabled = false;
this.PlayBestButton.Location = new System.Drawing.Point(490, 66);
this.PlayBestButton.Name = "PlayBestButton";
this.PlayBestButton.Size = new System.Drawing.Size(75, 23);
this.PlayBestButton.TabIndex = 2004;
this.PlayBestButton.Text = "&Play";
this.PlayBestButton.UseVisualStyleBackColor = true;
this.PlayBestButton.Click += new System.EventHandler(this.PlayBestButton_Click);
2015-08-31 00:53:22 +00:00
//
// BasicBot
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(574, 552);
this.Controls.Add(this.PlayBestButton);
2015-08-31 00:53:22 +00:00
this.Controls.Add(this.ClearBestButton);
this.Controls.Add(this.StartFromSlotBox);
this.Controls.Add(this.label8);
this.Controls.Add(this.StopBtn);
2015-08-27 02:41:34 +00:00
this.Controls.Add(this.GoalGroupBox);
this.Controls.Add(this.FramesLabel);
this.Controls.Add(this.AttemptsLabel);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.BestGroupBox);
this.Controls.Add(this.ControlsBox);
this.Controls.Add(this.BotStatusStrip);
this.Controls.Add(this.RunBtn);
this.Controls.Add(this.BotMenu);
this.MainMenuStrip = this.BotMenu;
this.Name = "BasicBot";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Basic Bot";
this.Load += new System.EventHandler(this.BasicBot_Load);
this.BotMenu.ResumeLayout(false);
this.BotMenu.PerformLayout();
2015-08-27 02:41:34 +00:00
this.ControlsBox.ResumeLayout(false);
this.BestGroupBox.ResumeLayout(false);
this.BestGroupBox.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
2015-08-27 02:41:34 +00:00
this.GoalGroupBox.ResumeLayout(false);
this.GoalGroupBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.FrameLengthNumeric)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MenuStripEx BotMenu;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
2015-08-31 00:53:22 +00:00
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.Button RunBtn;
2015-08-31 00:53:22 +00:00
private System.Windows.Forms.ToolStripMenuItem OpenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
2015-08-27 02:41:34 +00:00
private System.Windows.Forms.StatusStrip BotStatusStrip;
private System.Windows.Forms.GroupBox ControlsBox;
private System.Windows.Forms.Panel ControlProbabilityPanel;
private System.Windows.Forms.GroupBox BestGroupBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label AttemptsLabel;
private System.Windows.Forms.Label FramesLabel;
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem countRerecordsToolStripMenuItem;
private System.Windows.Forms.GroupBox GoalGroupBox;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label6;
private HexTextBox TieBreaker1Box;
private HexTextBox TieBreaker2Box;
private HexTextBox TieBreaker3Box;
private System.Windows.Forms.Label label5;
private HexTextBox MaximizeAddressBox;
private System.Windows.Forms.Label maximizeLabeltext;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.NumericUpDown FrameLengthNumeric;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button StopBtn;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.ComboBox StartFromSlotBox;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label11;
private System.Windows.Forms.Label label10;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox BestTieBreak3Box;
private System.Windows.Forms.TextBox BestTieBreak2Box;
private System.Windows.Forms.TextBox BestTieBreak1Box;
private System.Windows.Forms.TextBox BestMaximizeBox;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label BestAttemptNumberLabel;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.Label BestAttemptLogLabel;
2015-08-31 00:53:22 +00:00
private System.Windows.Forms.Button ClearBestButton;
private System.Windows.Forms.ToolStripMenuItem SaveAsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem NewMenuItem;
private System.Windows.Forms.Button PlayBestButton;
}
}