Add project files.
This commit is contained in:
142
StockInfoCore/frmBackup.Designer.cs
generated
Normal file
142
StockInfoCore/frmBackup.Designer.cs
generated
Normal file
@ -0,0 +1,142 @@
|
||||
|
||||
namespace StockInfoCore
|
||||
{
|
||||
partial class frmBackup
|
||||
{
|
||||
/// <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.label1 = new System.Windows.Forms.Label();
|
||||
this.sfdChoosePlaceAndFile = new System.Windows.Forms.SaveFileDialog();
|
||||
this.btnChooseBackupDest = new System.Windows.Forms.Button();
|
||||
this.txtBackupPath = new System.Windows.Forms.TextBox();
|
||||
this.txtBackupFile = new System.Windows.Forms.TextBox();
|
||||
this.lstBackups = new System.Windows.Forms.ListBox();
|
||||
this.btnClose = new System.Windows.Forms.Button();
|
||||
this.btnRestore = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(13, 13);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(226, 15);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "Backup Local database to where you wish";
|
||||
//
|
||||
// sfdChoosePlaceAndFile
|
||||
//
|
||||
this.sfdChoosePlaceAndFile.Title = "Choose path and filename";
|
||||
//
|
||||
// btnChooseBackupDest
|
||||
//
|
||||
this.btnChooseBackupDest.Location = new System.Drawing.Point(13, 31);
|
||||
this.btnChooseBackupDest.Name = "btnChooseBackupDest";
|
||||
this.btnChooseBackupDest.Size = new System.Drawing.Size(152, 23);
|
||||
this.btnChooseBackupDest.TabIndex = 1;
|
||||
this.btnChooseBackupDest.Text = "Choose BU destination";
|
||||
this.btnChooseBackupDest.UseVisualStyleBackColor = true;
|
||||
this.btnChooseBackupDest.Click += new System.EventHandler(this.btnChooseBackupDest_Click);
|
||||
//
|
||||
// txtBackupPath
|
||||
//
|
||||
this.txtBackupPath.Location = new System.Drawing.Point(171, 32);
|
||||
this.txtBackupPath.Name = "txtBackupPath";
|
||||
this.txtBackupPath.ReadOnly = true;
|
||||
this.txtBackupPath.Size = new System.Drawing.Size(148, 23);
|
||||
this.txtBackupPath.TabIndex = 2;
|
||||
//
|
||||
// txtBackupFile
|
||||
//
|
||||
this.txtBackupFile.Location = new System.Drawing.Point(325, 31);
|
||||
this.txtBackupFile.Name = "txtBackupFile";
|
||||
this.txtBackupFile.ReadOnly = true;
|
||||
this.txtBackupFile.Size = new System.Drawing.Size(100, 23);
|
||||
this.txtBackupFile.TabIndex = 3;
|
||||
//
|
||||
// lstBackups
|
||||
//
|
||||
this.lstBackups.FormattingEnabled = true;
|
||||
this.lstBackups.ItemHeight = 15;
|
||||
this.lstBackups.Location = new System.Drawing.Point(13, 70);
|
||||
this.lstBackups.Name = "lstBackups";
|
||||
this.lstBackups.Size = new System.Drawing.Size(306, 184);
|
||||
this.lstBackups.TabIndex = 4;
|
||||
//
|
||||
// btnClose
|
||||
//
|
||||
this.btnClose.Location = new System.Drawing.Point(350, 259);
|
||||
this.btnClose.Name = "btnClose";
|
||||
this.btnClose.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnClose.TabIndex = 5;
|
||||
this.btnClose.Text = "Close";
|
||||
this.btnClose.UseVisualStyleBackColor = true;
|
||||
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
||||
//
|
||||
// btnRestore
|
||||
//
|
||||
this.btnRestore.Location = new System.Drawing.Point(350, 70);
|
||||
this.btnRestore.Name = "btnRestore";
|
||||
this.btnRestore.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnRestore.TabIndex = 6;
|
||||
this.btnRestore.Text = "Restore";
|
||||
this.btnRestore.UseVisualStyleBackColor = true;
|
||||
this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
|
||||
//
|
||||
// frmBackup
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(438, 294);
|
||||
this.Controls.Add(this.btnRestore);
|
||||
this.Controls.Add(this.btnClose);
|
||||
this.Controls.Add(this.lstBackups);
|
||||
this.Controls.Add(this.txtBackupFile);
|
||||
this.Controls.Add(this.txtBackupPath);
|
||||
this.Controls.Add(this.btnChooseBackupDest);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Name = "frmBackup";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "frmBackup";
|
||||
this.Shown += new System.EventHandler(this.frmBackup_Shown);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.SaveFileDialog sfdChoosePlaceAndFile;
|
||||
private System.Windows.Forms.Button btnChooseBackupDest;
|
||||
private System.Windows.Forms.TextBox txtBackupPath;
|
||||
private System.Windows.Forms.TextBox txtBackupFile;
|
||||
private System.Windows.Forms.ListBox lstBackups;
|
||||
private System.Windows.Forms.Button btnClose;
|
||||
private System.Windows.Forms.Button btnRestore;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user