diff --git a/myFlightInfo/Form1.Designer.cs b/myFlightInfo/Form1.Designer.cs index 485f2bb..42fab4b 100644 --- a/myFlightInfo/Form1.Designer.cs +++ b/myFlightInfo/Form1.Designer.cs @@ -2959,7 +2959,7 @@ private void InitializeComponent() this.txtbx_cog_pilot_weight.Location = new System.Drawing.Point(0, 0); this.txtbx_cog_pilot_weight.Name = "txtbx_cog_pilot_weight"; this.txtbx_cog_pilot_weight.Size = new System.Drawing.Size(151, 26); - this.txtbx_cog_pilot_weight.TabIndex = 19; + this.txtbx_cog_pilot_weight.TabIndex = 0; this.txtbx_cog_pilot_weight.Text = "0"; this.txtbx_cog_pilot_weight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // diff --git a/myFlightInfo/TabChanges.cs b/myFlightInfo/TabChanges.cs index 7a5272c..fff5001 100644 --- a/myFlightInfo/TabChanges.cs +++ b/myFlightInfo/TabChanges.cs @@ -214,6 +214,10 @@ private void tabcnt_utils_SelectedIndexChanged(object sender, EventArgs e) { txtbx_magnitude.Select(); // Put cursor into Wind Magnitude Textbox" } + else if (tabcnt_utils.SelectedTab == tab_weight_balance) + { + txtbx_cog_pilot_weight.Select(); // Put cursor into pilots weight Textbox" + } } } }