Click here to Skip to main content
15,886,724 members
Articles / Desktop Programming / Windows Forms

Three-tier .NET Application Utilizing Three ORM Technologies

Rate me:
Please Sign up or sign in to vote.
4.95/5 (118 votes)
30 Jan 2010CPOL109 min read 163.9K   4.4K   437  
LINQ to SQL, Entity Framework, and NHibernate used in a parallel fashion in a three-tier WinForms application.
namespace WinUI
{
	partial class SummaryForm
	{
		/// <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._tbWhere = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this._btnReload = new System.Windows.Forms.Button();
			this._lblBudgetStartDate = new System.Windows.Forms.Label();
			this._tbBudgetStartDate = new System.Windows.Forms.TextBox();
			this._lblMonthlyAllocation = new System.Windows.Forms.Label();
			this._tbBudgetMonthlyAmount = new System.Windows.Forms.TextBox();
			this._lblAdditionalFundingDue = new System.Windows.Forms.Label();
			this._tbBudgetDeltaBudgetPeriod = new System.Windows.Forms.TextBox();
			this._lblFundingUsageMinusFunding = new System.Windows.Forms.Label();
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod = new System.Windows.Forms.TextBox();
			this._lblBudgetExpensesAfterStartDate = new System.Windows.Forms.Label();
			this._tbBudgetExpensesBudgetPeriod = new System.Windows.Forms.TextBox();
			this._lblBudgetAllocation = new System.Windows.Forms.Label();
			this._tbBudgetAllocationBudgetPeriod = new System.Windows.Forms.TextBox();
			this._lblBudgetMinus = new System.Windows.Forms.Label();
			this._lblBudgetPlus = new System.Windows.Forms.Label();
			this._gbBudget = new System.Windows.Forms.GroupBox();
			this._tbBudgetAllocationMatchedTransactions = new System.Windows.Forms.TextBox();
			this._tbBudgetDaysMatchedTransactionsWithFormat = new System.Windows.Forms.TextBox();
			this._tbBudgetDeltaMatchedTransactions = new System.Windows.Forms.TextBox();
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions = new System.Windows.Forms.TextBox();
			this._tbBudgetExpensesMatchedTransactions = new System.Windows.Forms.TextBox();
			this._tbBudgetDaysBudgetPeriodWithFormat = new System.Windows.Forms.TextBox();
			this._lblBudgetArithmeticLine = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this._SummaryControl = new WinUI.SummaryControl();
			this._gbBudget.SuspendLayout();
			this.SuspendLayout();
			// 
			// _tbWhere
			// 
			this._tbWhere.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this._tbWhere.BackColor = System.Drawing.Color.PowderBlue;
			this._tbWhere.Location = new System.Drawing.Point(156, 611);
			this._tbWhere.Name = "_tbWhere";
			this._tbWhere.ReadOnly = true;
			this._tbWhere.Size = new System.Drawing.Size(357, 20);
			this._tbWhere.TabIndex = 14;
			this._tbWhere.MouseDown += new System.Windows.Forms.MouseEventHandler(this._tbWhere_MouseDown);
			// 
			// label1
			// 
			this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(98, 614);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(42, 13);
			this.label1.TabIndex = 13;
			this.label1.Text = "Where:";
			// 
			// _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(13, 609);
			this._btnReload.Name = "_btnReload";
			this._btnReload.Size = new System.Drawing.Size(74, 23);
			this._btnReload.TabIndex = 12;
			this._btnReload.Text = "Reload";
			this._btnReload.UseVisualStyleBackColor = true;
			this._btnReload.Click += new System.EventHandler(this._btnReload_Click);
			// 
			// _lblBudgetStartDate
			// 
			this._lblBudgetStartDate.AutoSize = true;
			this._lblBudgetStartDate.Location = new System.Drawing.Point(5, 16);
			this._lblBudgetStartDate.Name = "_lblBudgetStartDate";
			this._lblBudgetStartDate.Size = new System.Drawing.Size(58, 13);
			this._lblBudgetStartDate.TabIndex = 0;
			this._lblBudgetStartDate.Text = "Start Date:";
			// 
			// _tbBudgetStartDate
			// 
			this._tbBudgetStartDate.Location = new System.Drawing.Point(69, 13);
			this._tbBudgetStartDate.Name = "_tbBudgetStartDate";
			this._tbBudgetStartDate.ReadOnly = true;
			this._tbBudgetStartDate.Size = new System.Drawing.Size(124, 20);
			this._tbBudgetStartDate.TabIndex = 1;
			this._tbBudgetStartDate.TextChanged += new System.EventHandler(this._tbBudgetStartDate_TextChanged);
			this._tbBudgetStartDate.MouseDown += new System.Windows.Forms.MouseEventHandler(this._tbBudgetStartDate_MouseDown);
			// 
			// _lblMonthlyAllocation
			// 
			this._lblMonthlyAllocation.AutoSize = true;
			this._lblMonthlyAllocation.Location = new System.Drawing.Point(208, 16);
			this._lblMonthlyAllocation.Name = "_lblMonthlyAllocation";
			this._lblMonthlyAllocation.Size = new System.Drawing.Size(96, 13);
			this._lblMonthlyAllocation.TabIndex = 2;
			this._lblMonthlyAllocation.Text = "Monthly Allocation:";
			// 
			// _tbBudgetMonthlyAmount
			// 
			this._tbBudgetMonthlyAmount.Location = new System.Drawing.Point(310, 13);
			this._tbBudgetMonthlyAmount.Name = "_tbBudgetMonthlyAmount";
			this._tbBudgetMonthlyAmount.ReadOnly = true;
			this._tbBudgetMonthlyAmount.Size = new System.Drawing.Size(124, 20);
			this._tbBudgetMonthlyAmount.TabIndex = 3;
			this._tbBudgetMonthlyAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._tbBudgetMonthlyAmount.MouseDown += new System.Windows.Forms.MouseEventHandler(this._tbBudgetMonthlyAmount_MouseDown);
			// 
			// _lblAdditionalFundingDue
			// 
			this._lblAdditionalFundingDue.AutoSize = true;
			this._lblAdditionalFundingDue.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._lblAdditionalFundingDue.Location = new System.Drawing.Point(271, 151);
			this._lblAdditionalFundingDue.Name = "_lblAdditionalFundingDue";
			this._lblAdditionalFundingDue.Size = new System.Drawing.Size(42, 14);
			this._lblAdditionalFundingDue.TabIndex = 4;
			this._lblAdditionalFundingDue.Text = "Delta";
			// 
			// _tbBudgetDeltaBudgetPeriod
			// 
			this._tbBudgetDeltaBudgetPeriod.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetDeltaBudgetPeriod.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetDeltaBudgetPeriod.Location = new System.Drawing.Point(54, 151);
			this._tbBudgetDeltaBudgetPeriod.Name = "_tbBudgetDeltaBudgetPeriod";
			this._tbBudgetDeltaBudgetPeriod.ReadOnly = true;
			this._tbBudgetDeltaBudgetPeriod.Size = new System.Drawing.Size(79, 13);
			this._tbBudgetDeltaBudgetPeriod.TabIndex = 5;
			this._tbBudgetDeltaBudgetPeriod.Text = "1,234.00";
			this._tbBudgetDeltaBudgetPeriod.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _lblFundingUsageMinusFunding
			// 
			this._lblFundingUsageMinusFunding.AutoSize = true;
			this._lblFundingUsageMinusFunding.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._lblFundingUsageMinusFunding.Location = new System.Drawing.Point(271, 126);
			this._lblFundingUsageMinusFunding.Name = "_lblFundingUsageMinusFunding";
			this._lblFundingUsageMinusFunding.Size = new System.Drawing.Size(168, 14);
			this._lblFundingUsageMinusFunding.TabIndex = 6;
			this._lblFundingUsageMinusFunding.Text = "Funding Usage - Funding";
			this._lblFundingUsageMinusFunding.Click += new System.EventHandler(this.label5_Click);
			// 
			// _tbBudgetFundingUsageMinusFundingBudgetPeriod
			// 
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.Location = new System.Drawing.Point(54, 126);
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.Name = "_tbBudgetFundingUsageMinusFundingBudgetPeriod";
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.ReadOnly = true;
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.Size = new System.Drawing.Size(79, 13);
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.TabIndex = 7;
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.Text = "1,234.00";
			this._tbBudgetFundingUsageMinusFundingBudgetPeriod.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _lblBudgetExpensesAfterStartDate
			// 
			this._lblBudgetExpensesAfterStartDate.AutoSize = true;
			this._lblBudgetExpensesAfterStartDate.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._lblBudgetExpensesAfterStartDate.Location = new System.Drawing.Point(271, 110);
			this._lblBudgetExpensesAfterStartDate.Name = "_lblBudgetExpensesAfterStartDate";
			this._lblBudgetExpensesAfterStartDate.Size = new System.Drawing.Size(112, 14);
			this._lblBudgetExpensesAfterStartDate.TabIndex = 8;
			this._lblBudgetExpensesAfterStartDate.Text = "Budget Expenses";
			// 
			// _tbBudgetExpensesBudgetPeriod
			// 
			this._tbBudgetExpensesBudgetPeriod.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetExpensesBudgetPeriod.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetExpensesBudgetPeriod.Location = new System.Drawing.Point(54, 110);
			this._tbBudgetExpensesBudgetPeriod.Name = "_tbBudgetExpensesBudgetPeriod";
			this._tbBudgetExpensesBudgetPeriod.ReadOnly = true;
			this._tbBudgetExpensesBudgetPeriod.Size = new System.Drawing.Size(79, 13);
			this._tbBudgetExpensesBudgetPeriod.TabIndex = 9;
			this._tbBudgetExpensesBudgetPeriod.Text = "1,234.00";
			this._tbBudgetExpensesBudgetPeriod.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _lblBudgetAllocation
			// 
			this._lblBudgetAllocation.AutoSize = true;
			this._lblBudgetAllocation.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._lblBudgetAllocation.Location = new System.Drawing.Point(271, 93);
			this._lblBudgetAllocation.Name = "_lblBudgetAllocation";
			this._lblBudgetAllocation.Size = new System.Drawing.Size(77, 14);
			this._lblBudgetAllocation.TabIndex = 10;
			this._lblBudgetAllocation.Text = "Allocation";
			// 
			// _tbBudgetAllocationBudgetPeriod
			// 
			this._tbBudgetAllocationBudgetPeriod.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetAllocationBudgetPeriod.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetAllocationBudgetPeriod.Location = new System.Drawing.Point(54, 93);
			this._tbBudgetAllocationBudgetPeriod.Name = "_tbBudgetAllocationBudgetPeriod";
			this._tbBudgetAllocationBudgetPeriod.ReadOnly = true;
			this._tbBudgetAllocationBudgetPeriod.Size = new System.Drawing.Size(79, 13);
			this._tbBudgetAllocationBudgetPeriod.TabIndex = 11;
			this._tbBudgetAllocationBudgetPeriod.Text = "1,234.00";
			this._tbBudgetAllocationBudgetPeriod.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _lblBudgetMinus
			// 
			this._lblBudgetMinus.AutoSize = true;
			this._lblBudgetMinus.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._lblBudgetMinus.Location = new System.Drawing.Point(38, 109);
			this._lblBudgetMinus.Name = "_lblBudgetMinus";
			this._lblBudgetMinus.Size = new System.Drawing.Size(16, 16);
			this._lblBudgetMinus.TabIndex = 12;
			this._lblBudgetMinus.Text = "-";
			// 
			// _lblBudgetPlus
			// 
			this._lblBudgetPlus.AutoSize = true;
			this._lblBudgetPlus.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._lblBudgetPlus.Location = new System.Drawing.Point(38, 125);
			this._lblBudgetPlus.Name = "_lblBudgetPlus";
			this._lblBudgetPlus.Size = new System.Drawing.Size(16, 16);
			this._lblBudgetPlus.TabIndex = 13;
			this._lblBudgetPlus.Text = "+";
			// 
			// _gbBudget
			// 
			this._gbBudget.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this._gbBudget.Controls.Add(this._tbBudgetAllocationMatchedTransactions);
			this._gbBudget.Controls.Add(this._tbBudgetDaysMatchedTransactionsWithFormat);
			this._gbBudget.Controls.Add(this._tbBudgetDeltaMatchedTransactions);
			this._gbBudget.Controls.Add(this._tbBudgetFundingUsageMinusFundingMatchedTransactions);
			this._gbBudget.Controls.Add(this._tbBudgetExpensesMatchedTransactions);
			this._gbBudget.Controls.Add(this._tbBudgetDaysBudgetPeriodWithFormat);
			this._gbBudget.Controls.Add(this._lblBudgetArithmeticLine);
			this._gbBudget.Controls.Add(this._lblBudgetPlus);
			this._gbBudget.Controls.Add(this._lblBudgetMinus);
			this._gbBudget.Controls.Add(this._tbBudgetAllocationBudgetPeriod);
			this._gbBudget.Controls.Add(this._lblBudgetAllocation);
			this._gbBudget.Controls.Add(this._tbBudgetExpensesBudgetPeriod);
			this._gbBudget.Controls.Add(this._lblBudgetExpensesAfterStartDate);
			this._gbBudget.Controls.Add(this._tbBudgetFundingUsageMinusFundingBudgetPeriod);
			this._gbBudget.Controls.Add(this._lblFundingUsageMinusFunding);
			this._gbBudget.Controls.Add(this._tbBudgetDeltaBudgetPeriod);
			this._gbBudget.Controls.Add(this._lblAdditionalFundingDue);
			this._gbBudget.Controls.Add(this._tbBudgetMonthlyAmount);
			this._gbBudget.Controls.Add(this._lblMonthlyAllocation);
			this._gbBudget.Controls.Add(this._tbBudgetStartDate);
			this._gbBudget.Controls.Add(this._lblBudgetStartDate);
			this._gbBudget.Location = new System.Drawing.Point(13, 413);
			this._gbBudget.Name = "_gbBudget";
			this._gbBudget.Size = new System.Drawing.Size(496, 179);
			this._gbBudget.TabIndex = 16;
			this._gbBudget.TabStop = false;
			this._gbBudget.Text = "Budget";
			// 
			// _tbBudgetAllocationMatchedTransactions
			// 
			this._tbBudgetAllocationMatchedTransactions.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetAllocationMatchedTransactions.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetAllocationMatchedTransactions.Location = new System.Drawing.Point(164, 93);
			this._tbBudgetAllocationMatchedTransactions.Name = "_tbBudgetAllocationMatchedTransactions";
			this._tbBudgetAllocationMatchedTransactions.ReadOnly = true;
			this._tbBudgetAllocationMatchedTransactions.Size = new System.Drawing.Size(92, 13);
			this._tbBudgetAllocationMatchedTransactions.TabIndex = 23;
			this._tbBudgetAllocationMatchedTransactions.Text = "1,234.00";
			this._tbBudgetAllocationMatchedTransactions.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _tbBudgetDaysMatchedTransactionsWithFormat
			// 
			this._tbBudgetDaysMatchedTransactionsWithFormat.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetDaysMatchedTransactionsWithFormat.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetDaysMatchedTransactionsWithFormat.Location = new System.Drawing.Point(154, 39);
			this._tbBudgetDaysMatchedTransactionsWithFormat.Multiline = true;
			this._tbBudgetDaysMatchedTransactionsWithFormat.Name = "_tbBudgetDaysMatchedTransactionsWithFormat";
			this._tbBudgetDaysMatchedTransactionsWithFormat.ReadOnly = true;
			this._tbBudgetDaysMatchedTransactionsWithFormat.Size = new System.Drawing.Size(102, 48);
			this._tbBudgetDaysMatchedTransactionsWithFormat.TabIndex = 22;
			this._tbBudgetDaysMatchedTransactionsWithFormat.Text = "All Matching Transactions ({0} days):";
			this._tbBudgetDaysMatchedTransactionsWithFormat.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _tbBudgetDeltaMatchedTransactions
			// 
			this._tbBudgetDeltaMatchedTransactions.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetDeltaMatchedTransactions.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetDeltaMatchedTransactions.Location = new System.Drawing.Point(164, 151);
			this._tbBudgetDeltaMatchedTransactions.Name = "_tbBudgetDeltaMatchedTransactions";
			this._tbBudgetDeltaMatchedTransactions.ReadOnly = true;
			this._tbBudgetDeltaMatchedTransactions.Size = new System.Drawing.Size(92, 13);
			this._tbBudgetDeltaMatchedTransactions.TabIndex = 21;
			this._tbBudgetDeltaMatchedTransactions.Text = "1,234.00";
			this._tbBudgetDeltaMatchedTransactions.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _tbBudgetFundingUsageMinusFundingMatchedTransactions
			// 
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.Location = new System.Drawing.Point(164, 126);
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.Name = "_tbBudgetFundingUsageMinusFundingMatchedTransactions";
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.ReadOnly = true;
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.Size = new System.Drawing.Size(92, 13);
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.TabIndex = 20;
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.Text = "1,234.00";
			this._tbBudgetFundingUsageMinusFundingMatchedTransactions.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _tbBudgetExpensesMatchedTransactions
			// 
			this._tbBudgetExpensesMatchedTransactions.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetExpensesMatchedTransactions.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetExpensesMatchedTransactions.Location = new System.Drawing.Point(164, 110);
			this._tbBudgetExpensesMatchedTransactions.Name = "_tbBudgetExpensesMatchedTransactions";
			this._tbBudgetExpensesMatchedTransactions.ReadOnly = true;
			this._tbBudgetExpensesMatchedTransactions.Size = new System.Drawing.Size(92, 13);
			this._tbBudgetExpensesMatchedTransactions.TabIndex = 18;
			this._tbBudgetExpensesMatchedTransactions.Text = "1,234.00";
			this._tbBudgetExpensesMatchedTransactions.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _tbBudgetDaysBudgetPeriodWithFormat
			// 
			this._tbBudgetDaysBudgetPeriodWithFormat.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._tbBudgetDaysBudgetPeriodWithFormat.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this._tbBudgetDaysBudgetPeriodWithFormat.Location = new System.Drawing.Point(31, 39);
			this._tbBudgetDaysBudgetPeriodWithFormat.Multiline = true;
			this._tbBudgetDaysBudgetPeriodWithFormat.Name = "_tbBudgetDaysBudgetPeriodWithFormat";
			this._tbBudgetDaysBudgetPeriodWithFormat.ReadOnly = true;
			this._tbBudgetDaysBudgetPeriodWithFormat.Size = new System.Drawing.Size(102, 48);
			this._tbBudgetDaysBudgetPeriodWithFormat.TabIndex = 15;
			this._tbBudgetDaysBudgetPeriodWithFormat.Text = "Clipped By Start Date ({0} days):";
			this._tbBudgetDaysBudgetPeriodWithFormat.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// _lblBudgetArithmeticLine
			// 
			this._lblBudgetArithmeticLine.BackColor = System.Drawing.SystemColors.ControlText;
			this._lblBudgetArithmeticLine.Location = new System.Drawing.Point(11, 145);
			this._lblBudgetArithmeticLine.Name = "_lblBudgetArithmeticLine";
			this._lblBudgetArithmeticLine.Size = new System.Drawing.Size(449, 2);
			this._lblBudgetArithmeticLine.TabIndex = 14;
			// 
			// label2
			// 
			this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.label2.AutoSize = true;
			this.label2.BackColor = System.Drawing.SystemColors.Control;
			this.label2.Location = new System.Drawing.Point(153, 595);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(141, 13);
			this.label2.TabIndex = 21;
			this.label2.Text = "(right-click below for options)";
			// 
			// _SummaryControl
			// 
			this._SummaryControl.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._SummaryControl.Location = new System.Drawing.Point(13, 13);
			this._SummaryControl.Name = "_SummaryControl";
			this._SummaryControl.Size = new System.Drawing.Size(500, 394);
			this._SummaryControl.TabIndex = 15;
			// 
			// SummaryForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(526, 640);
			this.Controls.Add(this.label2);
			this.Controls.Add(this._SummaryControl);
			this.Controls.Add(this._tbWhere);
			this.Controls.Add(this.label1);
			this.Controls.Add(this._btnReload);
			this.Controls.Add(this._gbBudget);
			this.Name = "SummaryForm";
			this.Text = "Summary";
			this._gbBudget.ResumeLayout(false);
			this._gbBudget.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.TextBox _tbWhere;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Button _btnReload;
		private SummaryControl _SummaryControl;
		private System.Windows.Forms.Label _lblBudgetStartDate;
		private System.Windows.Forms.TextBox _tbBudgetStartDate;
		private System.Windows.Forms.Label _lblMonthlyAllocation;
		private System.Windows.Forms.TextBox _tbBudgetMonthlyAmount;
		private System.Windows.Forms.Label _lblAdditionalFundingDue;
		private System.Windows.Forms.TextBox _tbBudgetDeltaBudgetPeriod;
		private System.Windows.Forms.Label _lblFundingUsageMinusFunding;
		private System.Windows.Forms.TextBox _tbBudgetFundingUsageMinusFundingBudgetPeriod;
		private System.Windows.Forms.Label _lblBudgetExpensesAfterStartDate;
		private System.Windows.Forms.TextBox _tbBudgetExpensesBudgetPeriod;
		private System.Windows.Forms.Label _lblBudgetAllocation;
		private System.Windows.Forms.TextBox _tbBudgetAllocationBudgetPeriod;
		private System.Windows.Forms.Label _lblBudgetMinus;
		private System.Windows.Forms.Label _lblBudgetPlus;
		private System.Windows.Forms.GroupBox _gbBudget;
		private System.Windows.Forms.Label _lblBudgetArithmeticLine;
		private System.Windows.Forms.TextBox _tbBudgetDaysBudgetPeriodWithFormat;
		private System.Windows.Forms.TextBox _tbBudgetExpensesMatchedTransactions;
		private System.Windows.Forms.TextBox _tbBudgetDeltaMatchedTransactions;
		private System.Windows.Forms.TextBox _tbBudgetFundingUsageMinusFundingMatchedTransactions;
		private System.Windows.Forms.TextBox _tbBudgetDaysMatchedTransactionsWithFormat;
		private System.Windows.Forms.TextBox _tbBudgetAllocationMatchedTransactions;
		private System.Windows.Forms.Label label2;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Austin Regional Clinic
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions