Fix Receive Typo In Medal Dropdown

This commit is contained in:
Jonathan Herbert 2023-10-22 21:45:44 -04:00
parent 13b3b751e3
commit 7220a0c63c

View File

@ -53,73 +53,73 @@ namespace BW_tool
/// Do not change the method contents inside the source code editor. The Forms designer might
private void InitializeComponent()
{
this.day = new System.Windows.Forms.NumericUpDown();
this.month = new System.Windows.Forms.NumericUpDown();
this.year = new System.Windows.Forms.NumericUpDown();
this.indexbox = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.flag4box = new System.Windows.Forms.CheckBox();
this.medal_date = new System.Windows.Forms.DateTimePicker();
this.obtained = new System.Windows.Forms.CheckBox();
this.red_panel = new System.Windows.Forms.Panel();
this.delete_but = new System.Windows.Forms.Button();
this.date_hex = new System.Windows.Forms.TextBox();
this.flag_hex = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.exit_but = new System.Windows.Forms.Button();
this.saveexit_but = new System.Windows.Forms.Button();
this.medalState = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.day)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.month)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.year)).BeginInit();
this.SuspendLayout();
//
// day
//
this.day.Location = new System.Drawing.Point(49, 67);
this.day.Maximum = new decimal(new int[] {
this.day = new System.Windows.Forms.NumericUpDown();
this.month = new System.Windows.Forms.NumericUpDown();
this.year = new System.Windows.Forms.NumericUpDown();
this.indexbox = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.flag4box = new System.Windows.Forms.CheckBox();
this.medal_date = new System.Windows.Forms.DateTimePicker();
this.obtained = new System.Windows.Forms.CheckBox();
this.red_panel = new System.Windows.Forms.Panel();
this.delete_but = new System.Windows.Forms.Button();
this.date_hex = new System.Windows.Forms.TextBox();
this.flag_hex = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.exit_but = new System.Windows.Forms.Button();
this.saveexit_but = new System.Windows.Forms.Button();
this.medalState = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.day)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.month)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.year)).BeginInit();
this.SuspendLayout();
//
// day
//
this.day.Location = new System.Drawing.Point(49, 67);
this.day.Maximum = new decimal(new int[] {
31,
0,
0,
0});
this.day.Name = "day";
this.day.Size = new System.Drawing.Size(46, 20);
this.day.TabIndex = 0;
this.day.ValueChanged += new System.EventHandler(this.DayValueChanged);
//
// month
//
this.month.Location = new System.Drawing.Point(140, 67);
this.month.Maximum = new decimal(new int[] {
this.day.Name = "day";
this.day.Size = new System.Drawing.Size(46, 20);
this.day.TabIndex = 0;
this.day.ValueChanged += new System.EventHandler(this.DayValueChanged);
//
// month
//
this.month.Location = new System.Drawing.Point(140, 67);
this.month.Maximum = new decimal(new int[] {
12,
0,
0,
0});
this.month.Name = "month";
this.month.Size = new System.Drawing.Size(46, 20);
this.month.TabIndex = 1;
this.month.ValueChanged += new System.EventHandler(this.MonthValueChanged);
//
// year
//
this.year.Location = new System.Drawing.Point(229, 67);
this.year.Maximum = new decimal(new int[] {
this.month.Name = "month";
this.month.Size = new System.Drawing.Size(46, 20);
this.month.TabIndex = 1;
this.month.ValueChanged += new System.EventHandler(this.MonthValueChanged);
//
// year
//
this.year.Location = new System.Drawing.Point(229, 67);
this.year.Maximum = new decimal(new int[] {
127,
0,
0,
0});
this.year.Name = "year";
this.year.Size = new System.Drawing.Size(46, 20);
this.year.TabIndex = 2;
this.year.ValueChanged += new System.EventHandler(this.YearValueChanged);
//
// indexbox
//
this.indexbox.FormattingEnabled = true;
this.indexbox.Items.AddRange(new object[] {
this.year.Name = "year";
this.year.Size = new System.Drawing.Size(46, 20);
this.year.TabIndex = 2;
this.year.ValueChanged += new System.EventHandler(this.YearValueChanged);
//
// indexbox
//
this.indexbox.FormattingEnabled = true;
this.indexbox.Items.AddRange(new object[] {
" ======= Special Medaling medals =======",
"000 - First Step",
"001 - Participation Prize",
@ -380,182 +380,182 @@ namespace BW_tool
"Steel-type Champ",
"One and Only",
"Supreme Challenger"});
this.indexbox.Location = new System.Drawing.Point(12, 12);
this.indexbox.MaxDropDownItems = 10;
this.indexbox.Name = "indexbox";
this.indexbox.Size = new System.Drawing.Size(263, 21);
this.indexbox.TabIndex = 4;
this.indexbox.SelectedIndexChanged += new System.EventHandler(this.ComboBox1SelectedIndexChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(12, 69);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 20);
this.label1.TabIndex = 5;
this.label1.Text = "Day";
//
// label2
//
this.label2.Location = new System.Drawing.Point(101, 69);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(37, 23);
this.label2.TabIndex = 6;
this.label2.Text = "Month";
//
// label3
//
this.label3.Location = new System.Drawing.Point(192, 69);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(31, 23);
this.label3.TabIndex = 7;
this.label3.Text = "Year";
//
// flag4box
//
this.flag4box.Location = new System.Drawing.Point(12, 102);
this.flag4box.Name = "flag4box";
this.flag4box.Size = new System.Drawing.Size(104, 24);
this.flag4box.TabIndex = 13;
this.flag4box.Text = "Unread";
this.flag4box.UseVisualStyleBackColor = true;
this.flag4box.CheckedChanged += new System.EventHandler(this.Flag4boxCheckedChanged);
//
// medal_date
//
this.medal_date.Location = new System.Drawing.Point(12, 67);
this.medal_date.Name = "medal_date";
this.medal_date.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.medal_date.Size = new System.Drawing.Size(263, 20);
this.medal_date.TabIndex = 14;
this.medal_date.ValueChanged += new System.EventHandler(this.Medal_dateValueChanged);
//
// obtained
//
this.obtained.AutoCheck = false;
this.obtained.Location = new System.Drawing.Point(12, 123);
this.obtained.Name = "obtained";
this.obtained.Size = new System.Drawing.Size(110, 23);
this.obtained.TabIndex = 15;
this.obtained.Text = "Obtained";
this.obtained.UseVisualStyleBackColor = true;
this.obtained.Visible = false;
//
// red_panel
//
this.red_panel.Location = new System.Drawing.Point(12, 68);
this.red_panel.Name = "red_panel";
this.red_panel.Size = new System.Drawing.Size(232, 18);
this.red_panel.TabIndex = 16;
//
// delete_but
//
this.delete_but.Location = new System.Drawing.Point(12, 177);
this.delete_but.Name = "delete_but";
this.delete_but.Size = new System.Drawing.Size(83, 20);
this.delete_but.TabIndex = 17;
this.delete_but.Text = "Delete Medal";
this.delete_but.UseVisualStyleBackColor = true;
this.delete_but.Click += new System.EventHandler(this.Delete_butClick);
//
// date_hex
//
this.date_hex.Location = new System.Drawing.Point(208, 104);
this.date_hex.Name = "date_hex";
this.date_hex.Size = new System.Drawing.Size(64, 20);
this.date_hex.TabIndex = 18;
//
// flag_hex
//
this.flag_hex.Location = new System.Drawing.Point(208, 130);
this.flag_hex.Name = "flag_hex";
this.flag_hex.Size = new System.Drawing.Size(64, 20);
this.flag_hex.TabIndex = 19;
//
// label4
//
this.label4.Location = new System.Drawing.Point(137, 102);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 23);
this.label4.TabIndex = 20;
this.label4.Text = "Date hex:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label5
//
this.label5.Location = new System.Drawing.Point(151, 128);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(51, 23);
this.label5.TabIndex = 21;
this.label5.Text = "Flag hex:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// exit_but
//
this.exit_but.Location = new System.Drawing.Point(178, 184);
this.exit_but.Name = "exit_but";
this.exit_but.Size = new System.Drawing.Size(97, 27);
this.exit_but.TabIndex = 8;
this.exit_but.Text = "Exit";
this.exit_but.UseVisualStyleBackColor = true;
this.exit_but.Click += new System.EventHandler(this.Exit_butClick);
//
// saveexit_but
//
this.saveexit_but.Location = new System.Drawing.Point(178, 217);
this.saveexit_but.Name = "saveexit_but";
this.saveexit_but.Size = new System.Drawing.Size(99, 29);
this.saveexit_but.TabIndex = 9;
this.saveexit_but.Text = "Save and Exit";
this.saveexit_but.UseVisualStyleBackColor = true;
this.saveexit_but.Click += new System.EventHandler(this.Saveexit_butClick);
//
// medalState
//
this.medalState.FormattingEnabled = true;
this.medalState.Items.AddRange(new object[] {
this.indexbox.Location = new System.Drawing.Point(12, 12);
this.indexbox.MaxDropDownItems = 10;
this.indexbox.Name = "indexbox";
this.indexbox.Size = new System.Drawing.Size(263, 21);
this.indexbox.TabIndex = 4;
this.indexbox.SelectedIndexChanged += new System.EventHandler(this.ComboBox1SelectedIndexChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(12, 69);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(31, 20);
this.label1.TabIndex = 5;
this.label1.Text = "Day";
//
// label2
//
this.label2.Location = new System.Drawing.Point(101, 69);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(37, 23);
this.label2.TabIndex = 6;
this.label2.Text = "Month";
//
// label3
//
this.label3.Location = new System.Drawing.Point(192, 69);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(31, 23);
this.label3.TabIndex = 7;
this.label3.Text = "Year";
//
// flag4box
//
this.flag4box.Location = new System.Drawing.Point(12, 102);
this.flag4box.Name = "flag4box";
this.flag4box.Size = new System.Drawing.Size(104, 24);
this.flag4box.TabIndex = 13;
this.flag4box.Text = "Unread";
this.flag4box.UseVisualStyleBackColor = true;
this.flag4box.CheckedChanged += new System.EventHandler(this.Flag4boxCheckedChanged);
//
// medal_date
//
this.medal_date.Location = new System.Drawing.Point(12, 67);
this.medal_date.Name = "medal_date";
this.medal_date.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.medal_date.Size = new System.Drawing.Size(263, 20);
this.medal_date.TabIndex = 14;
this.medal_date.ValueChanged += new System.EventHandler(this.Medal_dateValueChanged);
//
// obtained
//
this.obtained.AutoCheck = false;
this.obtained.Location = new System.Drawing.Point(12, 123);
this.obtained.Name = "obtained";
this.obtained.Size = new System.Drawing.Size(110, 23);
this.obtained.TabIndex = 15;
this.obtained.Text = "Obtained";
this.obtained.UseVisualStyleBackColor = true;
this.obtained.Visible = false;
//
// red_panel
//
this.red_panel.Location = new System.Drawing.Point(12, 68);
this.red_panel.Name = "red_panel";
this.red_panel.Size = new System.Drawing.Size(232, 18);
this.red_panel.TabIndex = 16;
//
// delete_but
//
this.delete_but.Location = new System.Drawing.Point(12, 177);
this.delete_but.Name = "delete_but";
this.delete_but.Size = new System.Drawing.Size(83, 20);
this.delete_but.TabIndex = 17;
this.delete_but.Text = "Delete Medal";
this.delete_but.UseVisualStyleBackColor = true;
this.delete_but.Click += new System.EventHandler(this.Delete_butClick);
//
// date_hex
//
this.date_hex.Location = new System.Drawing.Point(208, 104);
this.date_hex.Name = "date_hex";
this.date_hex.Size = new System.Drawing.Size(64, 20);
this.date_hex.TabIndex = 18;
//
// flag_hex
//
this.flag_hex.Location = new System.Drawing.Point(208, 130);
this.flag_hex.Name = "flag_hex";
this.flag_hex.Size = new System.Drawing.Size(64, 20);
this.flag_hex.TabIndex = 19;
//
// label4
//
this.label4.Location = new System.Drawing.Point(137, 102);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 23);
this.label4.TabIndex = 20;
this.label4.Text = "Date hex:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label5
//
this.label5.Location = new System.Drawing.Point(151, 128);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(51, 23);
this.label5.TabIndex = 21;
this.label5.Text = "Flag hex:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// exit_but
//
this.exit_but.Location = new System.Drawing.Point(178, 184);
this.exit_but.Name = "exit_but";
this.exit_but.Size = new System.Drawing.Size(97, 27);
this.exit_but.TabIndex = 8;
this.exit_but.Text = "Exit";
this.exit_but.UseVisualStyleBackColor = true;
this.exit_but.Click += new System.EventHandler(this.Exit_butClick);
//
// saveexit_but
//
this.saveexit_but.Location = new System.Drawing.Point(178, 217);
this.saveexit_but.Name = "saveexit_but";
this.saveexit_but.Size = new System.Drawing.Size(99, 29);
this.saveexit_but.TabIndex = 9;
this.saveexit_but.Text = "Save and Exit";
this.saveexit_but.UseVisualStyleBackColor = true;
this.saveexit_but.Click += new System.EventHandler(this.Saveexit_butClick);
//
// medalState
//
this.medalState.FormattingEnabled = true;
this.medalState.Items.AddRange(new object[] {
"Unobtained",
"Can Recieve Hint Medal",
"Can Receive Hint Medal",
"Hint Medal Obtained",
"Can Recieve Medal",
"Can Receive Medal",
"Medal Obtained"});
this.medalState.Location = new System.Drawing.Point(12, 39);
this.medalState.Name = "medalState";
this.medalState.Size = new System.Drawing.Size(263, 21);
this.medalState.TabIndex = 22;
this.medalState.SelectedIndexChanged += new System.EventHandler(this.medalState_SelectedIndexChanged);
//
// Medals
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 258);
this.Controls.Add(this.medalState);
this.Controls.Add(this.flag_hex);
this.Controls.Add(this.date_hex);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.delete_but);
this.Controls.Add(this.red_panel);
this.Controls.Add(this.obtained);
this.Controls.Add(this.medal_date);
this.Controls.Add(this.flag4box);
this.Controls.Add(this.saveexit_but);
this.Controls.Add(this.exit_but);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.indexbox);
this.Controls.Add(this.year);
this.Controls.Add(this.month);
this.Controls.Add(this.day);
this.Name = "Medals";
this.Text = "Medals";
((System.ComponentModel.ISupportInitialize)(this.day)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.month)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.year)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
this.medalState.Location = new System.Drawing.Point(12, 39);
this.medalState.Name = "medalState";
this.medalState.Size = new System.Drawing.Size(263, 21);
this.medalState.TabIndex = 22;
this.medalState.SelectedIndexChanged += new System.EventHandler(this.medalState_SelectedIndexChanged);
//
// Medals
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 258);
this.Controls.Add(this.medalState);
this.Controls.Add(this.flag_hex);
this.Controls.Add(this.date_hex);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.delete_but);
this.Controls.Add(this.red_panel);
this.Controls.Add(this.obtained);
this.Controls.Add(this.medal_date);
this.Controls.Add(this.flag4box);
this.Controls.Add(this.saveexit_but);
this.Controls.Add(this.exit_but);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.indexbox);
this.Controls.Add(this.year);
this.Controls.Add(this.month);
this.Controls.Add(this.day);
this.Name = "Medals";
this.Text = "Medals";
((System.ComponentModel.ISupportInitialize)(this.day)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.month)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.year)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
}