Files
ravenqbi/AyaNovaQBI/MainForm.Designer.cs
2022-07-11 16:11:39 +00:00

368 lines
21 KiB
C#

namespace AyaNovaQBI
{
partial class MainForm
{
/// <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()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.WorkOrdersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.multipleWorkordersPerInvoiceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.oneWorkOrderPerInvoiceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fixProblemsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.refreshWorkOrdersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.preferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mapAndImportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.invoiceDescriptiveTextTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.refreshCachedDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.onlineManualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.grid = new System.Windows.Forms.DataGridView();
this.lblStatus = new System.Windows.Forms.Label();
this.id = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.customer = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Serial = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ProjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ServiceDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.status = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Linked = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.statuscolor = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.customerid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Enabled = false;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.WorkOrdersToolStripMenuItem,
this.toolsToolStripMenuItem,
this.helpToolStripMenuItem,
this.exitToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(917, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// WorkOrdersToolStripMenuItem
//
this.WorkOrdersToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem1,
this.fixProblemsToolStripMenuItem,
this.refreshWorkOrdersToolStripMenuItem});
this.WorkOrdersToolStripMenuItem.Name = "WorkOrdersToolStripMenuItem";
this.WorkOrdersToolStripMenuItem.Size = new System.Drawing.Size(83, 20);
this.WorkOrdersToolStripMenuItem.Text = "&Work orders";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.multipleWorkordersPerInvoiceToolStripMenuItem,
this.oneWorkOrderPerInvoiceToolStripMenuItem});
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(279, 22);
this.toolStripMenuItem1.Text = "&Invoice selected items to QuickBooks...";
//
// multipleWorkordersPerInvoiceToolStripMenuItem
//
this.multipleWorkordersPerInvoiceToolStripMenuItem.Name = "multipleWorkordersPerInvoiceToolStripMenuItem";
this.multipleWorkordersPerInvoiceToolStripMenuItem.Size = new System.Drawing.Size(241, 22);
this.multipleWorkordersPerInvoiceToolStripMenuItem.Text = "&Multiple workorders per invoice";
this.multipleWorkordersPerInvoiceToolStripMenuItem.Click += new System.EventHandler(this.multipleWorkordersPerInvoiceToolStripMenuItem_Click);
//
// oneWorkOrderPerInvoiceToolStripMenuItem
//
this.oneWorkOrderPerInvoiceToolStripMenuItem.Name = "oneWorkOrderPerInvoiceToolStripMenuItem";
this.oneWorkOrderPerInvoiceToolStripMenuItem.Size = new System.Drawing.Size(241, 22);
this.oneWorkOrderPerInvoiceToolStripMenuItem.Text = "&One work order per invoice";
this.oneWorkOrderPerInvoiceToolStripMenuItem.Click += new System.EventHandler(this.oneWorkOrderPerInvoiceToolStripMenuItem_Click);
//
// fixProblemsToolStripMenuItem
//
this.fixProblemsToolStripMenuItem.Name = "fixProblemsToolStripMenuItem";
this.fixProblemsToolStripMenuItem.Size = new System.Drawing.Size(279, 22);
this.fixProblemsToolStripMenuItem.Text = "&Fix problems";
this.fixProblemsToolStripMenuItem.Click += new System.EventHandler(this.fixProblemsToolStripMenuItem_Click);
//
// refreshWorkOrdersToolStripMenuItem
//
this.refreshWorkOrdersToolStripMenuItem.Name = "refreshWorkOrdersToolStripMenuItem";
this.refreshWorkOrdersToolStripMenuItem.Size = new System.Drawing.Size(279, 22);
this.refreshWorkOrdersToolStripMenuItem.Text = "&Refresh Work orders";
this.refreshWorkOrdersToolStripMenuItem.Click += new System.EventHandler(this.refreshInvoicesToolStripMenuItem_Click);
//
// toolsToolStripMenuItem
//
this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.preferencesToolStripMenuItem,
this.mapAndImportToolStripMenuItem,
this.invoiceDescriptiveTextTemplateToolStripMenuItem,
this.refreshCachedDataToolStripMenuItem});
this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
this.toolsToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
this.toolsToolStripMenuItem.Text = "&Tools";
//
// preferencesToolStripMenuItem
//
this.preferencesToolStripMenuItem.Name = "preferencesToolStripMenuItem";
this.preferencesToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
this.preferencesToolStripMenuItem.Text = "&Preferences";
this.preferencesToolStripMenuItem.Click += new System.EventHandler(this.preferencesToolStripMenuItem_Click);
//
// mapAndImportToolStripMenuItem
//
this.mapAndImportToolStripMenuItem.Name = "mapAndImportToolStripMenuItem";
this.mapAndImportToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
this.mapAndImportToolStripMenuItem.Text = "&Link and synchronize";
this.mapAndImportToolStripMenuItem.Click += new System.EventHandler(this.mapAndImportToolStripMenuItem_Click);
//
// invoiceDescriptiveTextTemplateToolStripMenuItem
//
this.invoiceDescriptiveTextTemplateToolStripMenuItem.Name = "invoiceDescriptiveTextTemplateToolStripMenuItem";
this.invoiceDescriptiveTextTemplateToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
this.invoiceDescriptiveTextTemplateToolStripMenuItem.Text = "&Invoice descriptive text template";
this.invoiceDescriptiveTextTemplateToolStripMenuItem.Click += new System.EventHandler(this.invoiceDescriptiveTextTemplateToolStripMenuItem_Click);
//
// refreshCachedDataToolStripMenuItem
//
this.refreshCachedDataToolStripMenuItem.Name = "refreshCachedDataToolStripMenuItem";
this.refreshCachedDataToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
this.refreshCachedDataToolStripMenuItem.Text = "&Refresh cached data";
this.refreshCachedDataToolStripMenuItem.Click += new System.EventHandler(this.refreshCachedDataToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.onlineManualToolStripMenuItem,
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "&Help";
//
// onlineManualToolStripMenuItem
//
this.onlineManualToolStripMenuItem.Name = "onlineManualToolStripMenuItem";
this.onlineManualToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
this.onlineManualToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.onlineManualToolStripMenuItem.Text = "&Online manual";
this.onlineManualToolStripMenuItem.Click += new System.EventHandler(this.onlineManualToolStripMenuItem_Click);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
this.aboutToolStripMenuItem.Text = "&About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
this.exitToolStripMenuItem.Text = "E&xit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// grid
//
this.grid.AllowUserToAddRows = false;
this.grid.AllowUserToDeleteRows = false;
this.grid.AllowUserToResizeRows = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
this.grid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.grid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.grid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.grid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.id,
this.customer,
this.Serial,
this.ProjectName,
this.ServiceDate,
this.status,
this.Linked,
this.statuscolor,
this.customerid});
this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
this.grid.EnableHeadersVisualStyles = false;
this.grid.Location = new System.Drawing.Point(0, 24);
this.grid.Name = "grid";
this.grid.ReadOnly = true;
this.grid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.grid.Size = new System.Drawing.Size(917, 450);
this.grid.TabIndex = 3;
this.grid.Visible = false;
this.grid.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.grid_CellFormatting);
//
// lblStatus
//
this.lblStatus.BackColor = System.Drawing.SystemColors.Window;
this.lblStatus.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblStatus.ForeColor = System.Drawing.SystemColors.WindowText;
this.lblStatus.Location = new System.Drawing.Point(0, 0);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(917, 474);
this.lblStatus.TabIndex = 4;
//
// id
//
this.id.DataPropertyName = "Id";
this.id.HeaderText = "id";
this.id.Name = "id";
this.id.ReadOnly = true;
this.id.Visible = false;
//
// customer
//
this.customer.DataPropertyName = "CustomerName";
this.customer.HeaderText = "Customer";
this.customer.Name = "customer";
this.customer.ReadOnly = true;
//
// Serial
//
this.Serial.DataPropertyName = "Serial";
this.Serial.HeaderText = "Service number";
this.Serial.Name = "Serial";
this.Serial.ReadOnly = true;
//
// ProjectName
//
this.ProjectName.DataPropertyName = "ProjectName";
this.ProjectName.HeaderText = "Project";
this.ProjectName.Name = "ProjectName";
this.ProjectName.ReadOnly = true;
//
// ServiceDate
//
this.ServiceDate.DataPropertyName = "ServiceDate";
this.ServiceDate.HeaderText = "Service date";
this.ServiceDate.Name = "ServiceDate";
this.ServiceDate.ReadOnly = true;
//
// status
//
this.status.DataPropertyName = "WorkorderStatusName";
this.status.HeaderText = "Status";
this.status.Name = "status";
this.status.ReadOnly = true;
//
// Linked
//
this.Linked.DataPropertyName = "Linked";
this.Linked.HeaderText = "Linked";
this.Linked.Name = "Linked";
this.Linked.ReadOnly = true;
this.Linked.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Linked.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.Linked.Visible = false;
//
// statuscolor
//
this.statuscolor.DataPropertyName = "Color";
this.statuscolor.HeaderText = "statuscolor";
this.statuscolor.Name = "statuscolor";
this.statuscolor.ReadOnly = true;
this.statuscolor.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.statuscolor.Visible = false;
//
// customerid
//
this.customerid.DataPropertyName = "CustomerId";
this.customerid.HeaderText = "customerid";
this.customerid.Name = "customerid";
this.customerid.ReadOnly = true;
this.customerid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.customerid.Visible = false;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(917, 474);
this.Controls.Add(this.grid);
this.Controls.Add(this.menuStrip1);
this.Controls.Add(this.lblStatus);
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "AyaNova QBI";
this.Load += new System.EventHandler(this.MainForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem WorkOrdersToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem multipleWorkordersPerInvoiceToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem oneWorkOrderPerInvoiceToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem fixProblemsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem refreshWorkOrdersToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem preferencesToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem mapAndImportToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem invoiceDescriptiveTextTemplateToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem refreshCachedDataToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem onlineManualToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.DataGridView grid;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.DataGridViewTextBoxColumn id;
private System.Windows.Forms.DataGridViewTextBoxColumn customer;
private System.Windows.Forms.DataGridViewTextBoxColumn Serial;
private System.Windows.Forms.DataGridViewTextBoxColumn ProjectName;
private System.Windows.Forms.DataGridViewTextBoxColumn ServiceDate;
private System.Windows.Forms.DataGridViewTextBoxColumn status;
private System.Windows.Forms.DataGridViewCheckBoxColumn Linked;
private System.Windows.Forms.DataGridViewTextBoxColumn statuscolor;
private System.Windows.Forms.DataGridViewTextBoxColumn customerid;
}
}