Nackup / Restore of total DB is working

This commit is contained in:
2021-03-19 00:02:59 +01:00
parent 154f8cc07a
commit f8c04d93e2
7 changed files with 86 additions and 22 deletions

View File

@ -32,7 +32,6 @@ namespace StockInfo
this.dataGridView = new System.Windows.Forms.DataGridView();
this.lblTotalRecords = new System.Windows.Forms.Label();
this.gB1 = new System.Windows.Forms.GroupBox();
this.btnRestoreAll = new System.Windows.Forms.Button();
this.btnBackupAll = new System.Windows.Forms.Button();
this.chkEnableBackRes = new System.Windows.Forms.CheckBox();
this.btnRestoreShares = new System.Windows.Forms.Button();
@ -83,7 +82,6 @@ namespace StockInfo
// gB1
//
this.gB1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.gB1.Controls.Add(this.btnRestoreAll);
this.gB1.Controls.Add(this.btnBackupAll);
this.gB1.Controls.Add(this.chkEnableBackRes);
this.gB1.Controls.Add(this.btnRestoreShares);
@ -96,22 +94,13 @@ namespace StockInfo
this.gB1.TabStop = false;
this.gB1.Text = "Sharelist";
//
// btnRestoreAll
//
this.btnRestoreAll.Location = new System.Drawing.Point(130, 111);
this.btnRestoreAll.Name = "btnRestoreAll";
this.btnRestoreAll.Size = new System.Drawing.Size(105, 23);
this.btnRestoreAll.TabIndex = 7;
this.btnRestoreAll.Text = "Restore All";
this.btnRestoreAll.UseVisualStyleBackColor = true;
//
// btnBackupAll
//
this.btnBackupAll.Location = new System.Drawing.Point(130, 82);
this.btnBackupAll.Name = "btnBackupAll";
this.btnBackupAll.Size = new System.Drawing.Size(105, 23);
this.btnBackupAll.TabIndex = 6;
this.btnBackupAll.Text = "Backup All";
this.btnBackupAll.Text = "Backup / Restore";
this.btnBackupAll.UseVisualStyleBackColor = true;
this.btnBackupAll.Click += new System.EventHandler(this.btnBackupAll_Click);
//
@ -347,7 +336,6 @@ namespace StockInfo
private System.Windows.Forms.Button btnConnShares;
private System.Windows.Forms.Button btnEditPerson;
private System.Windows.Forms.ComboBox cmbOwners;
private System.Windows.Forms.Button btnRestoreAll;
private System.Windows.Forms.Button btnBackupAll;
}
}