452 lines
19 KiB
C#
452 lines
19 KiB
C#
|
|
namespace StockInfo
|
|
{
|
|
partial class frmSelling
|
|
{
|
|
/// <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.lvSellCandidates = new System.Windows.Forms.ListView();
|
|
this.StockName = new System.Windows.Forms.ColumnHeader();
|
|
this.Buydate = new System.Windows.Forms.ColumnHeader();
|
|
this.BuyPrice = new System.Windows.Forms.ColumnHeader();
|
|
this.LeftNumber = new System.Windows.Forms.ColumnHeader();
|
|
this.ActPrice = new System.Windows.Forms.ColumnHeader();
|
|
this.TotalValue = new System.Windows.Forms.ColumnHeader();
|
|
this.gbInfo = new System.Windows.Forms.GroupBox();
|
|
this.txtBuyValue = new System.Windows.Forms.TextBox();
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
this.txtBuyPrice = new System.Windows.Forms.TextBox();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.txtBuyNumber = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.txtBuyDate = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.txtStockId = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txtId = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.gbSell = new System.Windows.Forms.GroupBox();
|
|
this.txtGainLoose = new System.Windows.Forms.TextBox();
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
this.btnConfirm = new System.Windows.Forms.Button();
|
|
this.txtRemainingNo = new System.Windows.Forms.TextBox();
|
|
this.label11 = new System.Windows.Forms.Label();
|
|
this.txtSellValue = new System.Windows.Forms.TextBox();
|
|
this.label10 = new System.Windows.Forms.Label();
|
|
this.txtSoldAmount = new System.Windows.Forms.TextBox();
|
|
this.label9 = new System.Windows.Forms.Label();
|
|
this.txtSoldPrice = new System.Windows.Forms.TextBox();
|
|
this.label8 = new System.Windows.Forms.Label();
|
|
this.txtSoldDate = new System.Windows.Forms.TextBox();
|
|
this.label7 = new System.Windows.Forms.Label();
|
|
this.btnClose = new System.Windows.Forms.Button();
|
|
this.gbInfo.SuspendLayout();
|
|
this.gbSell.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// lvSellCandidates
|
|
//
|
|
this.lvSellCandidates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.StockName,
|
|
this.Buydate,
|
|
this.BuyPrice,
|
|
this.LeftNumber,
|
|
this.ActPrice,
|
|
this.TotalValue});
|
|
this.lvSellCandidates.FullRowSelect = true;
|
|
this.lvSellCandidates.HideSelection = false;
|
|
this.lvSellCandidates.Location = new System.Drawing.Point(13, 13);
|
|
this.lvSellCandidates.MultiSelect = false;
|
|
this.lvSellCandidates.Name = "lvSellCandidates";
|
|
this.lvSellCandidates.Size = new System.Drawing.Size(519, 128);
|
|
this.lvSellCandidates.TabIndex = 0;
|
|
this.lvSellCandidates.UseCompatibleStateImageBehavior = false;
|
|
this.lvSellCandidates.View = System.Windows.Forms.View.Details;
|
|
this.lvSellCandidates.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lvSellCandidates_MouseUp);
|
|
//
|
|
// StockName
|
|
//
|
|
this.StockName.Name = "StockName";
|
|
this.StockName.Text = "StockId";
|
|
this.StockName.Width = 80;
|
|
//
|
|
// Buydate
|
|
//
|
|
this.Buydate.Name = "Buydate";
|
|
this.Buydate.Text = "Date of Buy";
|
|
this.Buydate.Width = 80;
|
|
//
|
|
// BuyPrice
|
|
//
|
|
this.BuyPrice.Name = "BuyPrice";
|
|
this.BuyPrice.Text = "Price per stock";
|
|
this.BuyPrice.Width = 80;
|
|
//
|
|
// LeftNumber
|
|
//
|
|
this.LeftNumber.Name = "LeftNumber";
|
|
this.LeftNumber.Text = "Remaining Nr";
|
|
this.LeftNumber.Width = 80;
|
|
//
|
|
// ActPrice
|
|
//
|
|
this.ActPrice.Name = "ActPrice";
|
|
this.ActPrice.Text = "Price today";
|
|
this.ActPrice.Width = 80;
|
|
//
|
|
// TotalValue
|
|
//
|
|
this.TotalValue.Name = "TotalValue";
|
|
this.TotalValue.Text = "Value Today";
|
|
this.TotalValue.Width = 80;
|
|
//
|
|
// gbInfo
|
|
//
|
|
this.gbInfo.Controls.Add(this.txtBuyValue);
|
|
this.gbInfo.Controls.Add(this.label6);
|
|
this.gbInfo.Controls.Add(this.txtBuyPrice);
|
|
this.gbInfo.Controls.Add(this.label5);
|
|
this.gbInfo.Controls.Add(this.txtBuyNumber);
|
|
this.gbInfo.Controls.Add(this.label4);
|
|
this.gbInfo.Controls.Add(this.txtBuyDate);
|
|
this.gbInfo.Controls.Add(this.label3);
|
|
this.gbInfo.Controls.Add(this.txtStockId);
|
|
this.gbInfo.Controls.Add(this.label2);
|
|
this.gbInfo.Controls.Add(this.txtId);
|
|
this.gbInfo.Controls.Add(this.label1);
|
|
this.gbInfo.Location = new System.Drawing.Point(13, 170);
|
|
this.gbInfo.Name = "gbInfo";
|
|
this.gbInfo.Size = new System.Drawing.Size(276, 250);
|
|
this.gbInfo.TabIndex = 1;
|
|
this.gbInfo.TabStop = false;
|
|
this.gbInfo.Text = "Actual Stock";
|
|
//
|
|
// txtBuyValue
|
|
//
|
|
this.txtBuyValue.Location = new System.Drawing.Point(116, 165);
|
|
this.txtBuyValue.Name = "txtBuyValue";
|
|
this.txtBuyValue.ReadOnly = true;
|
|
this.txtBuyValue.Size = new System.Drawing.Size(73, 23);
|
|
this.txtBuyValue.TabIndex = 11;
|
|
//
|
|
// label6
|
|
//
|
|
this.label6.AutoSize = true;
|
|
this.label6.Location = new System.Drawing.Point(7, 168);
|
|
this.label6.Name = "label6";
|
|
this.label6.Size = new System.Drawing.Size(58, 15);
|
|
this.label6.TabIndex = 10;
|
|
this.label6.Text = "Buy value";
|
|
//
|
|
// txtBuyPrice
|
|
//
|
|
this.txtBuyPrice.Location = new System.Drawing.Point(116, 136);
|
|
this.txtBuyPrice.Name = "txtBuyPrice";
|
|
this.txtBuyPrice.ReadOnly = true;
|
|
this.txtBuyPrice.Size = new System.Drawing.Size(73, 23);
|
|
this.txtBuyPrice.TabIndex = 9;
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Location = new System.Drawing.Point(7, 139);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(56, 15);
|
|
this.label5.TabIndex = 8;
|
|
this.label5.Text = "Buy price";
|
|
//
|
|
// txtBuyNumber
|
|
//
|
|
this.txtBuyNumber.Location = new System.Drawing.Point(116, 107);
|
|
this.txtBuyNumber.Name = "txtBuyNumber";
|
|
this.txtBuyNumber.ReadOnly = true;
|
|
this.txtBuyNumber.Size = new System.Drawing.Size(73, 23);
|
|
this.txtBuyNumber.TabIndex = 7;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(7, 110);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(93, 15);
|
|
this.label4.TabIndex = 6;
|
|
this.label4.Text = "Bought Number";
|
|
//
|
|
// txtBuyDate
|
|
//
|
|
this.txtBuyDate.Location = new System.Drawing.Point(116, 78);
|
|
this.txtBuyDate.Name = "txtBuyDate";
|
|
this.txtBuyDate.ReadOnly = true;
|
|
this.txtBuyDate.Size = new System.Drawing.Size(73, 23);
|
|
this.txtBuyDate.TabIndex = 5;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(7, 81);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(72, 15);
|
|
this.label3.TabIndex = 4;
|
|
this.label3.Text = "Bought date";
|
|
//
|
|
// txtStockId
|
|
//
|
|
this.txtStockId.Location = new System.Drawing.Point(116, 49);
|
|
this.txtStockId.Name = "txtStockId";
|
|
this.txtStockId.ReadOnly = true;
|
|
this.txtStockId.Size = new System.Drawing.Size(154, 23);
|
|
this.txtStockId.TabIndex = 3;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(7, 52);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(49, 15);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "Stock Id";
|
|
//
|
|
// txtId
|
|
//
|
|
this.txtId.Location = new System.Drawing.Point(116, 20);
|
|
this.txtId.Name = "txtId";
|
|
this.txtId.ReadOnly = true;
|
|
this.txtId.Size = new System.Drawing.Size(73, 23);
|
|
this.txtId.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(7, 23);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(48, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Local Id";
|
|
//
|
|
// gbSell
|
|
//
|
|
this.gbSell.Controls.Add(this.txtGainLoose);
|
|
this.gbSell.Controls.Add(this.label12);
|
|
this.gbSell.Controls.Add(this.btnConfirm);
|
|
this.gbSell.Controls.Add(this.txtRemainingNo);
|
|
this.gbSell.Controls.Add(this.label11);
|
|
this.gbSell.Controls.Add(this.txtSellValue);
|
|
this.gbSell.Controls.Add(this.label10);
|
|
this.gbSell.Controls.Add(this.txtSoldAmount);
|
|
this.gbSell.Controls.Add(this.label9);
|
|
this.gbSell.Controls.Add(this.txtSoldPrice);
|
|
this.gbSell.Controls.Add(this.label8);
|
|
this.gbSell.Controls.Add(this.txtSoldDate);
|
|
this.gbSell.Controls.Add(this.label7);
|
|
this.gbSell.Location = new System.Drawing.Point(296, 170);
|
|
this.gbSell.Name = "gbSell";
|
|
this.gbSell.Size = new System.Drawing.Size(236, 250);
|
|
this.gbSell.TabIndex = 2;
|
|
this.gbSell.TabStop = false;
|
|
this.gbSell.Text = "Sell decision";
|
|
//
|
|
// txtGainLoose
|
|
//
|
|
this.txtGainLoose.Location = new System.Drawing.Point(121, 165);
|
|
this.txtGainLoose.Name = "txtGainLoose";
|
|
this.txtGainLoose.ReadOnly = true;
|
|
this.txtGainLoose.Size = new System.Drawing.Size(73, 23);
|
|
this.txtGainLoose.TabIndex = 14;
|
|
//
|
|
// label12
|
|
//
|
|
this.label12.AutoSize = true;
|
|
this.label12.Location = new System.Drawing.Point(12, 168);
|
|
this.label12.Name = "label12";
|
|
this.label12.Size = new System.Drawing.Size(73, 15);
|
|
this.label12.TabIndex = 13;
|
|
this.label12.Text = "Gain / Loose";
|
|
//
|
|
// btnConfirm
|
|
//
|
|
this.btnConfirm.Location = new System.Drawing.Point(121, 221);
|
|
this.btnConfirm.Name = "btnConfirm";
|
|
this.btnConfirm.Size = new System.Drawing.Size(75, 23);
|
|
this.btnConfirm.TabIndex = 12;
|
|
this.btnConfirm.Text = "Confirm";
|
|
this.btnConfirm.UseVisualStyleBackColor = true;
|
|
this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
|
|
//
|
|
// txtRemainingNo
|
|
//
|
|
this.txtRemainingNo.Location = new System.Drawing.Point(121, 136);
|
|
this.txtRemainingNo.Name = "txtRemainingNo";
|
|
this.txtRemainingNo.ReadOnly = true;
|
|
this.txtRemainingNo.Size = new System.Drawing.Size(73, 23);
|
|
this.txtRemainingNo.TabIndex = 11;
|
|
//
|
|
// label11
|
|
//
|
|
this.label11.AutoSize = true;
|
|
this.label11.Location = new System.Drawing.Point(12, 139);
|
|
this.label11.Name = "label11";
|
|
this.label11.Size = new System.Drawing.Size(80, 15);
|
|
this.label11.TabIndex = 10;
|
|
this.label11.Text = "Remaining Nr";
|
|
//
|
|
// txtSellValue
|
|
//
|
|
this.txtSellValue.Location = new System.Drawing.Point(121, 107);
|
|
this.txtSellValue.Name = "txtSellValue";
|
|
this.txtSellValue.ReadOnly = true;
|
|
this.txtSellValue.Size = new System.Drawing.Size(73, 23);
|
|
this.txtSellValue.TabIndex = 9;
|
|
//
|
|
// label10
|
|
//
|
|
this.label10.AutoSize = true;
|
|
this.label10.Location = new System.Drawing.Point(12, 110);
|
|
this.label10.Name = "label10";
|
|
this.label10.Size = new System.Drawing.Size(56, 15);
|
|
this.label10.TabIndex = 8;
|
|
this.label10.Text = "Sell Value";
|
|
//
|
|
// txtSoldAmount
|
|
//
|
|
this.txtSoldAmount.Location = new System.Drawing.Point(121, 78);
|
|
this.txtSoldAmount.Name = "txtSoldAmount";
|
|
this.txtSoldAmount.Size = new System.Drawing.Size(73, 23);
|
|
this.txtSoldAmount.TabIndex = 7;
|
|
this.txtSoldAmount.TextChanged += new System.EventHandler(this.txtSoldAmount_TextChanged);
|
|
//
|
|
// label9
|
|
//
|
|
this.label9.AutoSize = true;
|
|
this.label9.Location = new System.Drawing.Point(12, 81);
|
|
this.label9.Name = "label9";
|
|
this.label9.Size = new System.Drawing.Size(77, 15);
|
|
this.label9.TabIndex = 6;
|
|
this.label9.Text = "Sold Number";
|
|
//
|
|
// txtSoldPrice
|
|
//
|
|
this.txtSoldPrice.Location = new System.Drawing.Point(121, 49);
|
|
this.txtSoldPrice.Name = "txtSoldPrice";
|
|
this.txtSoldPrice.Size = new System.Drawing.Size(73, 23);
|
|
this.txtSoldPrice.TabIndex = 5;
|
|
this.txtSoldPrice.TextChanged += new System.EventHandler(this.txtSoldPrice_TextChanged);
|
|
//
|
|
// label8
|
|
//
|
|
this.label8.AutoSize = true;
|
|
this.label8.Location = new System.Drawing.Point(12, 52);
|
|
this.label8.Name = "label8";
|
|
this.label8.Size = new System.Drawing.Size(71, 15);
|
|
this.label8.TabIndex = 4;
|
|
this.label8.Text = "Selling Price";
|
|
//
|
|
// txtSoldDate
|
|
//
|
|
this.txtSoldDate.Location = new System.Drawing.Point(121, 20);
|
|
this.txtSoldDate.Name = "txtSoldDate";
|
|
this.txtSoldDate.Size = new System.Drawing.Size(73, 23);
|
|
this.txtSoldDate.TabIndex = 3;
|
|
//
|
|
// label7
|
|
//
|
|
this.label7.AutoSize = true;
|
|
this.label7.Location = new System.Drawing.Point(12, 23);
|
|
this.label7.Name = "label7";
|
|
this.label7.Size = new System.Drawing.Size(57, 15);
|
|
this.label7.TabIndex = 2;
|
|
this.label7.Text = "Sold Date";
|
|
//
|
|
// btnClose
|
|
//
|
|
this.btnClose.Location = new System.Drawing.Point(417, 440);
|
|
this.btnClose.Name = "btnClose";
|
|
this.btnClose.Size = new System.Drawing.Size(75, 23);
|
|
this.btnClose.TabIndex = 3;
|
|
this.btnClose.Text = "Close";
|
|
this.btnClose.UseVisualStyleBackColor = true;
|
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|
//
|
|
// frmSelling
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(543, 478);
|
|
this.Controls.Add(this.btnClose);
|
|
this.Controls.Add(this.gbSell);
|
|
this.Controls.Add(this.gbInfo);
|
|
this.Controls.Add(this.lvSellCandidates);
|
|
this.Name = "frmSelling";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "frmSelling";
|
|
this.Load += new System.EventHandler(this.frmSelling_Load);
|
|
this.gbInfo.ResumeLayout(false);
|
|
this.gbInfo.PerformLayout();
|
|
this.gbSell.ResumeLayout(false);
|
|
this.gbSell.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView lvSellCandidates;
|
|
private System.Windows.Forms.ColumnHeader StockName;
|
|
private System.Windows.Forms.ColumnHeader Buydate;
|
|
private System.Windows.Forms.ColumnHeader BuyPrice;
|
|
private System.Windows.Forms.ColumnHeader LeftNumber;
|
|
private System.Windows.Forms.ColumnHeader ActPrice;
|
|
private System.Windows.Forms.ColumnHeader TotalValue;
|
|
private System.Windows.Forms.GroupBox gbInfo;
|
|
private System.Windows.Forms.TextBox txtStockId;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox txtId;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox txtBuyDate;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox txtBuyValue;
|
|
private System.Windows.Forms.Label label6;
|
|
private System.Windows.Forms.TextBox txtBuyPrice;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.TextBox txtBuyNumber;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.GroupBox gbSell;
|
|
private System.Windows.Forms.Button btnConfirm;
|
|
private System.Windows.Forms.TextBox txtRemainingNo;
|
|
private System.Windows.Forms.Label label11;
|
|
private System.Windows.Forms.TextBox txtSellValue;
|
|
private System.Windows.Forms.Label label10;
|
|
private System.Windows.Forms.TextBox txtSoldAmount;
|
|
private System.Windows.Forms.Label label9;
|
|
private System.Windows.Forms.TextBox txtSoldPrice;
|
|
private System.Windows.Forms.Label label8;
|
|
private System.Windows.Forms.TextBox txtSoldDate;
|
|
private System.Windows.Forms.Label label7;
|
|
private System.Windows.Forms.TextBox txtGainLoose;
|
|
private System.Windows.Forms.Label label12;
|
|
private System.Windows.Forms.Button btnClose;
|
|
}
|
|
} |