UpgradeSelectionDlg changes : ver. 3.3 -> ver. 3.6

This commit is contained in:
Milan Hanajik
2023-03-30 09:09:16 +02:00
parent b880b62924
commit b9e8eeab00
3 changed files with 242 additions and 1196 deletions
+16 -16
View File
@@ -21,7 +21,7 @@ namespace TBF.UI.Settings
const string CredFileName = "tempfile";
// Reference to bench DB settins (not a local copy)
Common.DatabaseSettings bench;
DatabaseSettings bench;
string currentConfigDBConnStr; /// Initialized in constructor by the parent
string currentResultsDBConnStr; /// Initialized in constructor by the parent
@@ -177,9 +177,9 @@ namespace TBF.UI.Settings
try
{
string connectionString = bench.ProceduresDBSettings.ConnectionString;
string databaseName = Common.DatabaseSettings.GetDBName(connectionString);
string userName = Common.DatabaseSettings.GetDBUser(connectionString);
string password = Common.DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
string databaseName = DatabaseSettings.GetDBName(connectionString);
string userName = DatabaseSettings.GetDBUser(connectionString);
string password = DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
if (connectionString == currentConfigDBConnStr || connectionString == currentResultsDBConnStr || connectionString == currentEventsDBConnStr)
{
@@ -224,9 +224,9 @@ namespace TBF.UI.Settings
try
{
string connectionString = bench.WaterMetersDBSettings.ConnectionString;
string databaseName = Common.DatabaseSettings.GetDBName(connectionString);
string userName = Common.DatabaseSettings.GetDBUser(connectionString);
string password = Common.DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
string databaseName = DatabaseSettings.GetDBName(connectionString);
string userName = DatabaseSettings.GetDBUser(connectionString);
string password = DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
if (connectionString == currentConfigDBConnStr || connectionString == currentResultsDBConnStr || connectionString == currentEventsDBConnStr)
{
@@ -273,9 +273,9 @@ namespace TBF.UI.Settings
try
{
string connectionString = bench.EventsDBSettings.ConnectionString;
string databaseName = Common.DatabaseSettings.GetDBName(connectionString);
string userName = Common.DatabaseSettings.GetDBUser(connectionString);
string password = Common.DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
string databaseName = DatabaseSettings.GetDBName(connectionString);
string userName = DatabaseSettings.GetDBUser(connectionString);
string password = DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
if (connectionString == currentConfigDBConnStr || connectionString == currentResultsDBConnStr || connectionString == currentEventsDBConnStr)
{
@@ -320,7 +320,7 @@ namespace TBF.UI.Settings
string connectionString = bench.ProceduresDBSettings.ConnectionString;
string server = Common.DatabaseSettings.GetDBServer(connectionString);
string server = DatabaseSettings.GetDBServer(connectionString);
if ((server != "localhost") && (server != "127.0.0.1"))
{
MessageBox.Show(Strings.Remote_database_cannot_be_imported, string.Empty, MessageBoxButtons.OK, MessageBoxIcon.Information);
@@ -353,7 +353,7 @@ namespace TBF.UI.Settings
string connectionString = bench.WaterMetersDBSettings.ConnectionString;
string server = Common.DatabaseSettings.GetDBServer(connectionString);
string server = DatabaseSettings.GetDBServer(connectionString);
if ((server != "localhost") && (server != "127.0.0.1"))
{
MessageBox.Show(Strings.Remote_database_cannot_be_imported, string.Empty, MessageBoxButtons.OK, MessageBoxIcon.Information);
@@ -383,7 +383,7 @@ namespace TBF.UI.Settings
string connectionString = bench.EventsDBSettings.ConnectionString;
string server = Common.DatabaseSettings.GetDBServer(connectionString);
string server = DatabaseSettings.GetDBServer(connectionString);
if ((server != "localhost") && (server != "127.0.0.1"))
{
MessageBox.Show(Strings.Remote_database_cannot_be_imported, string.Empty, MessageBoxButtons.OK, MessageBoxIcon.Information);
@@ -445,9 +445,9 @@ namespace TBF.UI.Settings
/// <param name="outputFileName">Output file name</param>
void ImportDatabase(string connectionString, string inputFileName)
{
string databaseName = Common.DatabaseSettings.GetDBName(connectionString);
string userName = Common.DatabaseSettings.GetDBUser(connectionString);
string password = Common.DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
string databaseName = DatabaseSettings.GetDBName(connectionString);
string userName = DatabaseSettings.GetDBUser(connectionString);
string password = DatabaseSettings.GetDBPassword(connectionString); /// TODO: Use password
try
{
+66 -233
View File
@@ -28,79 +28,16 @@
/// </summary>
private void InitializeComponent()
{
this.upgradeDb_215_216_Button = new System.Windows.Forms.Button();
this.upgradeDb_216_217_Button = new System.Windows.Forms.Button();
this.upgradeDb_212_215_Button = new System.Windows.Forms.Button();
this.upgradeDb_217_218_Button = new System.Windows.Forms.Button();
this.upgradeDb_29_212_Button = new System.Windows.Forms.Button();
this.upgradeConfigDBCheckBox = new System.Windows.Forms.CheckBox();
this.upgradeResultsDBCheckBox = new System.Windows.Forms.CheckBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.pressureRepresentationButton = new System.Windows.Forms.Button();
this.upgradeDb_24_29_Button = new System.Windows.Forms.Button();
this.upgradeDb_218_222_Button = new System.Windows.Forms.Button();
this.upgradeDb_NFC_button = new System.Windows.Forms.Button();
this.upgradeDb_222_224_Button = new System.Windows.Forms.Button();
this.upgradeDb_224_225_Button = new System.Windows.Forms.Button();
this.errorFlagsComponentsTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.upgradeDb_225_226_Button = new System.Windows.Forms.Button();
this.upgradePipesButton = new System.Windows.Forms.Button();
this.upgradeDb_301_302_Button = new System.Windows.Forms.Button();
this.upgradeDb_302_303_Button = new System.Windows.Forms.Button();
this.upgradeDb_303_304_Button = new System.Windows.Forms.Button();
this.upgradeDb_304_305_Button = new System.Windows.Forms.Button();
this.upgradeDb_305_306_Button = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// upgradeDb_215_216_Button
//
this.upgradeDb_215_216_Button.Location = new System.Drawing.Point(12, 217);
this.upgradeDb_215_216_Button.Name = "upgradeDb_215_216_Button";
this.upgradeDb_215_216_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_215_216_Button.TabIndex = 6;
this.upgradeDb_215_216_Button.Text = "Upgrade DB from v.2.15 to v.2.16";
this.upgradeDb_215_216_Button.UseVisualStyleBackColor = true;
this.upgradeDb_215_216_Button.Click += new System.EventHandler(this.upgradeDb_215_216_Button_Click);
//
// upgradeDb_216_217_Button
//
this.upgradeDb_216_217_Button.Location = new System.Drawing.Point(12, 257);
this.upgradeDb_216_217_Button.Name = "upgradeDb_216_217_Button";
this.upgradeDb_216_217_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_216_217_Button.TabIndex = 7;
this.upgradeDb_216_217_Button.Text = "Upgrade DB from v.2.16 to v.2.17";
this.upgradeDb_216_217_Button.UseVisualStyleBackColor = true;
this.upgradeDb_216_217_Button.Click += new System.EventHandler(this.upgradeDb_216_217_Button_Click);
//
// upgradeDb_212_215_Button
//
this.upgradeDb_212_215_Button.Location = new System.Drawing.Point(12, 177);
this.upgradeDb_212_215_Button.Name = "upgradeDb_212_215_Button";
this.upgradeDb_212_215_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_212_215_Button.TabIndex = 5;
this.upgradeDb_212_215_Button.Text = "Upgrade DB from v.2.12 to v.2.15";
this.upgradeDb_212_215_Button.UseVisualStyleBackColor = true;
this.upgradeDb_212_215_Button.Click += new System.EventHandler(this.upgradeDb_212_215_Button_Click);
//
// upgradeDb_217_218_Button
//
this.upgradeDb_217_218_Button.Location = new System.Drawing.Point(12, 297);
this.upgradeDb_217_218_Button.Name = "upgradeDb_217_218_Button";
this.upgradeDb_217_218_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_217_218_Button.TabIndex = 8;
this.upgradeDb_217_218_Button.Text = "Upgrade DB from v.2.17 to v.2.18";
this.upgradeDb_217_218_Button.UseVisualStyleBackColor = true;
this.upgradeDb_217_218_Button.Click += new System.EventHandler(this.upgradeDb_217_218_Button_Click);
//
// upgradeDb_29_212_Button
//
this.upgradeDb_29_212_Button.Location = new System.Drawing.Point(12, 137);
this.upgradeDb_29_212_Button.Name = "upgradeDb_29_212_Button";
this.upgradeDb_29_212_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_29_212_Button.TabIndex = 4;
this.upgradeDb_29_212_Button.Text = "Upgrade DB from v.2.9 to v.2.12";
this.upgradeDb_29_212_Button.UseVisualStyleBackColor = true;
this.upgradeDb_29_212_Button.Click += new System.EventHandler(this.upgradeDb_29_212_Button_Click);
//
// upgradeConfigDBCheckBox
//
this.upgradeConfigDBCheckBox.AutoSize = true;
@@ -121,138 +58,10 @@
this.upgradeResultsDBCheckBox.Text = "Upgrade Results database";
this.upgradeResultsDBCheckBox.UseVisualStyleBackColor = true;
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.textBox1.Enabled = false;
this.textBox1.Location = new System.Drawing.Point(94, 535);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 11;
//
// textBox2
//
this.textBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.textBox2.Enabled = false;
this.textBox2.Location = new System.Drawing.Point(94, 561);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(100, 20);
this.textBox2.TabIndex = 13;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Enabled = false;
this.label1.Location = new System.Drawing.Point(12, 538);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(70, 13);
this.label1.TabIndex = 10;
this.label1.Text = "From batch #";
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label2.AutoSize = true;
this.label2.Enabled = false;
this.label2.Location = new System.Drawing.Point(12, 564);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(60, 13);
this.label2.TabIndex = 12;
this.label2.Text = "To batch #";
//
// pressureRepresentationButton
//
this.pressureRepresentationButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.pressureRepresentationButton.Enabled = false;
this.pressureRepresentationButton.Location = new System.Drawing.Point(207, 535);
this.pressureRepresentationButton.Name = "pressureRepresentationButton";
this.pressureRepresentationButton.Size = new System.Drawing.Size(65, 42);
this.pressureRepresentationButton.TabIndex = 14;
this.pressureRepresentationButton.Text = "Upgrade pressure";
this.pressureRepresentationButton.UseVisualStyleBackColor = true;
this.pressureRepresentationButton.Click += new System.EventHandler(this.pressureRepresentationButton_Click);
//
// upgradeDb_24_29_Button
//
this.upgradeDb_24_29_Button.Location = new System.Drawing.Point(12, 97);
this.upgradeDb_24_29_Button.Name = "upgradeDb_24_29_Button";
this.upgradeDb_24_29_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_24_29_Button.TabIndex = 3;
this.upgradeDb_24_29_Button.Text = "Upgrade DB from v.2.4 to v.2.9";
this.upgradeDb_24_29_Button.UseVisualStyleBackColor = true;
this.upgradeDb_24_29_Button.Click += new System.EventHandler(this.upgradeDb_24_29_Button_Click);
//
// upgradeDb_218_222_Button
//
this.upgradeDb_218_222_Button.Location = new System.Drawing.Point(12, 337);
this.upgradeDb_218_222_Button.Name = "upgradeDb_218_222_Button";
this.upgradeDb_218_222_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_218_222_Button.TabIndex = 9;
this.upgradeDb_218_222_Button.Text = "Upgrade DB from v.2.18 to v.2.22";
this.upgradeDb_218_222_Button.UseVisualStyleBackColor = true;
this.upgradeDb_218_222_Button.Click += new System.EventHandler(this.upgradeDb_218_222_Button_Click);
//
// upgradeDb_NFC_button
//
this.upgradeDb_NFC_button.Location = new System.Drawing.Point(12, 57);
this.upgradeDb_NFC_button.Name = "upgradeDb_NFC_button";
this.upgradeDb_NFC_button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_NFC_button.TabIndex = 2;
this.upgradeDb_NFC_button.Text = "Upgrade database for NFC tags";
this.upgradeDb_NFC_button.UseVisualStyleBackColor = true;
this.upgradeDb_NFC_button.Click += new System.EventHandler(this.upgradeDb_NFC_button_Click);
//
// upgradeDb_222_224_Button
//
this.upgradeDb_222_224_Button.Location = new System.Drawing.Point(12, 404);
this.upgradeDb_222_224_Button.Name = "upgradeDb_222_224_Button";
this.upgradeDb_222_224_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_222_224_Button.TabIndex = 15;
this.upgradeDb_222_224_Button.Text = "Upgrade DB from v.2.22 to v.2.24";
this.upgradeDb_222_224_Button.UseVisualStyleBackColor = true;
this.upgradeDb_222_224_Button.Click += new System.EventHandler(this.upgradeDb_222_224_Button_Click);
//
// upgradeDb_224_225_Button
//
this.upgradeDb_224_225_Button.Location = new System.Drawing.Point(12, 444);
this.upgradeDb_224_225_Button.Name = "upgradeDb_224_225_Button";
this.upgradeDb_224_225_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_224_225_Button.TabIndex = 16;
this.upgradeDb_224_225_Button.Text = "Upgrade DB from v.2.24 to v.2.25 (users)";
this.upgradeDb_224_225_Button.UseVisualStyleBackColor = true;
this.upgradeDb_224_225_Button.Click += new System.EventHandler(this.upgradeDb_224_225_Button_Click);
//
// errorFlagsComponentsTextBox
//
this.errorFlagsComponentsTextBox.Location = new System.Drawing.Point(94, 378);
this.errorFlagsComponentsTextBox.Name = "errorFlagsComponentsTextBox";
this.errorFlagsComponentsTextBox.Size = new System.Drawing.Size(178, 20);
this.errorFlagsComponentsTextBox.TabIndex = 17;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 381);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(71, 13);
this.label3.TabIndex = 18;
this.label3.Text = "ErrFlags1~E..";
//
// upgradeDb_225_226_Button
//
this.upgradeDb_225_226_Button.Location = new System.Drawing.Point(13, 484);
this.upgradeDb_225_226_Button.Name = "upgradeDb_225_226_Button";
this.upgradeDb_225_226_Button.Size = new System.Drawing.Size(260, 34);
this.upgradeDb_225_226_Button.TabIndex = 19;
this.upgradeDb_225_226_Button.Text = "Upgrade DB from v.2.25 to v.2.26 (calendar)";
this.upgradeDb_225_226_Button.UseVisualStyleBackColor = true;
this.upgradeDb_225_226_Button.Click += new System.EventHandler(this.upgradeDb_225_226_Button_Click);
//
// upgradePipesButton
//
this.upgradePipesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.upgradePipesButton.Location = new System.Drawing.Point(206, 9);
this.upgradePipesButton.Location = new System.Drawing.Point(207, 10);
this.upgradePipesButton.Name = "upgradePipesButton";
this.upgradePipesButton.Size = new System.Drawing.Size(65, 42);
this.upgradePipesButton.TabIndex = 20;
@@ -260,32 +69,69 @@
this.upgradePipesButton.UseVisualStyleBackColor = true;
this.upgradePipesButton.Click += new System.EventHandler(this.upgradePipesButton_Click);
//
// upgradeDb_301_302_Button
//
this.upgradeDb_301_302_Button.Location = new System.Drawing.Point(12, 63);
this.upgradeDb_301_302_Button.Name = "upgradeDb_301_302_Button";
this.upgradeDb_301_302_Button.Size = new System.Drawing.Size(260, 22);
this.upgradeDb_301_302_Button.TabIndex = 23;
this.upgradeDb_301_302_Button.Text = "Upgrade DB from v.3.1 to v.3.2";
this.upgradeDb_301_302_Button.UseVisualStyleBackColor = true;
this.upgradeDb_301_302_Button.Click += new System.EventHandler(this.upgradeDb_301_302_Button_Click);
//
// upgradeDb_302_303_Button
//
this.upgradeDb_302_303_Button.Location = new System.Drawing.Point(12, 88);
this.upgradeDb_302_303_Button.Name = "upgradeDb_302_303_Button";
this.upgradeDb_302_303_Button.Size = new System.Drawing.Size(260, 22);
this.upgradeDb_302_303_Button.TabIndex = 24;
this.upgradeDb_302_303_Button.Text = "Upgrade DB from v.3.2 to v.3.3";
this.upgradeDb_302_303_Button.UseVisualStyleBackColor = true;
this.upgradeDb_302_303_Button.Click += new System.EventHandler(this.upgradeDb_302_303_Button_Click);
//
// upgradeDb_303_304_Button
//
this.upgradeDb_303_304_Button.Location = new System.Drawing.Point(12, 114);
this.upgradeDb_303_304_Button.Name = "upgradeDb_303_304_Button";
this.upgradeDb_303_304_Button.Size = new System.Drawing.Size(260, 22);
this.upgradeDb_303_304_Button.TabIndex = 25;
this.upgradeDb_303_304_Button.Text = "Upgrade DB from v.3.3 to v.3.4";
this.upgradeDb_303_304_Button.UseVisualStyleBackColor = true;
this.upgradeDb_303_304_Button.Click += new System.EventHandler(this.upgradeDb_303_304_Button_Click);
//
// upgradeDb_304_305_Button
//
this.upgradeDb_304_305_Button.Location = new System.Drawing.Point(12, 139);
this.upgradeDb_304_305_Button.Name = "upgradeDb_304_305_Button";
this.upgradeDb_304_305_Button.Size = new System.Drawing.Size(260, 22);
this.upgradeDb_304_305_Button.TabIndex = 26;
this.upgradeDb_304_305_Button.Text = "Upgrade DB from v.3.4 to v.3.5";
this.upgradeDb_304_305_Button.UseVisualStyleBackColor = true;
this.upgradeDb_304_305_Button.Click += new System.EventHandler(this.upgradeDb_304_305_Button_Click);
//
// upgradeDb_305_306_Button
//
this.upgradeDb_305_306_Button.Location = new System.Drawing.Point(12, 164);
this.upgradeDb_305_306_Button.Name = "upgradeDb_305_306_Button";
this.upgradeDb_305_306_Button.Size = new System.Drawing.Size(260, 22);
this.upgradeDb_305_306_Button.TabIndex = 27;
this.upgradeDb_305_306_Button.Text = "Upgrade DB from v.3.5 to v.3.6";
this.upgradeDb_305_306_Button.UseVisualStyleBackColor = true;
this.upgradeDb_305_306_Button.Click += new System.EventHandler(this.upgradeDb_305_306_Button_Click);
//
// UpgradeSelectionDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 597);
this.Controls.Add(this.upgradePipesButton);
this.Controls.Add(this.upgradeDb_225_226_Button);
this.Controls.Add(this.label3);
this.Controls.Add(this.errorFlagsComponentsTextBox);
this.Controls.Add(this.upgradeDb_224_225_Button);
this.Controls.Add(this.upgradeDb_222_224_Button);
this.Controls.Add(this.upgradeDb_NFC_button);
this.Controls.Add(this.upgradeDb_218_222_Button);
this.Controls.Add(this.upgradeDb_24_29_Button);
this.Controls.Add(this.pressureRepresentationButton);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.upgradeDb_305_306_Button);
this.Controls.Add(this.upgradeDb_304_305_Button);
this.Controls.Add(this.upgradeDb_303_304_Button);
this.Controls.Add(this.upgradeDb_302_303_Button);
this.Controls.Add(this.upgradeDb_301_302_Button);
this.Controls.Add(this.upgradeResultsDBCheckBox);
this.Controls.Add(this.upgradeConfigDBCheckBox);
this.Controls.Add(this.upgradeDb_29_212_Button);
this.Controls.Add(this.upgradeDb_217_218_Button);
this.Controls.Add(this.upgradeDb_212_215_Button);
this.Controls.Add(this.upgradeDb_216_217_Button);
this.Controls.Add(this.upgradeDb_215_216_Button);
this.Name = "UpgradeSelectionDlg";
this.Text = "Upgrade selection";
this.ResumeLayout(false);
@@ -295,27 +141,14 @@
#endregion
private System.Windows.Forms.Button upgradeDb_215_216_Button;
private System.Windows.Forms.Button upgradeDb_216_217_Button;
private System.Windows.Forms.Button upgradeDb_212_215_Button;
private System.Windows.Forms.Button upgradeDb_217_218_Button;
private System.Windows.Forms.Button upgradeDb_29_212_Button;
private System.Windows.Forms.CheckBox upgradeConfigDBCheckBox;
private System.Windows.Forms.CheckBox upgradeResultsDBCheckBox;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button pressureRepresentationButton;
private System.Windows.Forms.Button upgradeDb_24_29_Button;
private System.Windows.Forms.Button upgradeDb_218_222_Button;
private System.Windows.Forms.Button upgradeDb_NFC_button;
private System.Windows.Forms.Button upgradeDb_222_224_Button;
private System.Windows.Forms.Button upgradeDb_224_225_Button;
private System.Windows.Forms.TextBox errorFlagsComponentsTextBox;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button upgradeDb_225_226_Button;
private System.Windows.Forms.Button upgradePipesButton;
private System.Windows.Forms.Button upgradeDb_301_302_Button;
private System.Windows.Forms.Button upgradeDb_302_303_Button;
private System.Windows.Forms.Button upgradeDb_303_304_Button;
private System.Windows.Forms.Button upgradeDb_304_305_Button;
private System.Windows.Forms.Button upgradeDb_305_306_Button;
}
}
File diff suppressed because it is too large Load Diff