329 lines
17 KiB
C#
329 lines
17 KiB
C#
|
|
namespace StockInfo
|
|
{
|
|
partial class frmInitial
|
|
{
|
|
/// <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.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.lblTotalRecords = new System.Windows.Forms.Label();
|
|
this.gB1 = new System.Windows.Forms.GroupBox();
|
|
this.chkEnableBackRes = new System.Windows.Forms.CheckBox();
|
|
this.btnRestoreShares = new System.Windows.Forms.Button();
|
|
this.btnBackupShares = new System.Windows.Forms.Button();
|
|
this.btnReload = new System.Windows.Forms.Button();
|
|
this.btnTestScrapFunction = new System.Windows.Forms.Button();
|
|
this.btnReloadShares = new System.Windows.Forms.Button();
|
|
this.chbShowBrowser = new System.Windows.Forms.CheckBox();
|
|
this.gbStockMgmnt = new System.Windows.Forms.GroupBox();
|
|
this.btnStockSale = new System.Windows.Forms.Button();
|
|
this.btnValueView = new System.Windows.Forms.Button();
|
|
this.btnStockReg = new System.Windows.Forms.Button();
|
|
this.sfdSaver = new System.Windows.Forms.SaveFileDialog();
|
|
this.ofdOpener = new System.Windows.Forms.OpenFileDialog();
|
|
this.lblStockRows = new System.Windows.Forms.Label();
|
|
this.gpOwners = new System.Windows.Forms.GroupBox();
|
|
this.btnConnShares = new System.Windows.Forms.Button();
|
|
this.btnEditPerson = new System.Windows.Forms.Button();
|
|
this.cmbOwners = new System.Windows.Forms.ComboBox();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.gB1.SuspendLayout();
|
|
this.gbStockMgmnt.SuspendLayout();
|
|
this.gpOwners.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 16);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
this.dataGridView.Size = new System.Drawing.Size(829, 360);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// lblTotalRecords
|
|
//
|
|
this.lblTotalRecords.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.lblTotalRecords.AutoSize = true;
|
|
this.lblTotalRecords.Location = new System.Drawing.Point(12, 385);
|
|
this.lblTotalRecords.Name = "lblTotalRecords";
|
|
this.lblTotalRecords.Size = new System.Drawing.Size(98, 15);
|
|
this.lblTotalRecords.TabIndex = 2;
|
|
this.lblTotalRecords.Text = "Total Records: ???";
|
|
//
|
|
// gB1
|
|
//
|
|
this.gB1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.gB1.Controls.Add(this.chkEnableBackRes);
|
|
this.gB1.Controls.Add(this.btnRestoreShares);
|
|
this.gB1.Controls.Add(this.btnBackupShares);
|
|
this.gB1.Controls.Add(this.btnReload);
|
|
this.gB1.Location = new System.Drawing.Point(157, 385);
|
|
this.gB1.Name = "gB1";
|
|
this.gB1.Size = new System.Drawing.Size(203, 144);
|
|
this.gB1.TabIndex = 3;
|
|
this.gB1.TabStop = false;
|
|
this.gB1.Text = "Sharelist";
|
|
//
|
|
// chkEnableBackRes
|
|
//
|
|
this.chkEnableBackRes.AutoSize = true;
|
|
this.chkEnableBackRes.Location = new System.Drawing.Point(6, 61);
|
|
this.chkEnableBackRes.Name = "chkEnableBackRes";
|
|
this.chkEnableBackRes.Size = new System.Drawing.Size(144, 19);
|
|
this.chkEnableBackRes.TabIndex = 5;
|
|
this.chkEnableBackRes.Text = "Enable backup/restore";
|
|
this.chkEnableBackRes.UseVisualStyleBackColor = true;
|
|
this.chkEnableBackRes.CheckedChanged += new System.EventHandler(this.chkEnableBackRes_CheckedChanged);
|
|
//
|
|
// btnRestoreShares
|
|
//
|
|
this.btnRestoreShares.Location = new System.Drawing.Point(6, 111);
|
|
this.btnRestoreShares.Name = "btnRestoreShares";
|
|
this.btnRestoreShares.Size = new System.Drawing.Size(118, 23);
|
|
this.btnRestoreShares.TabIndex = 4;
|
|
this.btnRestoreShares.Text = "Restore Share data";
|
|
this.btnRestoreShares.UseVisualStyleBackColor = true;
|
|
this.btnRestoreShares.Click += new System.EventHandler(this.btnRestoreShares_Click);
|
|
//
|
|
// btnBackupShares
|
|
//
|
|
this.btnBackupShares.Location = new System.Drawing.Point(6, 82);
|
|
this.btnBackupShares.Name = "btnBackupShares";
|
|
this.btnBackupShares.Size = new System.Drawing.Size(118, 23);
|
|
this.btnBackupShares.TabIndex = 3;
|
|
this.btnBackupShares.Text = "Backup Share data";
|
|
this.btnBackupShares.UseVisualStyleBackColor = true;
|
|
this.btnBackupShares.Click += new System.EventHandler(this.btnBackupShares_Click);
|
|
//
|
|
// btnReload
|
|
//
|
|
this.btnReload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnReload.Location = new System.Drawing.Point(6, 32);
|
|
this.btnReload.Name = "btnReload";
|
|
this.btnReload.Size = new System.Drawing.Size(112, 23);
|
|
this.btnReload.TabIndex = 2;
|
|
this.btnReload.Text = "Reload Share list";
|
|
this.btnReload.UseVisualStyleBackColor = true;
|
|
this.btnReload.Click += new System.EventHandler(this.btnReload_Click);
|
|
//
|
|
// btnTestScrapFunction
|
|
//
|
|
this.btnTestScrapFunction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnTestScrapFunction.Location = new System.Drawing.Point(12, 467);
|
|
this.btnTestScrapFunction.Name = "btnTestScrapFunction";
|
|
this.btnTestScrapFunction.Size = new System.Drawing.Size(75, 23);
|
|
this.btnTestScrapFunction.TabIndex = 4;
|
|
this.btnTestScrapFunction.Text = "LoadScrap";
|
|
this.btnTestScrapFunction.UseVisualStyleBackColor = true;
|
|
this.btnTestScrapFunction.Click += new System.EventHandler(this.btnTestScrapFunction_Click);
|
|
//
|
|
// btnReloadShares
|
|
//
|
|
this.btnReloadShares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnReloadShares.Location = new System.Drawing.Point(12, 417);
|
|
this.btnReloadShares.Name = "btnReloadShares";
|
|
this.btnReloadShares.Size = new System.Drawing.Size(75, 23);
|
|
this.btnReloadShares.TabIndex = 6;
|
|
this.btnReloadShares.Text = "ReLoad";
|
|
this.btnReloadShares.UseVisualStyleBackColor = true;
|
|
this.btnReloadShares.Click += new System.EventHandler(this.btnReloadShares_Click);
|
|
//
|
|
// chbShowBrowser
|
|
//
|
|
this.chbShowBrowser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.chbShowBrowser.AutoSize = true;
|
|
this.chbShowBrowser.Location = new System.Drawing.Point(12, 497);
|
|
this.chbShowBrowser.Name = "chbShowBrowser";
|
|
this.chbShowBrowser.Size = new System.Drawing.Size(100, 22);
|
|
this.chbShowBrowser.TabIndex = 7;
|
|
this.chbShowBrowser.Text = "Show Browser";
|
|
this.chbShowBrowser.UseCompatibleTextRendering = true;
|
|
this.chbShowBrowser.UseVisualStyleBackColor = true;
|
|
//
|
|
// gbStockMgmnt
|
|
//
|
|
this.gbStockMgmnt.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.gbStockMgmnt.Controls.Add(this.btnStockSale);
|
|
this.gbStockMgmnt.Controls.Add(this.btnValueView);
|
|
this.gbStockMgmnt.Controls.Add(this.btnStockReg);
|
|
this.gbStockMgmnt.Location = new System.Drawing.Point(366, 385);
|
|
this.gbStockMgmnt.Name = "gbStockMgmnt";
|
|
this.gbStockMgmnt.Size = new System.Drawing.Size(216, 144);
|
|
this.gbStockMgmnt.TabIndex = 8;
|
|
this.gbStockMgmnt.TabStop = false;
|
|
this.gbStockMgmnt.Text = "Working";
|
|
//
|
|
// btnStockSale
|
|
//
|
|
this.btnStockSale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnStockSale.Location = new System.Drawing.Point(108, 82);
|
|
this.btnStockSale.Name = "btnStockSale";
|
|
this.btnStockSale.Size = new System.Drawing.Size(96, 23);
|
|
this.btnStockSale.TabIndex = 2;
|
|
this.btnStockSale.Text = "Stock Sell";
|
|
this.btnStockSale.UseVisualStyleBackColor = true;
|
|
this.btnStockSale.Click += new System.EventHandler(this.btnStockSale_Click);
|
|
//
|
|
// btnValueView
|
|
//
|
|
this.btnValueView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnValueView.Location = new System.Drawing.Point(6, 32);
|
|
this.btnValueView.Name = "btnValueView";
|
|
this.btnValueView.Size = new System.Drawing.Size(95, 23);
|
|
this.btnValueView.TabIndex = 1;
|
|
this.btnValueView.Text = "See values";
|
|
this.btnValueView.UseVisualStyleBackColor = true;
|
|
this.btnValueView.Click += new System.EventHandler(this.btnValueView_Click);
|
|
//
|
|
// btnStockReg
|
|
//
|
|
this.btnStockReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnStockReg.Location = new System.Drawing.Point(6, 82);
|
|
this.btnStockReg.Name = "btnStockReg";
|
|
this.btnStockReg.Size = new System.Drawing.Size(96, 23);
|
|
this.btnStockReg.TabIndex = 0;
|
|
this.btnStockReg.Text = "Stock Purchase";
|
|
this.btnStockReg.UseVisualStyleBackColor = true;
|
|
this.btnStockReg.Click += new System.EventHandler(this.btnStockReg_Click);
|
|
//
|
|
// ofdOpener
|
|
//
|
|
this.ofdOpener.FileName = "openFileDialog1";
|
|
//
|
|
// lblStockRows
|
|
//
|
|
this.lblStockRows.AutoSize = true;
|
|
this.lblStockRows.Location = new System.Drawing.Point(13, 446);
|
|
this.lblStockRows.Name = "lblStockRows";
|
|
this.lblStockRows.Size = new System.Drawing.Size(0, 15);
|
|
this.lblStockRows.TabIndex = 9;
|
|
//
|
|
// gpOwners
|
|
//
|
|
this.gpOwners.Controls.Add(this.btnConnShares);
|
|
this.gpOwners.Controls.Add(this.btnEditPerson);
|
|
this.gpOwners.Controls.Add(this.cmbOwners);
|
|
this.gpOwners.Location = new System.Drawing.Point(589, 385);
|
|
this.gpOwners.Name = "gpOwners";
|
|
this.gpOwners.Size = new System.Drawing.Size(252, 141);
|
|
this.gpOwners.TabIndex = 10;
|
|
this.gpOwners.TabStop = false;
|
|
this.gpOwners.Text = "ShareOwners";
|
|
//
|
|
// btnConnShares
|
|
//
|
|
this.btnConnShares.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnConnShares.Location = new System.Drawing.Point(120, 82);
|
|
this.btnConnShares.Name = "btnConnShares";
|
|
this.btnConnShares.Size = new System.Drawing.Size(108, 23);
|
|
this.btnConnShares.TabIndex = 4;
|
|
this.btnConnShares.Text = "Connect Shares";
|
|
this.btnConnShares.UseVisualStyleBackColor = true;
|
|
this.btnConnShares.Click += new System.EventHandler(this.btnConnShares_Click);
|
|
//
|
|
// btnEditPerson
|
|
//
|
|
this.btnEditPerson.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.btnEditPerson.Location = new System.Drawing.Point(6, 82);
|
|
this.btnEditPerson.Name = "btnEditPerson";
|
|
this.btnEditPerson.Size = new System.Drawing.Size(108, 23);
|
|
this.btnEditPerson.TabIndex = 3;
|
|
this.btnEditPerson.Text = "Add/Edit Person";
|
|
this.btnEditPerson.UseVisualStyleBackColor = true;
|
|
this.btnEditPerson.Click += new System.EventHandler(this.btnEditPerson_Click);
|
|
//
|
|
// cmbOwners
|
|
//
|
|
this.cmbOwners.FormattingEnabled = true;
|
|
this.cmbOwners.Location = new System.Drawing.Point(6, 33);
|
|
this.cmbOwners.Name = "cmbOwners";
|
|
this.cmbOwners.Size = new System.Drawing.Size(152, 23);
|
|
this.cmbOwners.TabIndex = 0;
|
|
this.cmbOwners.SelectedIndexChanged += new System.EventHandler(this.cmbOwners_SelectedIndexChanged);
|
|
//
|
|
// frmInitial
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(853, 538);
|
|
this.Controls.Add(this.gpOwners);
|
|
this.Controls.Add(this.lblStockRows);
|
|
this.Controls.Add(this.gbStockMgmnt);
|
|
this.Controls.Add(this.chbShowBrowser);
|
|
this.Controls.Add(this.btnReloadShares);
|
|
this.Controls.Add(this.btnTestScrapFunction);
|
|
this.Controls.Add(this.gB1);
|
|
this.Controls.Add(this.lblTotalRecords);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmInitial";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Stock Overview";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmInitial_FormClosing);
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.Shown += new System.EventHandler(this.frmInitial_Shown);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.gB1.ResumeLayout(false);
|
|
this.gB1.PerformLayout();
|
|
this.gbStockMgmnt.ResumeLayout(false);
|
|
this.gpOwners.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DataGridView dataGridView;
|
|
private System.Windows.Forms.Label lblTotalRecords;
|
|
private System.Windows.Forms.GroupBox gB1;
|
|
private System.Windows.Forms.Button btnReload;
|
|
private System.Windows.Forms.Button btnTestScrapFunction;
|
|
private System.Windows.Forms.Button btnReloadShares;
|
|
private System.Windows.Forms.CheckBox chbShowBrowser;
|
|
private System.Windows.Forms.GroupBox gbStockMgmnt;
|
|
private System.Windows.Forms.Button btnStockReg;
|
|
private System.Windows.Forms.Button btnValueView;
|
|
private System.Windows.Forms.Button btnStockSale;
|
|
private System.Windows.Forms.CheckBox chkEnableBackRes;
|
|
private System.Windows.Forms.Button btnRestoreShares;
|
|
private System.Windows.Forms.Button btnBackupShares;
|
|
private System.Windows.Forms.SaveFileDialog sfdSaver;
|
|
private System.Windows.Forms.OpenFileDialog ofdOpener;
|
|
private System.Windows.Forms.Label lblStockRows;
|
|
private System.Windows.Forms.GroupBox gpOwners;
|
|
private System.Windows.Forms.Button btnConnShares;
|
|
private System.Windows.Forms.Button btnEditPerson;
|
|
private System.Windows.Forms.ComboBox cmbOwners;
|
|
}
|
|
}
|
|
|