NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

namespace QuickAuto.Forms
{
partial class FormInvoice
{
private System.ComponentModel.IContainer components = null;

private System.Windows.Forms.DateTimePicker dtpDate;
private System.Windows.Forms.TextBox txtYear;
private System.Windows.Forms.TextBox txtMake;
private System.Windows.Forms.TextBox txtModel;
private System.Windows.Forms.TextBox txtEngine;
private System.Windows.Forms.TextBox txtMileage;
private System.Windows.Forms.TextBox txtItemName;
private System.Windows.Forms.NumericUpDown numQuantity;
private System.Windows.Forms.DataGridView dgvItems;
private System.Windows.Forms.Label lblSubtotal;
private System.Windows.Forms.Label lblTax;
private System.Windows.Forms.Label lblTotal;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnClear;
private System.Windows.Forms.Button btnPartsCatalog;
private System.Windows.Forms.Label labelDate;
private System.Windows.Forms.Label labelYear;
private System.Windows.Forms.Label labelMake;
private System.Windows.Forms.Label labelModel;
private System.Windows.Forms.Label labelEngine;
private System.Windows.Forms.Label labelMileage;
private System.Windows.Forms.Label labelItemName;
private System.Windows.Forms.Label labelQty;
private System.Windows.Forms.Label labelSubtotal;
private System.Windows.Forms.Label labelTax;
private System.Windows.Forms.Label labelTotal;

private System.Windows.Forms.DataGridViewTextBoxColumn colItemType;
private System.Windows.Forms.DataGridViewTextBoxColumn colCode;
private System.Windows.Forms.DataGridViewTextBoxColumn colName;
private System.Windows.Forms.DataGridViewTextBoxColumn colQuantity;
private System.Windows.Forms.DataGridViewTextBoxColumn colUnitPrice;
private System.Windows.Forms.DataGridViewTextBoxColumn colLineTotal;
private System.Windows.Forms.Panel panelItems;

protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

private void InitializeComponent()
{
DataGridViewCellStyle dataGridViewCellStyle3 = new DataGridViewCellStyle();
DataGridViewCellStyle dataGridViewCellStyle4 = new DataGridViewCellStyle();
dtpDate = new DateTimePicker();
txtYear = new TextBox();
txtMake = new TextBox();
txtModel = new TextBox();
txtEngine = new TextBox();
txtMileage = new TextBox();
txtItemName = new TextBox();
numQuantity = new NumericUpDown();
dgvItems = new DataGridView();
colItemType = new DataGridViewTextBoxColumn();
colCode = new DataGridViewTextBoxColumn();
colName = new DataGridViewTextBoxColumn();
colQuantity = new DataGridViewTextBoxColumn();
colUnitPrice = new DataGridViewTextBoxColumn();
colLineTotal = new DataGridViewTextBoxColumn();
lblSubtotal = new Label();
lblTax = new Label();
lblTotal = new Label();
btnSave = new Button();
btnClear = new Button();
labelDate = new Label();
labelYear = new Label();
labelMake = new Label();
labelModel = new Label();
labelEngine = new Label();
labelMileage = new Label();
labelItemName = new Label();
labelQty = new Label();
labelSubtotal = new Label();
labelTax = new Label();
labelTotal = new Label();
btnPartsCatalog = new Button();
((System.ComponentModel.ISupportInitialize)numQuantity).BeginInit();
((System.ComponentModel.ISupportInitialize)dgvItems).BeginInit();
SuspendLayout();
//
// dtpDate
//
dtpDate.Location = new Point(70, 12);
dtpDate.Name = "dtpDate";
dtpDate.Size = new Size(200, 23);
dtpDate.TabIndex = 0;
dtpDate.ValueChanged += dtpDate_ValueChanged;
//
// txtYear
//
txtYear.Location = new Point(340, 12);
txtYear.Name = "txtYear";
txtYear.Size = new Size(60, 23);
txtYear.TabIndex = 1;
//
// txtMake
//
txtMake.Location = new Point(470, 12);
txtMake.Name = "txtMake";
txtMake.Size = new Size(100, 23);
txtMake.TabIndex = 2;
//
// txtModel
//
txtModel.Location = new Point(640, 12);
txtModel.Name = "txtModel";
txtModel.Size = new Size(120, 23);
txtModel.TabIndex = 3;
//
// txtEngine
//
txtEngine.Location = new Point(70, 45);
txtEngine.Name = "txtEngine";
txtEngine.Size = new Size(150, 23);
txtEngine.TabIndex = 4;
//
// txtMileage
//
txtMileage.Location = new Point(340, 45);
txtMileage.Name = "txtMileage";
txtMileage.Size = new Size(100, 23);
txtMileage.TabIndex = 5;
//
// txtItemName
//
txtItemName.Location = new Point(90, 85);
txtItemName.Name = "txtItemName";
txtItemName.Size = new Size(400, 23);
txtItemName.TabIndex = 6;
txtItemName.KeyDown += txtItemName_KeyDown;
//
// numQuantity
//
numQuantity.Location = new Point(540, 85);
numQuantity.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
numQuantity.Name = "numQuantity";
numQuantity.Size = new Size(60, 23);
numQuantity.TabIndex = 7;
numQuantity.Value = new decimal(new int[] { 1, 0, 0, 0 });
//
// dgvItems
//
dgvItems.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
dgvItems.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dgvItems.Columns.AddRange(new DataGridViewColumn[] { colItemType, colCode, colName, colQuantity, colUnitPrice, colLineTotal });
dgvItems.Location = new Point(12, 120);
dgvItems.Name = "dgvItems";
dgvItems.RowHeadersWidth = 62;
dgvItems.Size = new Size(760, 320);
dgvItems.TabIndex = 8;
//
// colItemType
//
colItemType.HeaderText = "Type";
colItemType.MinimumWidth = 8;
colItemType.Name = "colItemType";
colItemType.ReadOnly = true;
colItemType.Width = 60;
//
// colCode
//
colCode.HeaderText = "Code";
colCode.MinimumWidth = 8;
colCode.Name = "colCode";
colCode.ReadOnly = true;
colCode.Width = 80;
//
// colName
//
colName.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
colName.HeaderText = "Name";
colName.MinimumWidth = 8;
colName.Name = "colName";
colName.ReadOnly = true;
//
// colQuantity
//
colQuantity.HeaderText = "Qty";
colQuantity.MinimumWidth = 8;
colQuantity.Name = "colQuantity";
colQuantity.ReadOnly = true;
colQuantity.Width = 50;
//
// colUnitPrice
//
dataGridViewCellStyle3.Format = "N2";
colUnitPrice.DefaultCellStyle = dataGridViewCellStyle3;
colUnitPrice.HeaderText = "Unit Price";
colUnitPrice.MinimumWidth = 8;
colUnitPrice.Name = "colUnitPrice";
colUnitPrice.ReadOnly = true;
colUnitPrice.Width = 90;
//
// colLineTotal
//
dataGridViewCellStyle4.Format = "N2";
colLineTotal.DefaultCellStyle = dataGridViewCellStyle4;
colLineTotal.HeaderText = "Line Total";
colLineTotal.MinimumWidth = 8;
colLineTotal.Name = "colLineTotal";
colLineTotal.ReadOnly = true;
colLineTotal.Width = 90;
//
// lblSubtotal
//
lblSubtotal.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
lblSubtotal.Location = new Point(672, 450);
lblSubtotal.Name = "lblSubtotal";
lblSubtotal.Size = new Size(100, 23);
lblSubtotal.TabIndex = 9;
lblSubtotal.Text = "0.00";
lblSubtotal.TextAlign = ContentAlignment.MiddleRight;
//
// lblTax
//
lblTax.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
lblTax.Location = new Point(672, 475);
lblTax.Name = "lblTax";
lblTax.Size = new Size(100, 23);
lblTax.TabIndex = 10;
lblTax.Text = "0.00";
lblTax.TextAlign = ContentAlignment.MiddleRight;
//
// lblTotal
//
lblTotal.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
lblTotal.Location = new Point(672, 500);
lblTotal.Name = "lblTotal";
lblTotal.Size = new Size(100, 23);
lblTotal.TabIndex = 11;
lblTotal.Text = "0.00";
lblTotal.TextAlign = ContentAlignment.MiddleRight;
//
// btnSave
//
btnSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
btnSave.Location = new Point(12, 470);
btnSave.Name = "btnSave";
btnSave.Size = new Size(120, 30);
btnSave.TabIndex = 12;
btnSave.Text = "Save Invoice";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// btnClear
//
btnClear.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
btnClear.Location = new Point(150, 470);
btnClear.Name = "btnClear";
btnClear.Size = new Size(120, 30);
btnClear.TabIndex = 13;
btnClear.Text = "Clear";
btnClear.UseVisualStyleBackColor = true;
btnClear.Click += btnClear_Click;
//
// labelDate
//
labelDate.AutoSize = true;
labelDate.Location = new Point(12, 16);
labelDate.Name = "labelDate";
labelDate.Size = new Size(34, 15);
labelDate.TabIndex = 14;
labelDate.Text = "Date:";
//
// labelYear
//
labelYear.AutoSize = true;
labelYear.Location = new Point(300, 16);
labelYear.Name = "labelYear";
labelYear.Size = new Size(32, 15);
labelYear.TabIndex = 15;
labelYear.Text = "Year:";
//
// labelMake
//
labelMake.AutoSize = true;
labelMake.Location = new Point(410, 16);
labelMake.Name = "labelMake";
labelMake.Size = new Size(39, 15);
labelMake.TabIndex = 16;
labelMake.Text = "Make:";
//
// labelModel
//
labelModel.AutoSize = true;
labelModel.Location = new Point(590, 16);
labelModel.Name = "labelModel";
labelModel.Size = new Size(44, 15);
labelModel.TabIndex = 17;
labelModel.Text = "Model:";
//
// labelEngine
//
labelEngine.AutoSize = true;
labelEngine.Location = new Point(12, 49);
labelEngine.Name = "labelEngine";
labelEngine.Size = new Size(46, 15);
labelEngine.TabIndex = 18;
labelEngine.Text = "Engine:";
//
// labelMileage
//
labelMileage.AutoSize = true;
labelMileage.Location = new Point(280, 49);
labelMileage.Name = "labelMileage";
labelMileage.Size = new Size(52, 15);
labelMileage.TabIndex = 19;
labelMileage.Text = "Mileage:";
//
// labelItemName
//
labelItemName.AutoSize = true;
labelItemName.Location = new Point(12, 89);
labelItemName.Name = "labelItemName";
labelItemName.Size = new Size(69, 15);
labelItemName.TabIndex = 20;
labelItemName.Text = "Item Name:";
//
// labelQty
//
labelQty.AutoSize = true;
labelQty.Location = new Point(500, 89);
labelQty.Name = "labelQty";
labelQty.Size = new Size(29, 15);
labelQty.TabIndex = 21;
labelQty.Text = "Qty:";
//
// labelSubtotal
//
labelSubtotal.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
labelSubtotal.AutoSize = true;
labelSubtotal.Location = new Point(610, 454);
labelSubtotal.Name = "labelSubtotal";
labelSubtotal.Size = new Size(54, 15);
labelSubtotal.TabIndex = 22;
labelSubtotal.Text = "Subtotal:";
//
// labelTax
//
labelTax.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
labelTax.AutoSize = true;
labelTax.Location = new Point(610, 479);
labelTax.Name = "labelTax";
labelTax.Size = new Size(57, 15);
labelTax.TabIndex = 23;
labelTax.Text = "HST 13%:";
//
// labelTotal
//
labelTotal.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
labelTotal.AutoSize = true;
labelTotal.Location = new Point(610, 504);
labelTotal.Name = "labelTotal";
labelTotal.Size = new Size(36, 15);
labelTotal.TabIndex = 24;
labelTotal.Text = "Total:";
//
// btnPartsCatalog
//
btnPartsCatalog.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
btnPartsCatalog.Location = new Point(203, 282);
btnPartsCatalog.Margin = new Padding(2, 2, 2, 2);
btnPartsCatalog.Name = "btnPartsCatalog";
btnPartsCatalog.Size = new Size(98, 18);
btnPartsCatalog.TabIndex = 14;
btnPartsCatalog.Text = "Parts Catalog";
btnPartsCatalog.UseVisualStyleBackColor = true;
btnPartsCatalog.Click += btnPartsCatalog_Click;
//
// FormInvoice
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(784, 541);
Controls.Add(labelTotal);
Controls.Add(labelTax);
Controls.Add(labelSubtotal);
Controls.Add(labelQty);
Controls.Add(labelItemName);
Controls.Add(labelMileage);
Controls.Add(labelEngine);
Controls.Add(labelModel);
Controls.Add(labelMake);
Controls.Add(labelYear);
Controls.Add(labelDate);
Controls.Add(btnClear);
Controls.Add(btnSave);
Controls.Add(lblTotal);
Controls.Add(lblTax);
Controls.Add(lblSubtotal);
Controls.Add(btnPartsCatalog);
Controls.Add(dgvItems);
Controls.Add(numQuantity);
Controls.Add(txtItemName);
Controls.Add(txtMileage);
Controls.Add(txtEngine);
Controls.Add(txtModel);
Controls.Add(txtMake);
Controls.Add(txtYear);
Controls.Add(dtpDate);
Name = "FormInvoice";
Text = "Invoice";
Load += FormInvoice_Load;
((System.ComponentModel.ISupportInitialize)numQuantity).EndInit();
((System.ComponentModel.ISupportInitialize)dgvItems).EndInit();
ResumeLayout(false);
PerformLayout();
}
}
}
     
 
what is notes.io
 

Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 14 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.