Exemplo n.º 1
0
 public CFormControlesEventos(CViewsManager vm)
 {
     view = (vm.getFirstView("GestorControles.FormControlesEventos") != null)? vm.getFirstView("GestorControles.FormControlesEventos"): vm.AddView("GestorControles.FormControlesEventos");
     FormControlesEventos      = (System.Windows.Forms.Form)view.getCtrl("GestorControles.FormControlesEventos");
     FormControlesEventos_cstr = view.getCtrlStruct("GestorControles.FormControlesEventos");
     PRight                 = (System.Windows.Forms.Panel)view.getCtrl("PRight");
     PRight_cstr            = view.getCtrlStruct("PRight");
     PEventBottom           = (System.Windows.Forms.Panel)view.getCtrl("PEventBottom");
     PEventBottom_cstr      = view.getCtrlStruct("PEventBottom");
     PEventsGrid            = (System.Windows.Forms.Panel)view.getCtrl("PEventsGrid");
     PEventsGrid_cstr       = view.getCtrlStruct("PEventsGrid");
     DG_EventosControl      = (System.Windows.Forms.DataGridView)view.getCtrl("DG_EventosControl");
     DG_EventosControl_cstr = view.getCtrlStruct("DG_EventosControl");
     panel1                 = (System.Windows.Forms.Panel)view.getCtrl("panel1");
     panel1_cstr            = view.getCtrlStruct("panel1");
     BGuardar               = (System.Windows.Forms.Button)view.getCtrl("BGuardar");
     BGuardar_cstr          = view.getCtrlStruct("BGuardar");
     PTopEvent_Consult      = (System.Windows.Forms.Panel)view.getCtrl("PTopEvent_Consult");
     PTopEvent_Consult_cstr = view.getCtrlStruct("PTopEvent_Consult");
     toolStrip1             = (System.Windows.Forms.ToolStrip)view.getCtrl("toolStrip1");
     toolStrip1_cstr        = view.getCtrlStruct("toolStrip1");
     ListaEventos           = (System.Windows.Forms.ListView)view.getCtrl("ListaEventos");
     ListaEventos_cstr      = view.getCtrlStruct("ListaEventos");
     PLeft             = (System.Windows.Forms.Panel)view.getCtrl("PLeft");
     PLeft_cstr        = view.getCtrlStruct("PLeft");
     TV_Controles      = (System.Windows.Forms.TreeView)view.getCtrl("TV_Controles");
     TV_Controles_cstr = view.getCtrlStruct("TV_Controles");
 }
Exemplo n.º 2
0
        /// <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)
        {
            // Release all the plugins.
            CadKit.Plugins.Manager.Instance.release(this);

            lock (_mutex)
            {
                if (disposing && (components != null))
                {
                    components.Dispose();
                    components = null;
                }
                base.Dispose(disposing);

                _deserializeDockContent = null;
                _persistantForms        = null;
                _windowForms            = null;
                _windowMenu             = null;
                _menuStrip   = null;
                _statusStrip = null;
                _toolStrip   = null;
                _dockPanel   = null;
                if (null != _recentFiles)
                {
                    _recentFiles.dereference();
                    _recentFiles = null;
                }
            }
        }
Exemplo n.º 3
0
        private void CalculatePlacementsVertical()
        {
            this.ResetItemPlacements();
            System.Windows.Forms.ToolStrip toolStrip = this.ToolStrip;
            int num = 0;

            if (this.ToolStrip.CanOverflow)
            {
                this.ForwardsWalkingIndex = 0;
                while (this.ForwardsWalkingIndex < this.ToolStrip.Items.Count)
                {
                    ToolStripItem item = toolStrip.Items[this.ForwardsWalkingIndex];
                    if (((IArrangedElement)item).ParticipatesInLayout)
                    {
                        if (item.Overflow == ToolStripItemOverflow.Always)
                        {
                            this.OverflowRequired = true;
                        }
                        if ((item.Overflow != ToolStripItemOverflow.Always) && (item.Placement == ToolStripItemPlacement.None))
                        {
                            Size size = item.AutoSize ? item.GetPreferredSize(this.displayRectangle.Size) : item.Size;
                            int  num2 = this.OverflowRequired ? this.OverflowButtonSize.Height : 0;
                            num += size.Height + item.Margin.Vertical;
                            if (num > (this.displayRectangle.Height - num2))
                            {
                                int num3 = this.SendNextItemToOverflow(num - this.displayRectangle.Height, false);
                                num -= num3;
                            }
                        }
                    }
                    this.ForwardsWalkingIndex++;
                }
            }
            this.PlaceItems();
        }
Exemplo n.º 4
0
 public PluginsController(IVisualEnvironmentCompiler VisualEnvironmentCompiler, System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem, System.Windows.Forms.ToolStrip ToolStrip, IWorkbench workbench)
 {
     this.ToolStripMenuItem         = ToolStripMenuItem;
     this.ToolStrip                 = ToolStrip;
     this.VisualEnvironmentCompiler = VisualEnvironmentCompiler;
     this.workbench                 = workbench;
 }
Exemplo n.º 5
0
 protected override void OnStartUp()
 {
     base.OnStartUp();
     System.Windows.Forms.Control[] coll = ChartControl.Controls.Find("tsrTool", false);
     if (coll.Length > 0)
     {
         strip = (System.Windows.Forms.ToolStrip)coll[0];
         System.Windows.Forms.ToolStripItem[] slider = strip.Items.Find(TBName, false);
         if (slider.Length > 0)
         {
             tsch = (RWT.ZControlHost)slider[0];
             tsch.addRef();
             tbar         = (System.Windows.Forms.TrackBar)tsch.Control;
             tbar.Scroll += new EventHandler(trackBar1_Scroll);
         }
         else
         {
             tbar         = new System.Windows.Forms.TrackBar();
             tbar.Maximum = 255;
             tbar.Minimum = 0;
             tbar.Value   = 255;
             tbar.Scroll += new EventHandler(trackBar1_Scroll);
             tsch         = new RWT.ZControlHost(tbar, TBName);
             tsch.addRef();
             strip.Items.Add(tsch);
         }
     }
 }
Exemplo n.º 6
0
 /// <summary>
 /// Update the menu button.
 /// </summary>
 private void _updateMenuButton()
 {
     try
     {
         // Do not call this.ToolButton! We do not want to make one.
         if (true == this.HasMenuButton)
         {
             System.Windows.Forms.ToolStrip owner = this.MenuButton.Owner;
             if (null != owner)
             {
                 if (true == owner.InvokeRequired)
                 {
                     owner.BeginInvoke(new VoidReturnZeroArgumentsDelegate(this._updateMenuButton));
                 }
                 else
                 {
                     bool state = this._isChecked();
                     this.MenuButton.CheckState = (state) ? System.Windows.Forms.CheckState.Checked : System.Windows.Forms.CheckState.Unchecked;
                     this.MenuButton.Checked    = state;
                     this.MenuButton.Invalidate();
                 }
             }
         }
     }
     catch (System.Exception e)
     {
         System.Console.WriteLine("Error 2674442530: {0}", e.Message);
     }
 }
Exemplo n.º 7
0
 /// <summary>
 /// Add the tool-bar button.
 /// </summary>
 protected void _addToolbarButton(System.Windows.Forms.ToolStrip strip, CadKit.Commands.Command command)
 {
     if (null != strip && null != command)
     {
         strip.Items.Add(command.ToolButton);
     }
 }
Exemplo n.º 8
0
 public CVentanaProgramas(CViewsManager vm)
 {
     view                       = (vm.getFirstView("GestorProgramas.VentanaProgramas") != null)? vm.getFirstView("GestorProgramas.VentanaProgramas"): vm.AddView("GestorProgramas.VentanaProgramas");
     VentanaProgramas           = (System.Windows.Forms.Form)view.getCtrl("GestorProgramas.VentanaProgramas");
     VentanaProgramas_cstr      = view.getCtrlStruct("GestorProgramas.VentanaProgramas");
     PProcesses                 = (System.Windows.Forms.Panel)view.getCtrl("PProcesses");
     PProcesses_cstr            = view.getCtrlStruct("PProcesses");
     PTop                       = (System.Windows.Forms.Panel)view.getCtrl("PTop");
     PTop_cstr                  = view.getCtrlStruct("PTop");
     PListaProcesos             = (System.Windows.Forms.Panel)view.getCtrl("PListaProcesos");
     PListaProcesos_cstr        = view.getCtrlStruct("PListaProcesos");
     ListaProcesos              = (System.Windows.Forms.DataGridView)view.getCtrl("ListaProcesos");
     ListaProcesos_cstr         = view.getCtrlStruct("ListaProcesos");
     contextMenu_LProcesos      = (System.Windows.Forms.ContextMenuStrip)view.getCtrl("contextMenu_LProcesos");
     contextMenu_LProcesos_cstr = view.getCtrlStruct("contextMenu_LProcesos");
     PanelArbolProgramas        = (System.Windows.Forms.Panel)view.getCtrl("PanelArbolProgramas");
     PanelArbolProgramas_cstr   = view.getCtrlStruct("PanelArbolProgramas");
     ArbolProgramas             = (System.Windows.Forms.TreeView)view.getCtrl("ArbolProgramas");
     ArbolProgramas_cstr        = view.getCtrlStruct("ArbolProgramas");
     contextMenu_Programas      = (System.Windows.Forms.ContextMenuStrip)view.getCtrl("contextMenu_Programas");
     contextMenu_Programas_cstr = view.getCtrlStruct("contextMenu_Programas");
     MenuTop                    = (System.Windows.Forms.ToolStrip)view.getCtrl("MenuTop");
     MenuTop_cstr               = view.getCtrlStruct("MenuTop");
     OpenXML_Document           = new o_OpenXML_Document(view);
     Cargar_arbol_recursivo     = new o_Cargar_arbol_recursivo(view);
 }
        /// <summary>
        /// Get Work Item ToolStrip Bar which one permit to perform Refresh ...
        /// </summary>
        /// <param name="_appObject">DTE Application Object</param>
        /// <returns>ToolStrip</returns>
        public static System.Windows.Forms.ToolStrip GetWorkItemToolStripTop(DTE2 _appObject)
        {
            Windows windowItem = _appObject.Windows;

            windowItem.Parent.ActiveWindow.Activate();
            IntPtr        windowIntPtr = Buisness.ManageWindows.GetActiveWindow();
            List <IntPtr> listChild    = Buisness.ManageWindows.GetChildWindows(windowIntPtr);

            System.Windows.Forms.ToolStrip toolWorkItemTop = null;
            foreach (IntPtr handle in listChild)
            {
                System.Windows.Forms.Control tmp = System.Windows.Forms.Control.FromHandle(handle);
                if (tmp is System.Windows.Forms.ToolStrip)
                {
                    if (tmp.Name == "ctlWorkItemsToolstrip")
                    {
                        toolWorkItemTop = (System.Windows.Forms.ToolStrip)System.Windows.Forms.ToolStrip.FromHandle(handle);
                        System.Windows.Forms.Control ctrl          = System.Windows.Forms.Control.FromHandle(handle);
                        System.Windows.Forms.Panel   panelWorkItem = (System.Windows.Forms.Panel)System.Windows.Forms.Panel.FromHandle(ctrl.Parent.Handle);
                        panelWorkItem.Show();
                        // panelWorkItem.GetChildAtPoint(System.Drawing.Point = new System.Drawing.Point())
                    }
                }
                else
                {
                    int handleHEX = handle.ToInt32();
                    System.Diagnostics.Trace.WriteLine("Handle : " + handleHEX.ToString("X8"));
                }
            }
            return(toolWorkItemTop);
        }
Exemplo n.º 10
0
        protected override void OnStartUp()
        {
            base.OnStartUp();

            if (ChartControl == null || Bars == null)
            {
                return;
            }

            brushUp   = new SolidBrush(barColorUp);
            brushDown = new SolidBrush(barColorDown);
            shadowPen = new Pen(shadowColor, shadowWidth);

            if (toggleSwitch)
            {
                System.Windows.Forms.Control[] coll = ChartControl.Controls.Find("tsrTool", false);
                if (coll.Length > 0)
                {
                    hideBtn        = new System.Windows.Forms.ToolStripButton("-HA2-");
                    hideBtn.Click += hideShowHA2;
                    strip          = (System.Windows.Forms.ToolStrip)coll[0];
                    strip.Items.Add(hideBtn);
                    canseebars = true;
                }
            }
        }
Exemplo n.º 11
0
 void SetTheme(System.Windows.Forms.ToolStrip sdm)
 {
     if (sdm.Parent is System.Windows.Forms.ToolStripContainer)
     {
         if (ctheme == GuiTheme.Everett)
         {
             sdm.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
         }
         else if (ctheme == GuiTheme.Office2003)
         {
             sdm.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
         }
         else if (ctheme == GuiTheme.Glossy)
         {
             sdm.Renderer = glossy;
         }
         else
         {
             sdm.Renderer = whidbey;
         }
     }
     else
     {
         if (sdm.Renderer is MediaPlayerRenderer)
         {
             if (ctheme == GuiTheme.Everett)
             {
                 sdm.Renderer = mediaplayerwhidbey;
             }
             else if (ctheme == GuiTheme.Office2003)
             {
                 sdm.Renderer = mediaplayer;
             }
             else if (ctheme == GuiTheme.Glossy)
             {
                 sdm.Renderer = glossy;
             }
             else
             {
                 sdm.Renderer = mediaplayerwhidbey;
             }
         }
         else if (ctheme == GuiTheme.Everett)
         {
             sdm.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
         }
         else if (ctheme == GuiTheme.Office2003)
         {
             sdm.Renderer = square;
         }
         else if (ctheme == GuiTheme.Glossy)
         {
             sdm.Renderer = glossysquare;
         }
         else
         {
             sdm.Renderer = whidbeysquare;
         }
     }
 }
Exemplo n.º 12
0
 public PluginsController(IVisualEnvironmentCompiler VisualEnvironmentCompiler,System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem, System.Windows.Forms.ToolStrip ToolStrip, IWorkbench workbench)
 {
     this.ToolStripMenuItem = ToolStripMenuItem;
     this.ToolStrip = ToolStrip;
     this.VisualEnvironmentCompiler = VisualEnvironmentCompiler;
     this.workbench = workbench;
 }
Exemplo n.º 13
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( TreeViewer ) );
			this.tsMain = new System.Windows.Forms.ToolStrip();
			this.tsMain.SuspendLayout();
			this.SuspendLayout();
			//
			// tsMain
			//
			this.tsMain.Location = new System.Drawing.Point( 0, 0 );
			this.tsMain.AutoSize = false;
			this.tsMain.Name = "tsMain";
			this.tsMain.Size = new System.Drawing.Size( 203, 0 );
			this.tsMain.TabIndex = 0;
			// 
			// BrowserControl
			// 
			this.Controls.Add( this.tsMain );
			this.Name = "BrowserControl";
			this.Size = new System.Drawing.Size( 203, DEFAULT_HEIGHT );
			this.tsMain.ResumeLayout( false );
			this.tsMain.PerformLayout();
			this.ResumeLayout( false );
			this.PerformLayout();

		}
        /// <summary>
        /// Get ToolStrip Bar on view Listing Work Item
        /// </summary>
        /// <param name="_appObject">Application Object DTE </param>
        /// <returns>ToolStrip of Work Item Window</returns>
        public static System.Windows.Forms.ToolStrip GetWorkItemToolStripLeft(DTE2 _appObject)
        {
            Windows windowItem = _appObject.Windows;

            windowItem.Parent.ActiveWindow.Activate();
            IntPtr        windowIntPtr = Buisness.ManageWindows.GetActiveWindow();
            List <IntPtr> listChild    = Buisness.ManageWindows.GetChildWindows(windowIntPtr);

            System.Windows.Forms.ToolStrip toolWorkItemLeft = null;

            foreach (IntPtr handle in listChild)
            {
                System.Windows.Forms.Control tmp = System.Windows.Forms.Control.FromHandle(handle);
                //Check if is a control is a ToolStrip and if is the good one
                if (tmp is System.Windows.Forms.ToolStrip)
                {
                    System.Diagnostics.Trace.WriteLine(" ToolStrip Looking for :  " + tmp.Name + " Handle : " + handle);
                    if (tmp.Name == "toolStripChannelSelector")
                    {
                        toolWorkItemLeft = (System.Windows.Forms.ToolStrip)System.Windows.Forms.ToolStrip.FromHandle(handle);
                        //   break;
                    }
                }
            }
            return(toolWorkItemLeft);
        }
Exemplo n.º 15
0
 /// <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.ToolStrip       m_toolStrip;
     System.Windows.Forms.ToolStripButton m_tsbClear;
     this.m_rtbLogBox = new System.Windows.Forms.RichTextBox();
     m_toolStrip      = new System.Windows.Forms.ToolStrip();
     m_tsbClear       = new System.Windows.Forms.ToolStripButton();
     m_toolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // m_toolStrip
     //
     m_toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         m_tsbClear
     });
     m_toolStrip.Location = new System.Drawing.Point(0, 0);
     m_toolStrip.Name     = "m_toolStrip";
     m_toolStrip.Size     = new System.Drawing.Size(218, 25);
     m_toolStrip.TabIndex = 0;
     //
     // m_tsbClear
     //
     m_tsbClear.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbClear.Image                 = global::DGD.HubGovernor.Properties.Resources.clear_16;
     m_tsbClear.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbClear.Name   = "m_tsbClear";
     m_tsbClear.Size   = new System.Drawing.Size(23, 22);
     m_tsbClear.Text   = "Effacer tout";
     m_tsbClear.Click += new System.EventHandler(this.Clear_Click);
     //
     // m_rtbLogBox
     //
     this.m_rtbLogBox.BackColor = System.Drawing.SystemColors.Window;
     this.m_rtbLogBox.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.m_rtbLogBox.Font      = new System.Drawing.Font("Consolas", 7.25F);
     this.m_rtbLogBox.Location  = new System.Drawing.Point(0, 25);
     this.m_rtbLogBox.Name      = "m_rtbLogBox";
     this.m_rtbLogBox.ReadOnly  = true;
     this.m_rtbLogBox.Size      = new System.Drawing.Size(218, 237);
     this.m_rtbLogBox.TabIndex  = 1;
     this.m_rtbLogBox.Text      = "";
     //
     // LogWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(218, 262);
     this.Controls.Add(this.m_rtbLogBox);
     this.Controls.Add(m_toolStrip);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MaximizeBox     = false;
     this.Name            = "LogWindow";
     this.ShowInTaskbar   = false;
     this.Text            = "Journal";
     m_toolStrip.ResumeLayout(false);
     m_toolStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 public ToolStripRenderEventArgs(System.Drawing.Graphics g, System.Windows.Forms.ToolStrip toolStrip)
 {
     this.affectedBounds = Rectangle.Empty;
     this.backColor = Color.Empty;
     this.toolStrip = toolStrip;
     this.graphics = g;
     this.affectedBounds = new Rectangle(Point.Empty, toolStrip.Size);
 }
Exemplo n.º 17
0
 public ToolStripRenderEventArgs(System.Drawing.Graphics g, System.Windows.Forms.ToolStrip toolStrip)
 {
     this.affectedBounds = Rectangle.Empty;
     this.backColor      = Color.Empty;
     this.toolStrip      = toolStrip;
     this.graphics       = g;
     this.affectedBounds = new Rectangle(Point.Empty, toolStrip.Size);
 }
Exemplo n.º 18
0
 private void InitializeComponent()
 {
     this.tspCreate = new System.Windows.Forms.ToolStrip();
     this.lblQuery  = new System.Windows.Forms.ToolStripLabel();
     this.lblResult = new System.Windows.Forms.ToolStripLabel();
     this.lblSpacer = new System.Windows.Forms.ToolStripLabel();
     this.tspCreate.SuspendLayout();
     this.SuspendLayout();
     //
     // tspCreate
     //
     this.tspCreate.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.tspCreate.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tspCreate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.lblQuery,
         this.lblResult,
         this.lblSpacer
     });
     this.tspCreate.Location = new System.Drawing.Point(0, 261);
     this.tspCreate.Name     = "tspCreate";
     this.tspCreate.Size     = new System.Drawing.Size(467, 25);
     this.tspCreate.TabIndex = 64;
     this.tspCreate.Text     = "toolStrip1";
     //
     // lblQuery
     //
     this.lblQuery.Font      = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblQuery.ForeColor = System.Drawing.Color.Maroon;
     this.lblQuery.Name      = "lblQuery";
     this.lblQuery.Size      = new System.Drawing.Size(51, 22);
     this.lblQuery.Text      = "  Query:";
     //
     // lblResult
     //
     this.lblResult.Font      = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblResult.ForeColor = System.Drawing.Color.Maroon;
     this.lblResult.Name      = "lblResult";
     this.lblResult.Size      = new System.Drawing.Size(41, 22);
     this.lblResult.Text      = "Result";
     //
     // lblSpacer
     //
     this.lblSpacer.Name = "lblSpacer";
     this.lblSpacer.Size = new System.Drawing.Size(0, 22);
     //
     // EarningDeductionEmployeeSearchList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(467, 286);
     this.Controls.Add(this.tspCreate);
     this.Name = "EarningDeductionEmployeeSearchList";
     this.Text = "  Employee List";
     this.Controls.SetChildIndex(this.tspCreate, 0);
     this.tspCreate.ResumeLayout(false);
     this.tspCreate.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGrid));
     this.dgvResults = new System.Windows.Forms.DataGridView();
     this.tbrMain = new System.Windows.Forms.ToolStrip();
     this.tbrMainClose = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).BeginInit();
     this.tbrMain.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvResults
     //
     this.dgvResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvResults.Location = new System.Drawing.Point(5, 45);
     this.dgvResults.Name = "dgvResults";
     this.dgvResults.RowTemplate.Height = 24;
     this.dgvResults.Size = new System.Drawing.Size(998, 388);
     this.dgvResults.TabIndex = 0;
     //
     // tbrMain
     //
     this.tbrMain.BackColor = System.Drawing.Color.Silver;
     this.tbrMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tbrMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tbrMainClose});
     this.tbrMain.Location = new System.Drawing.Point(0, 0);
     this.tbrMain.Name = "tbrMain";
     this.tbrMain.Size = new System.Drawing.Size(1013, 38);
     this.tbrMain.TabIndex = 45;
     this.tbrMain.Text = "toolStrip1";
     //
     // tbrMainClose
     //
     this.tbrMainClose.Image = ((System.Drawing.Image)(resources.GetObject("tbrMainClose.Image")));
     this.tbrMainClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tbrMainClose.Name = "tbrMainClose";
     this.tbrMainClose.Size = new System.Drawing.Size(40, 35);
     this.tbrMainClose.Text = "Close";
     this.tbrMainClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tbrMainClose.Click += new System.EventHandler(this.tbrMainClose_Click);
     //
     // frmGrid
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 443);
     this.Controls.Add(this.tbrMain);
     this.Controls.Add(this.dgvResults);
     this.MinimizeBox = false;
     this.Name = "frmGrid";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Display results grid";
     ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).EndInit();
     this.tbrMain.ResumeLayout(false);
     this.tbrMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBankDoc));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tsPO = new System.Windows.Forms.ToolStripButton();
     this.dgvSelectBankDoc = new System.Windows.Forms.DataGridView();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvSelectBankDoc)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsPO});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(420, 39);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // tsPO
     //
     this.tsPO.Image = ((System.Drawing.Image)(resources.GetObject("tsPO.Image")));
     this.tsPO.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsPO.Name = "tsPO";
     this.tsPO.Size = new System.Drawing.Size(99, 36);
     this.tsPO.Text = "Enter-เลือก";
     //
     // dgvSelectBankDoc
     //
     this.dgvSelectBankDoc.AllowUserToAddRows = false;
     this.dgvSelectBankDoc.AllowUserToDeleteRows = false;
     this.dgvSelectBankDoc.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvSelectBankDoc.Location = new System.Drawing.Point(0, 39);
     this.dgvSelectBankDoc.Name = "dgvSelectBankDoc";
     this.dgvSelectBankDoc.ReadOnly = true;
     this.dgvSelectBankDoc.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvSelectBankDoc.Size = new System.Drawing.Size(420, 235);
     this.dgvSelectBankDoc.TabIndex = 11;
     //
     // frmBankDoc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(420, 271);
     this.Controls.Add(this.dgvSelectBankDoc);
     this.Controls.Add(this.toolStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmBankDoc";
     this.Text = "frmBankDoc";
     this.Load += new System.EventHandler(this.frmBankDoc_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvSelectBankDoc)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido de este método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_DeudaProveedores));
     this.toolStripEvents = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonPrint = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonClose = new System.Windows.Forms.ToolStripButton();
     this.toolStripEvents.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripEvents
     //
     this.toolStripEvents.AutoSize = false;
     this.toolStripEvents.BackColor = System.Drawing.SystemColors.Control;
     this.toolStripEvents.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.toolStripEvents.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButtonPrint,
     this.toolStripButtonClose});
     this.toolStripEvents.Location = new System.Drawing.Point(0, 100);
     this.toolStripEvents.Name = "toolStripEvents";
     this.toolStripEvents.Size = new System.Drawing.Size(451, 50);
     this.toolStripEvents.TabIndex = 7;
     this.toolStripEvents.Text = "toolStrip1";
     //
     // toolStripButtonPrint
     //
     this.toolStripButtonPrint.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPrint.Image")));
     this.toolStripButtonPrint.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButtonPrint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPrint.Name = "toolStripButtonPrint";
     this.toolStripButtonPrint.Size = new System.Drawing.Size(105, 47);
     this.toolStripButtonPrint.Text = "Imprimir";
     this.toolStripButtonPrint.Click += new System.EventHandler(this.toolStripButtonPrint_Click);
     //
     // toolStripButtonClose
     //
     this.toolStripButtonClose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripButtonClose.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonClose.Image")));
     this.toolStripButtonClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButtonClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonClose.Name = "toolStripButtonClose";
     this.toolStripButtonClose.Size = new System.Drawing.Size(83, 47);
     this.toolStripButtonClose.Text = "Cerrar";
     this.toolStripButtonClose.ToolTipText = "Cerrar";
     this.toolStripButtonClose.Click += new System.EventHandler(this.toolStripButtonClose_Click);
     //
     // Frm_DeudaProveedores
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize = new System.Drawing.Size(451, 150);
     this.ControlBox = false;
     this.Controls.Add(this.toolStripEvents);
     this.Name = "Frm_DeudaProveedores";
     this.Text = "Deuda Proveedores";
     this.Load += new System.EventHandler(this.Frm_DeudaProveedores_Load);
     this.toolStripEvents.ResumeLayout(false);
     this.toolStripEvents.PerformLayout();
     this.ResumeLayout(false);
 }
 public ToolStripRenderEventArgs(System.Drawing.Graphics g, System.Windows.Forms.ToolStrip toolStrip, Rectangle affectedBounds, Color backColor)
 {
     this.affectedBounds = Rectangle.Empty;
     this.backColor = Color.Empty;
     this.toolStrip = toolStrip;
     this.affectedBounds = affectedBounds;
     this.graphics = g;
     this.backColor = backColor;
 }
Exemplo n.º 23
0
        public static void ConfigureControl_ToolStrip(System.Windows.Forms.ToolStrip pControl)
        {
            //if (pControl.FindForm().Name.Equals("frmMenu"))
            //{
            //    pControl.FindForm().Height = 46;
            //    pControl.BringToFront();
            //}

            if (pControl.Tag == null || (pControl.Tag != null && pControl.Tag != "SemRenderizacao"))
            {
                pControl.AllowDrop        = false;
                pControl.AllowMerge       = false;
                pControl.AllowItemReorder = false;
                pControl.GripStyle        = System.Windows.Forms.ToolStripGripStyle.Hidden;

                pControl.Renderer = new MenuRenderer();
                //pToolStrip.RenderMode = ToolStripRenderMode.Custom;

                pControl.Font = new System.Drawing.Font("Tahoma", 8.25F);

                //pControl.Dock = System.Windows.Forms.DockStyle.None;

                //pControl.Width = pControl.FindForm().Width + 4;

                //pControl.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right | System.Windows.Forms.AnchorStyles.Left;

                //pControl.Location = new System.Drawing.Point(StyleSettings.LarguraDaBorda_Form, StyleSettings.LarguraDaBorda_Form);

                foreach (System.Windows.Forms.ToolStripItem lItem in pControl.Items)
                {
                    lItem.ForeColor = StyleSettings.Cor_Txt_MenuItems;

                    if (lItem.GetType() == typeof(System.Windows.Forms.ToolStripDropDownButton))
                    {
                        System.Windows.Forms.ToolStripDropDownButton lButton = (System.Windows.Forms.ToolStripDropDownButton)lItem;

                        if (lButton.DropDownItems != null)
                        {
                            try
                            {
                                for (int a = 0; a < lButton.DropDownItems.Count; a++)
                                {
                                    if (lButton.DropDownItems[a].GetType() == typeof(System.Windows.Forms.ToolStripMenuItem))
                                    {
                                        ConfigureControl_ToolStripMenuItem((System.Windows.Forms.ToolStripMenuItem)lButton.DropDownItems[a]);
                                    }
                                }
                            }
                            catch { }   //separators dão exception...
                        }
                    }
                }

                //TODO: Review... new implementation is needed
                //pToolStrip.MouseDown += new MouseEventHandler(((frmBase)pToolStrip.FindForm()).frmBase_MouseDown);
            }
        }
 /// <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.ToolStrip toolStrip;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelToolStrip));
     this.exportSelectedModelButton_ = new System.Windows.Forms.ToolStripButton();
     this.exportAllModelsButton_     = new System.Windows.Forms.ToolStripButton();
     toolStrip = new System.Windows.Forms.ToolStrip();
     toolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip
     //
     toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.exportSelectedModelButton_,
         this.exportAllModelsButton_
     });
     toolStrip.Location = new System.Drawing.Point(0, 0);
     toolStrip.Name     = "toolStrip";
     toolStrip.Size     = new System.Drawing.Size(451, 25);
     toolStrip.Stretch  = true;
     toolStrip.TabIndex = 0;
     toolStrip.Text     = "toolStrip1";
     //
     // exportSelectedModelButton_
     //
     this.exportSelectedModelButton_.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.exportSelectedModelButton_.Enabled               = false;
     this.exportSelectedModelButton_.Image                 = ((System.Drawing.Image)(resources.GetObject("exportSelectedModelButton_.Image")));
     this.exportSelectedModelButton_.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.exportSelectedModelButton_.Name        = "exportSelectedModelButton_";
     this.exportSelectedModelButton_.Size        = new System.Drawing.Size(23, 22);
     this.exportSelectedModelButton_.Text        = "Export";
     this.exportSelectedModelButton_.ToolTipText = "Export Selected Model";
     //
     // exportAllModelsButton_
     //
     this.exportAllModelsButton_.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.exportAllModelsButton_.Enabled               = false;
     this.exportAllModelsButton_.Image                 = ((System.Drawing.Image)(resources.GetObject("exportAllModelsButton_.Image")));
     this.exportAllModelsButton_.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.exportAllModelsButton_.Name        = "exportAllModelsButton_";
     this.exportAllModelsButton_.Size        = new System.Drawing.Size(23, 22);
     this.exportAllModelsButton_.Text        = "Export All";
     this.exportAllModelsButton_.ToolTipText = "Export All Models";
     //
     // UserControl1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(toolStrip);
     this.Name = "UserControl1";
     this.Size = new System.Drawing.Size(451, 25);
     toolStrip.ResumeLayout(false);
     toolStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 25
0
 public ToolStripRenderEventArgs(System.Drawing.Graphics g, System.Windows.Forms.ToolStrip toolStrip, Rectangle affectedBounds, Color backColor)
 {
     this.affectedBounds = Rectangle.Empty;
     this.backColor      = Color.Empty;
     this.toolStrip      = toolStrip;
     this.affectedBounds = affectedBounds;
     this.graphics       = g;
     this.backColor      = backColor;
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NetworkInterfaceSelector));
     this.MyToolStrip = new System.Windows.Forms.ToolStrip();
     this.ScanButton = new System.Windows.Forms.ToolStripButton();
     this.NetworkInterfaceDropDown = new System.Windows.Forms.ToolStripDropDownButton();
     this.MyToolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // MyToolStrip
     //
     this.MyToolStrip.Dock = System.Windows.Forms.DockStyle.Fill;
     this.MyToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.MyToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ScanButton,
     this.NetworkInterfaceDropDown});
     this.MyToolStrip.Location = new System.Drawing.Point(0, 0);
     this.MyToolStrip.Name = "MyToolStrip";
     this.MyToolStrip.Size = new System.Drawing.Size(212, 25);
     this.MyToolStrip.TabIndex = 0;
     this.MyToolStrip.Text = "toolStrip1";
     //
     // ScanButton
     //
     this.ScanButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.ScanButton.Image = global::inSSIDer.Properties.Resources.wifiPlay;
     this.ScanButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.ScanButton.Name = "ScanButton";
     this.ScanButton.Size = new System.Drawing.Size(51, 22);
     this.ScanButton.Text = "Start";
     this.ScanButton.Click += new System.EventHandler(this.ScanButton_Click);
     //
     // NetworkInterfaceDropDown
     //
     this.NetworkInterfaceDropDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.NetworkInterfaceDropDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.NetworkInterfaceDropDown.Image = ((System.Drawing.Image)(resources.GetObject("NetworkInterfaceDropDown.Image")));
     this.NetworkInterfaceDropDown.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.NetworkInterfaceDropDown.Name = "NetworkInterfaceDropDown";
     this.NetworkInterfaceDropDown.Size = new System.Drawing.Size(127, 22);
     this.NetworkInterfaceDropDown.Text = "Select Wi-Fi Adapter";
     this.NetworkInterfaceDropDown.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.NetworkInterfaceDropDown_DropDownItemClicked);
     //
     // NetworkInterfaceSelector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.Controls.Add(this.MyToolStrip);
     this.Name = "NetworkInterfaceSelector";
     this.Size = new System.Drawing.Size(212, 25);
     this.MyToolStrip.ResumeLayout(false);
     this.MyToolStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 27
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources =
         new System.ComponentModel.ComponentResourceManager(typeof(UltraVNCSC));
     this.tsMain = new System.Windows.Forms.ToolStrip();
     this.Load += new System.EventHandler(this.UltraVNCSC_Load);
     this.btnDisconnect = new System.Windows.Forms.ToolStripButton();
     this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
     this.pnlContainer = new System.Windows.Forms.Panel();
     this.tsMain.SuspendLayout();
     this.SuspendLayout();
     //
     //tsMain
     //
     this.tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnDisconnect });
     this.tsMain.Location = new System.Drawing.Point(0, 0);
     this.tsMain.Name = "tsMain";
     this.tsMain.Size = new System.Drawing.Size(446, 25);
     this.tsMain.TabIndex = 0;
     this.tsMain.Text = "ToolStrip1";
     //
     //btnDisconnect
     //
     this.btnDisconnect.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnDisconnect.Image = (System.Drawing.Image)(resources.GetObject("btnDisconnect.Image"));
     this.btnDisconnect.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDisconnect.Name = "btnDisconnect";
     this.btnDisconnect.Size = new System.Drawing.Size(63, 22);
     this.btnDisconnect.Text = "Disconnect";
     //
     //pnlContainer
     //
     this.pnlContainer.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.pnlContainer.Location = new System.Drawing.Point(0, 27);
     this.pnlContainer.Name = "pnlContainer";
     this.pnlContainer.Size = new System.Drawing.Size(446, 335);
     this.pnlContainer.TabIndex = 1;
     //
     //UltraVNCSC
     //
     this.ClientSize = new System.Drawing.Size(446, 362);
     this.Controls.Add(this.pnlContainer);
     this.Controls.Add(this.tsMain);
     this.Icon = global::My.Resources.Resources.UVNC_SC_Icon;
     this.Name = "UltraVNCSC";
     this.TabText = "UltraVNC SC";
     this.Text = "UltraVNC SC";
     this.tsMain.ResumeLayout(false);
     this.tsMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UltraVNCWindow));
     this.tsMain               = new System.Windows.Forms.ToolStrip();
     this.Load                += new System.EventHandler(UltraVNCSC_Load);
     this.btnDisconnect        = new System.Windows.Forms.ToolStripButton();
     this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
     this.pnlContainer         = new System.Windows.Forms.Panel();
     this.tsMain.SuspendLayout();
     this.SuspendLayout();
     //
     //tsMain
     //
     this.tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnDisconnect });
     this.tsMain.Location = new System.Drawing.Point(0, 0);
     this.tsMain.Name     = "tsMain";
     this.tsMain.Size     = new System.Drawing.Size(446, 25);
     this.tsMain.TabIndex = 0;
     this.tsMain.Text     = "ToolStrip1";
     //
     //btnDisconnect
     //
     this.btnDisconnect.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnDisconnect.Image                 = (System.Drawing.Image)(resources.GetObject("btnDisconnect.Image"));
     this.btnDisconnect.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDisconnect.Name = "btnDisconnect";
     this.btnDisconnect.Size = new System.Drawing.Size(63, 22);
     this.btnDisconnect.Text = "Disconnect";
     //
     //pnlContainer
     //
     this.pnlContainer.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom
                                | System.Windows.Forms.AnchorStyles.Left
                                | System.Windows.Forms.AnchorStyles.Right;
     this.pnlContainer.Location = new System.Drawing.Point(0, 27);
     this.pnlContainer.Name     = "pnlContainer";
     this.pnlContainer.Size     = new System.Drawing.Size(446, 335);
     this.pnlContainer.TabIndex = 1;
     //
     //UltraVNCSC
     //
     this.ClientSize = new System.Drawing.Size(446, 362);
     this.Controls.Add(this.pnlContainer);
     this.Controls.Add(this.tsMain);
     this.Icon    = Resources.UVNC_SC_Icon;
     this.Name    = "UltraVNCSC";
     this.TabText = "UltraVNC SC";
     this.Text    = "UltraVNC SC";
     this.tsMain.ResumeLayout(false);
     this.tsMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 29
0
 private void ResetItemPlacements()
 {
     System.Windows.Forms.ToolStrip toolStrip = this.ToolStrip;
     for (int i = 0; i < toolStrip.Items.Count; i++)
     {
         if (toolStrip.Items[i].Placement == ToolStripItemPlacement.Overflow)
         {
             toolStrip.Items[i].ParentInternal = null;
         }
         toolStrip.Items[i].SetPlacement(ToolStripItemPlacement.None);
     }
 }
Exemplo n.º 30
0
 protected override void OnTermination()
 {
     if ((strip != null) && (tsch != null))
     {
         if (tsch.removeRef() <= 0)
         {
             strip.Items.Remove(tsch);
         }
         strip = null;
         tsch  = null;
     }
 }
Exemplo n.º 31
0
 /// <summary>
 /// Deselects toolstrip buttons in the specified toolstrip to address a bug in WinForms
 /// </summary>
 /// <param name="strip">ToolStrip to deselect buttons on</param>
 public static void DeselectButtons(this System.Windows.Forms.ToolStrip strip)
 {
     if (!Program.RunningOnMono)
     {
         typeof(System.Windows.Forms.ToolStrip).InvokeMember(
             "ClearAllSelections",
             System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.InvokeMethod,
             null, strip, null);
         //.GetMethod("ClearAllSelections", BindingFlags.NonPublic | BindingFlags.Instance);
         //method.Invoke(yourToolStripName, null);
     }
 }
Exemplo n.º 32
0
        public MapEditor(MapFile file)
            : base(file)
        {
            map = file;
            this.tileset = map.TilesetFile[map.TilesetID];

            mapPanel = new MapPanel(map.Layers, tileset);
            mapPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Controls.Add(mapPanel);
            this.KeyPreview = true;
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(MapEditor_KeyDown);

            this.mapPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(mapPanel_MouseDown);
            this.mapPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(mapPanel_MouseMove);

            tilePanel = new TilePanel(tileset);
            tilePanel.TileSelected += new EventHandler<TilePanel.TileSelectedArgs>(tilePanel_TileSelected);
            tilePanel.Dock = System.Windows.Forms.DockStyle.Fill;

            toolstrip = new System.Windows.Forms.ToolStrip();
            toolstrip.Dock = System.Windows.Forms.DockStyle.Top;
            toolstrip.Stretch = true;
            toolstrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;

            buttonSelected = new System.Windows.Forms.ToolStripButton();
            buttonSelected.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.SizeToFit;
            buttonSelected.AutoSize = true;
            buttonSelected.Image = tileset[0];
            buttonSelected.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;

            toolstrip.Items.Add(buttonSelected);
            toolstrip.Items.Add(new System.Windows.Forms.ToolStripSeparator());

            buttonLayers = new List<System.Windows.Forms.ToolStripButton>();
            for (int i = 0; i < this.map.Layers.Count; i++)
            {
                var laybtn = new System.Windows.Forms.ToolStripButton();
                laybtn.Text = string.Format("{0}", i + 1);
                laybtn.Tag = i;
                laybtn.Click += new EventHandler(laybtn_Click);
                if (this.map.Layers[i].Type == MapLayerType.HalfBlockShadow)
                {
                    laybtn.Text = "阴影";
                }
                toolstrip.Items.Add(laybtn);
                buttonLayers.Add(laybtn);
            }

            toolboxPanel = new System.Windows.Forms.Panel();
            this.toolboxPanel.Controls.Add(tilePanel);
            this.toolboxPanel.Controls.Add(toolstrip);
        }
Exemplo n.º 33
0
        public MapEditor(MapFile file)
            : base(file)
        {
            map          = file;
            this.tileset = map.TilesetFile[map.TilesetID];

            mapPanel      = new MapPanel(map.Layers, tileset);
            mapPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Controls.Add(mapPanel);
            this.KeyPreview = true;
            this.KeyDown   += new System.Windows.Forms.KeyEventHandler(MapEditor_KeyDown);

            this.mapPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(mapPanel_MouseDown);
            this.mapPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(mapPanel_MouseMove);

            tilePanel = new TilePanel(tileset);
            tilePanel.TileSelected += new EventHandler <TilePanel.TileSelectedArgs>(tilePanel_TileSelected);
            tilePanel.Dock          = System.Windows.Forms.DockStyle.Fill;

            toolstrip           = new System.Windows.Forms.ToolStrip();
            toolstrip.Dock      = System.Windows.Forms.DockStyle.Top;
            toolstrip.Stretch   = true;
            toolstrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;

            buttonSelected = new System.Windows.Forms.ToolStripButton();
            buttonSelected.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.SizeToFit;
            buttonSelected.AutoSize     = true;
            buttonSelected.Image        = tileset[0];
            buttonSelected.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;

            toolstrip.Items.Add(buttonSelected);
            toolstrip.Items.Add(new System.Windows.Forms.ToolStripSeparator());

            buttonLayers = new List <System.Windows.Forms.ToolStripButton>();
            for (int i = 0; i < this.map.Layers.Count; i++)
            {
                var laybtn = new System.Windows.Forms.ToolStripButton();
                laybtn.Text   = string.Format("{0}", i + 1);
                laybtn.Tag    = i;
                laybtn.Click += new EventHandler(laybtn_Click);
                if (this.map.Layers[i].Type == MapLayerType.HalfBlockShadow)
                {
                    laybtn.Text = "阴影";
                }
                toolstrip.Items.Add(laybtn);
                buttonLayers.Add(laybtn);
            }

            toolboxPanel = new System.Windows.Forms.Panel();
            this.toolboxPanel.Controls.Add(tilePanel);
            this.toolboxPanel.Controls.Add(toolstrip);
        }
Exemplo n.º 34
0
 public void WdEnable(bool flg)
 {
     System.Windows.Forms.ToolStrip toolStrip = this.GetCurrentParent();
     if (toolStrip.InvokeRequired)
     {
         WdEnableCallback d = new WdEnableCallback(WdEnable);
         toolStrip.Invoke(d, new object[] { flg });
     }
     else
     {
         this.Enabled = flg;
     }
 }
Exemplo n.º 35
0
 public void WdSetSize(Size size)               // Since SelectionStart exists, it was referred to as WdSelectionStart.
 {
     System.Windows.Forms.ToolStrip toolStrip = this.GetCurrentParent();
     if (toolStrip.InvokeRequired)
     {
         WdSetSizeCallback d = new WdSetSizeCallback(WdSetSize);
         toolStrip.Invoke(d, new object[] { size });
     }
     else
     {
         this.Size = size;
     }
 }
Exemplo n.º 36
0
 protected override void OnTermination()
 {
     if ((strip != null) && (btn != null))
     {
         if (btn.removeRef() <= 0)
         {
             strip.Items.Remove(btn);
             btn.Dispose();
         }
         strip = null;
         btn   = null;
     }
     base.OnTermination();
 }
Exemplo n.º 37
0
 protected override void OnTermination()
 {
     base.OnTermination();
     if (paintBrush != null)
     {
         paintBrush.Dispose();
     }
     if (centerFormat != null)
     {
         centerFormat.Dispose();
     }
     if (leftFormat != null)
     {
         leftFormat.Dispose();
     }
     if (rightFormat != null)
     {
         rightFormat.Dispose();
     }
     if (backBrush != null)
     {
         backBrush.Dispose();
     }
     if (linpen != null)
     {
         linpen.Dispose();
     }
     if (totalsFont != null)
     {
         totalsFont.Dispose();
     }
     if (deltaFont != null)
     {
         deltaFont.Dispose();
     }
     if ((strip != null) && (button != null))
     {
         strip.Items.Remove(button);
         button.Dispose();
     }
     if ((strip != null) && (button2 != null))
     {
         strip.Items.Remove(button2);
         button2.Dispose();
     }
     strip   = null;
     button  = null;
     button2 = null;
     base.OnTermination();
 }
Exemplo n.º 38
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.menuStrip = new System.Windows.Forms.MenuStrip();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.openWindowListPane1 = new NBooks.Views.OpenWindowListPane();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip.Location = new System.Drawing.Point(0, 0);
     this.menuStrip.Name = "menuStrip1";
     this.menuStrip.Size = new System.Drawing.Size(784, 24);
     this.menuStrip.TabIndex = 0;
     this.menuStrip.Text = "menuStrip1";
     //
     // toolStrip1
     //
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(784, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // openWindowListPane1
     //
     this.openWindowListPane1.Dock = System.Windows.Forms.DockStyle.Left;
     this.openWindowListPane1.Location = new System.Drawing.Point(0, 49);
     this.openWindowListPane1.Name = "openWindowListPane1";
     this.openWindowListPane1.Size = new System.Drawing.Size(150, 513);
     this.openWindowListPane1.TabIndex = 3;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 562);
     this.Controls.Add(this.openWindowListPane1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.menuStrip;
     this.Name = "MainForm";
     this.Text = "MainForm";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 39
0
 private static void createFormsTool(System.Windows.Forms.ToolStrip ts, string tsbText, System.Drawing.Image tsbImage, string tsbName, ToolStripClickDelegate tsbClickEvent)
 {
     System.Windows.Forms.ToolStripButton item = new System.Windows.Forms.ToolStripButton();
     item.Text                  = tsbText;
     item.Size                  = new System.Drawing.Size(83, 35);
     item.Image                 = tsbImage; // global::FYYK.UI.Forms.Properties.Resources.保存_32;
     item.ImageScaling          = System.Windows.Forms.ToolStripItemImageScaling.None;
     item.ImageTransparentColor = System.Drawing.Color.Magenta;
     item.Name                  = tsbName;// "tsbtnSave";
     item.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     //item.CheckOnClick = true;
     item.Click += new System.EventHandler(tsbClickEvent);
     ts.Items.Add(item);
     System.Windows.Forms.ToolStripSeparator tss = new System.Windows.Forms.ToolStripSeparator();
     ts.Items.Add(tss);
 }
Exemplo n.º 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(640, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Black;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(50, 22);
     this.toolStripButton1.Text = "Refresh";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // DisplayView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(640, 460);
     this.Controls.Add(this.toolStrip1);
     this.Name = "DisplayView";
     this.Text = "Display View";
     this.Load += new System.EventHandler(this.DisplayView_Load);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.DisplayForm_Paint);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewResults = new System.Windows.Forms.ListView();
     this.columnHeaderTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineText = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label_Statistics = new System.Windows.Forms.Label();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.textBoxSearch = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox_Scope = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripDropDownButton_Options = new System.Windows.Forms.ToolStripDropDownButton();
     this.toolStripMenuItem_RegExp = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_MatchCase = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WholeWord = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WordStart = new System.Windows.Forms.ToolStripMenuItem();
     this.buttonSearch = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewResults
     //
     this.listViewResults.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.listViewResults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderTitle,
     this.columnHeaderLineNumber,
     this.columnHeaderLineText});
     this.listViewResults.FullRowSelect = true;
     this.listViewResults.GridLines = true;
     this.listViewResults.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewResults.Location = new System.Drawing.Point(3, 28);
     this.listViewResults.MultiSelect = false;
     this.listViewResults.Name = "listViewResults";
     this.listViewResults.Size = new System.Drawing.Size(530, 147);
     this.listViewResults.TabIndex = 5;
     this.listViewResults.UseCompatibleStateImageBehavior = false;
     this.listViewResults.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderTitle
     //
     this.columnHeaderTitle.Text = "Script";
     this.columnHeaderTitle.Width = 147;
     //
     // columnHeaderLineNumber
     //
     this.columnHeaderLineNumber.Text = "Line #";
     this.columnHeaderLineNumber.Width = 73;
     //
     // columnHeaderLineText
     //
     this.columnHeaderLineText.Text = "Text";
     this.columnHeaderLineText.Width = 278;
     //
     // label_Statistics
     //
     this.label_Statistics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label_Statistics.AutoSize = true;
     this.label_Statistics.Location = new System.Drawing.Point(3, 178);
     this.label_Statistics.Name = "label_Statistics";
     this.label_Statistics.Size = new System.Drawing.Size(0, 13);
     this.label_Statistics.TabIndex = 10;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 22);
     this.toolStripLabel1.Text = "Find:";
     //
     // textBoxSearch
     //
     this.textBoxSearch.Name = "textBoxSearch";
     this.textBoxSearch.Size = new System.Drawing.Size(100, 25);
     this.textBoxSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBox_SearchString_KeyDown);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel3.Text = "In:";
     //
     // toolStripComboBox_Scope
     //
     this.toolStripComboBox_Scope.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox_Scope.Items.AddRange(new object[] {
     "Open Scripts",
     "All Scripts"});
     this.toolStripComboBox_Scope.Name = "toolStripComboBox_Scope";
     this.toolStripComboBox_Scope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripDropDownButton_Options
     //
     this.toolStripDropDownButton_Options.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem_RegExp,
     this.toolStripMenuItem_MatchCase,
     this.toolStripMenuItem_WholeWord,
     this.toolStripMenuItem_WordStart});
     this.toolStripDropDownButton_Options.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripDropDownButton_Options.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripDropDownButton_Options.Name = "toolStripDropDownButton_Options";
     this.toolStripDropDownButton_Options.Size = new System.Drawing.Size(62, 22);
     this.toolStripDropDownButton_Options.Text = "Options";
     //
     // toolStripMenuItem_RegExp
     //
     this.toolStripMenuItem_RegExp.CheckOnClick = true;
     this.toolStripMenuItem_RegExp.Name = "toolStripMenuItem_RegExp";
     this.toolStripMenuItem_RegExp.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_RegExp.Text = "RegExp";
     this.toolStripMenuItem_RegExp.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_MatchCase
     //
     this.toolStripMenuItem_MatchCase.CheckOnClick = true;
     this.toolStripMenuItem_MatchCase.Name = "toolStripMenuItem_MatchCase";
     this.toolStripMenuItem_MatchCase.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_MatchCase.Text = "Match Case";
     this.toolStripMenuItem_MatchCase.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WholeWord
     //
     this.toolStripMenuItem_WholeWord.CheckOnClick = true;
     this.toolStripMenuItem_WholeWord.Name = "toolStripMenuItem_WholeWord";
     this.toolStripMenuItem_WholeWord.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WholeWord.Text = "Whole Word";
     this.toolStripMenuItem_WholeWord.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WordStart
     //
     this.toolStripMenuItem_WordStart.CheckOnClick = true;
     this.toolStripMenuItem_WordStart.Name = "toolStripMenuItem_WordStart";
     this.toolStripMenuItem_WordStart.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WordStart.Text = "Word Start";
     this.toolStripMenuItem_WordStart.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // buttonSearch
     //
     this.buttonSearch.Image = Resources.Find3;
     this.buttonSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSearch.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.buttonSearch.Name = "buttonSearch";
     this.buttonSearch.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.buttonSearch.Size = new System.Drawing.Size(65, 22);
     this.buttonSearch.Text = "Search!";
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.textBoxSearch,
     this.toolStripLabel3,
     this.toolStripComboBox_Scope,
     this.toolStripDropDownButton_Options,
     this.buttonSearch});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(536, 25);
     this.toolStrip1.TabIndex = 9;
     this.toolStrip1.Text = "toolStrip1";
     //
     // SearchControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.label_Statistics);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.listViewResults);
     this.Name = "SearchControl";
     this.Size = new System.Drawing.Size(536, 191);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this.designPresenter = new Dataweb.NShape.WinFormsUI.DesignPresenter();
     this.designController = new Dataweb.NShape.Controllers.DesignController();
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.designsComboBox = new System.Windows.Forms.ToolStripComboBox();
     this.activateButton = new System.Windows.Forms.ToolStripButton();
     this.designsSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.newDesignButton = new System.Windows.Forms.ToolStripButton();
     this.deleteDesignButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.createStyleButton = new System.Windows.Forms.ToolStripButton();
     this.deleteStyleButton = new System.Windows.Forms.ToolStripButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.closeButton = new System.Windows.Forms.Button();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this.designPresenter);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(661, 372);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.Size = new System.Drawing.Size(661, 397);
     this.toolStripContainer1.TabIndex = 7;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip2);
     //
     // designPresenter
     //
     this.designPresenter.DesignController = this.designController;
     this.designPresenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.designPresenter.FocusBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(220)))));
     this.designPresenter.FocusedItemColor = System.Drawing.Color.Beige;
     this.designPresenter.HighlightedItemColor = System.Drawing.SystemColors.ControlLightLight;
     this.designPresenter.HighlightItems = true;
     this.designPresenter.InactiveItemBackgroundColor = System.Drawing.SystemColors.Control;
     this.designPresenter.InactiveItemBorderColor = System.Drawing.SystemColors.Window;
     this.designPresenter.InactiveItemTextColor = System.Drawing.SystemColors.ControlDarkDark;
     this.designPresenter.Location = new System.Drawing.Point(0, 0);
     this.designPresenter.Name = "designPresenter";
     this.designPresenter.SelectedDesign = null;
     this.designPresenter.SelectedItemColor = System.Drawing.SystemColors.Window;
     this.designPresenter.SelectedItemTextColor = System.Drawing.SystemColors.ControlText;
     this.designPresenter.SelectedStyleCategory = Dataweb.NShape.StyleCategory.CapStyle;
     this.designPresenter.Size = new System.Drawing.Size(661, 372);
     this.designPresenter.TabIndex = 0;
     //
     // designController
     //
     this.designController.Project = null;
     //
     // toolStrip2
     //
     this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.designsComboBox,
     this.activateButton,
     this.designsSeparator,
     this.newDesignButton,
     this.deleteDesignButton,
     this.toolStripSeparator1,
     this.createStyleButton,
     this.deleteStyleButton});
     this.toolStrip2.Location = new System.Drawing.Point(3, 0);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(544, 25);
     this.toolStrip2.TabIndex = 1;
     //
     // designsComboBox
     //
     this.designsComboBox.Name = "designsComboBox";
     this.designsComboBox.Size = new System.Drawing.Size(121, 25);
     this.designsComboBox.SelectedIndexChanged += new System.EventHandler(this.designsComboBox_SelectedIndexChanged);
     //
     // activateButton
     //
     this.activateButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.activateButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.ActivateDesign;
     this.activateButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.activateButton.Name = "activateButton";
     this.activateButton.Size = new System.Drawing.Size(23, 22);
     this.activateButton.Text = "Activate";
     this.activateButton.Click += new System.EventHandler(this.activateButton_Click);
     //
     // designsSeparator
     //
     this.designsSeparator.Name = "designsSeparator";
     this.designsSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // newDesignButton
     //
     this.newDesignButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.NewItemsBtn;
     this.newDesignButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.newDesignButton.Name = "newDesignButton";
     this.newDesignButton.Size = new System.Drawing.Size(99, 22);
     this.newDesignButton.Text = "New Design...";
     this.newDesignButton.Click += new System.EventHandler(this.newDesignButton_Click);
     //
     // deleteDesignButton
     //
     this.deleteDesignButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.DeleteBtn;
     this.deleteDesignButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteDesignButton.Name = "deleteDesignButton";
     this.deleteDesignButton.Size = new System.Drawing.Size(99, 22);
     this.deleteDesignButton.Text = "Delete Design";
     this.deleteDesignButton.Click += new System.EventHandler(this.deleteDesignButton_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // createStyleButton
     //
     this.createStyleButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.NewBtn;
     this.createStyleButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.createStyleButton.Name = "createStyleButton";
     this.createStyleButton.Size = new System.Drawing.Size(88, 22);
     this.createStyleButton.Text = "New Style...";
     this.createStyleButton.Click += new System.EventHandler(this.newStyleButton_Click);
     //
     // deleteStyleButton
     //
     this.deleteStyleButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.DeleteBtn;
     this.deleteStyleButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteStyleButton.Name = "deleteStyleButton";
     this.deleteStyleButton.Size = new System.Drawing.Size(88, 22);
     this.deleteStyleButton.Text = "Delete Style";
     this.deleteStyleButton.Click += new System.EventHandler(this.deleteStyleButton_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.closeButton);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 397);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(661, 35);
     this.panel1.TabIndex = 7;
     //
     // closeButton
     //
     this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.closeButton.Location = new System.Drawing.Point(574, 6);
     this.closeButton.Name = "closeButton";
     this.closeButton.Size = new System.Drawing.Size(75, 23);
     this.closeButton.TabIndex = 1;
     this.closeButton.Text = "Close";
     this.closeButton.UseVisualStyleBackColor = true;
     this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
     //
     // DesignEditorDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.closeButton;
     this.ClientSize = new System.Drawing.Size(661, 432);
     this.Controls.Add(this.toolStripContainer1);
     this.Controls.Add(this.panel1);
     this.DoubleBuffered = true;
     this.Name = "DesignEditorDialog";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Design Editor";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.DesignEditorDialog_FormClosed);
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStripPrincipal = new System.Windows.Forms.ToolStrip();
     this.btnNuevo = new System.Windows.Forms.ToolStripButton();
     this.btnGuardar = new System.Windows.Forms.ToolStripButton();
     this.btnEditar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCancelar = new System.Windows.Forms.ToolStripButton();
     this.btnImprimir = new System.Windows.Forms.ToolStripButton();
     this.btnBuscar = new System.Windows.Forms.ToolStripButton();
     this.btnEliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnSalir = new System.Windows.Forms.ToolStripButton();
     this.tbControlPrincipal = new System.Windows.Forms.TabControl();
     this.tbpMaestro = new System.Windows.Forms.TabPage();
     this.toolStripPrincipal.SuspendLayout();
     this.tbControlPrincipal.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripPrincipal
     //
     this.toolStripPrincipal.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnNuevo,
     this.btnGuardar,
     this.btnEditar,
     this.toolStripSeparator2,
     this.btnCancelar,
     this.btnImprimir,
     this.btnBuscar,
     this.btnEliminar,
     this.toolStripSeparator1,
     this.btnSalir});
     this.toolStripPrincipal.Location = new System.Drawing.Point(0, 0);
     this.toolStripPrincipal.Name = "toolStripPrincipal";
     this.toolStripPrincipal.Size = new System.Drawing.Size(875, 25);
     this.toolStripPrincipal.TabIndex = 1;
     this.toolStripPrincipal.Text = "Barra De Botones";
     //
     // btnNuevo
     //
     this.btnNuevo.Image = global::aPresentacion.Properties.Resources.add;
     this.btnNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(62, 22);
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.ToolTipText = "Nuevo Registro";
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // btnGuardar
     //
     this.btnGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnGuardar.Name = "btnGuardar";
     this.btnGuardar.Size = new System.Drawing.Size(53, 22);
     this.btnGuardar.Text = "Guardar";
     this.btnGuardar.ToolTipText = "Guardar Registro";
     //
     // btnEditar
     //
     this.btnEditar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(44, 22);
     this.btnEditar.Text = "Editar ";
     this.btnEditar.ToolTipText = "Editar Registro";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // btnCancelar
     //
     this.btnCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(57, 22);
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.ToolTipText = "Cancelar Registro";
     //
     // btnImprimir
     //
     this.btnImprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimir.Name = "btnImprimir";
     this.btnImprimir.Size = new System.Drawing.Size(57, 22);
     this.btnImprimir.Text = "Imprimir";
     //
     // btnBuscar
     //
     this.btnBuscar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(46, 22);
     this.btnBuscar.Text = "Buscar";
     this.btnBuscar.ToolTipText = "Buscar Registro";
     //
     // btnEliminar
     //
     this.btnEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEliminar.Name = "btnEliminar";
     this.btnEliminar.Size = new System.Drawing.Size(54, 22);
     this.btnEliminar.Text = "Eliminar";
     this.btnEliminar.ToolTipText = "Eliminar Registro";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnSalir
     //
     this.btnSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(33, 22);
     this.btnSalir.Text = "Salir";
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // tbControlPrincipal
     //
     this.tbControlPrincipal.Controls.Add(this.tbpMaestro);
     this.tbControlPrincipal.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tbControlPrincipal.Location = new System.Drawing.Point(0, 25);
     this.tbControlPrincipal.Name = "tbControlPrincipal";
     this.tbControlPrincipal.SelectedIndex = 0;
     this.tbControlPrincipal.Size = new System.Drawing.Size(875, 416);
     this.tbControlPrincipal.TabIndex = 2;
     //
     // tbpMaestro
     //
     this.tbpMaestro.Location = new System.Drawing.Point(4, 22);
     this.tbpMaestro.Name = "tbpMaestro";
     this.tbpMaestro.Padding = new System.Windows.Forms.Padding(3);
     this.tbpMaestro.Size = new System.Drawing.Size(867, 390);
     this.tbpMaestro.TabIndex = 0;
     this.tbpMaestro.Text = "tbpMaestro";
     this.tbpMaestro.UseVisualStyleBackColor = true;
     //
     // FrmPlantilla
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(875, 441);
     this.Controls.Add(this.tbControlPrincipal);
     this.Controls.Add(this.toolStripPrincipal);
     this.Name = "FrmPlantilla";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Plantilla";
     this.Load += new System.EventHandler(this.FrmPlantilla_Load);
     this.toolStripPrincipal.ResumeLayout(false);
     this.toolStripPrincipal.PerformLayout();
     this.tbControlPrincipal.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 44
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tSeat = new System.Windows.Forms.ToolStripTextBox();
     this.payTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.orderTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolTech = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.btnRoom = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolAllOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.btnCashierTable = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.btnDeposit = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolMember = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolPreprint = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
     this.toolPwd = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
     this.toolWarn = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
     this.toolExit = new System.Windows.Forms.ToolStripButton();
     this.seatContext = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CtxAddNote = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxLock = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxSop = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxRepay = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxReprint = new System.Windows.Forms.ToolStripMenuItem();
     this.unWarnTool = new System.Windows.Forms.ToolStripMenuItem();
     this.undoTransferTool = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.currentUser = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.aviTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.useTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.payTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.lockTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.stopTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.warnTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.depositTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip2 = new System.Windows.Forms.StatusStrip();
     this.LseatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel20 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel21 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel22 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel23 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel24 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel25 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPanel = new System.Windows.Forms.Panel();
     this.toolStrip1.SuspendLayout();
     this.seatContext.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.statusStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(64, 64);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tSeat,
     this.payTool,
     this.toolStripLabel2,
     this.orderTool,
     this.toolStripLabel5,
     this.toolTech,
     this.toolStripLabel3,
     this.btnRoom,
     this.toolStripLabel8,
     this.toolAllOrder,
     this.toolStripLabel4,
     this.btnCashierTable,
     this.toolStripLabel6,
     this.btnDeposit,
     this.toolStripLabel7,
     this.toolMember,
     this.toolStripLabel1,
     this.toolPreprint,
     this.toolStripLabel9,
     this.toolPwd,
     this.toolStripLabel10,
     this.toolWarn,
     this.toolStripLabel11,
     this.toolExit});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1370, 91);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // tSeat
     //
     this.tSeat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tSeat.Font = new System.Drawing.Font("微软雅黑", 28F);
     this.tSeat.Name = "tSeat";
     this.tSeat.Size = new System.Drawing.Size(100, 91);
     this.tSeat.Enter += new System.EventHandler(this.tSeat_Enter);
     //
     // payTool
     //
     this.payTool.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.payTool.Image = ((System.Drawing.Image)(resources.GetObject("payTool.Image")));
     this.payTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.payTool.Name = "payTool";
     this.payTool.Size = new System.Drawing.Size(70, 88);
     this.payTool.Text = "结账(F3)";
     this.payTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.payTool.Click += new System.EventHandler(this.payTool_Click);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel2.Text = " ";
     //
     // orderTool
     //
     this.orderTool.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.orderTool.Image = ((System.Drawing.Image)(resources.GetObject("orderTool.Image")));
     this.orderTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.orderTool.Name = "orderTool";
     this.orderTool.Size = new System.Drawing.Size(100, 88);
     this.orderTool.Text = "消费录入(F2)";
     this.orderTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.orderTool.Click += new System.EventHandler(this.orderTool_Click);
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.Name = "toolStripLabel5";
     this.toolStripLabel5.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel5.Text = " ";
     //
     // toolTech
     //
     this.toolTech.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolTech.Image = ((System.Drawing.Image)(resources.GetObject("toolTech.Image")));
     this.toolTech.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolTech.Name = "toolTech";
     this.toolTech.Size = new System.Drawing.Size(70, 88);
     this.toolTech.Text = "技师(F1)";
     this.toolTech.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolTech.Click += new System.EventHandler(this.toolTech_Click);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel3.Text = " ";
     //
     // btnRoom
     //
     this.btnRoom.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnRoom.Image = ((System.Drawing.Image)(resources.GetObject("btnRoom.Image")));
     this.btnRoom.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRoom.Name = "btnRoom";
     this.btnRoom.Size = new System.Drawing.Size(70, 88);
     this.btnRoom.Text = "包房(F4)";
     this.btnRoom.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnRoom.Click += new System.EventHandler(this.btnRoom_Click);
     //
     // toolStripLabel8
     //
     this.toolStripLabel8.Name = "toolStripLabel8";
     this.toolStripLabel8.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel8.Text = " ";
     //
     // toolAllOrder
     //
     this.toolAllOrder.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolAllOrder.Image = ((System.Drawing.Image)(resources.GetObject("toolAllOrder.Image")));
     this.toolAllOrder.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolAllOrder.Name = "toolAllOrder";
     this.toolAllOrder.Size = new System.Drawing.Size(100, 88);
     this.toolAllOrder.Text = "录单汇总(F9)";
     this.toolAllOrder.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolAllOrder.Click += new System.EventHandler(this.toolAllOrder_Click);
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel4.Text = " ";
     //
     // btnCashierTable
     //
     this.btnCashierTable.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnCashierTable.Image = ((System.Drawing.Image)(resources.GetObject("btnCashierTable.Image")));
     this.btnCashierTable.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCashierTable.Name = "btnCashierTable";
     this.btnCashierTable.Size = new System.Drawing.Size(100, 88);
     this.btnCashierTable.Text = "收银报表(F5)";
     this.btnCashierTable.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnCashierTable.Click += new System.EventHandler(this.btnCashierTable_Click);
     //
     // toolStripLabel6
     //
     this.toolStripLabel6.Name = "toolStripLabel6";
     this.toolStripLabel6.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel6.Text = " ";
     //
     // btnDeposit
     //
     this.btnDeposit.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.btnDeposit.Image = ((System.Drawing.Image)(resources.GetObject("btnDeposit.Image")));
     this.btnDeposit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDeposit.Name = "btnDeposit";
     this.btnDeposit.Size = new System.Drawing.Size(100, 88);
     this.btnDeposit.Text = "押金离场(F6)";
     this.btnDeposit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnDeposit.Click += new System.EventHandler(this.btnDeposit_Click);
     //
     // toolStripLabel7
     //
     this.toolStripLabel7.Name = "toolStripLabel7";
     this.toolStripLabel7.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel7.Text = " ";
     //
     // toolMember
     //
     this.toolMember.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolMember.Image = ((System.Drawing.Image)(resources.GetObject("toolMember.Image")));
     this.toolMember.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolMember.Name = "toolMember";
     this.toolMember.Size = new System.Drawing.Size(100, 88);
     this.toolMember.Text = "会员管理(F7)";
     this.toolMember.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolMember.Click += new System.EventHandler(this.toolMember_Click);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(16, 88);
     this.toolStripLabel1.Text = "  ";
     //
     // toolPreprint
     //
     this.toolPreprint.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolPreprint.Image = ((System.Drawing.Image)(resources.GetObject("toolPreprint.Image")));
     this.toolPreprint.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolPreprint.Name = "toolPreprint";
     this.toolPreprint.Size = new System.Drawing.Size(100, 88);
     this.toolPreprint.Text = "预打账单(F8)";
     this.toolPreprint.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolPreprint.Click += new System.EventHandler(this.toolPreprint_Click);
     //
     // toolStripLabel9
     //
     this.toolStripLabel9.Name = "toolStripLabel9";
     this.toolStripLabel9.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel9.Text = " ";
     //
     // toolPwd
     //
     this.toolPwd.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolPwd.Image = ((System.Drawing.Image)(resources.GetObject("toolPwd.Image")));
     this.toolPwd.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolPwd.Name = "toolPwd";
     this.toolPwd.Size = new System.Drawing.Size(100, 88);
     this.toolPwd.Text = "修改密码(F9)";
     this.toolPwd.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolPwd.Click += new System.EventHandler(this.toolPwd_Click);
     //
     // toolStripLabel10
     //
     this.toolStripLabel10.Name = "toolStripLabel10";
     this.toolStripLabel10.Size = new System.Drawing.Size(12, 88);
     this.toolStripLabel10.Text = " ";
     //
     // toolWarn
     //
     this.toolWarn.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolWarn.Image = ((System.Drawing.Image)(resources.GetObject("toolWarn.Image")));
     this.toolWarn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolWarn.Name = "toolWarn";
     this.toolWarn.Size = new System.Drawing.Size(70, 88);
     this.toolWarn.Text = "预定(F5)";
     this.toolWarn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolWarn.Click += new System.EventHandler(this.toolWarn_Click);
     //
     // toolStripLabel11
     //
     this.toolStripLabel11.Name = "toolStripLabel11";
     this.toolStripLabel11.Size = new System.Drawing.Size(16, 88);
     this.toolStripLabel11.Text = "  ";
     //
     // toolExit
     //
     this.toolExit.Font = new System.Drawing.Font("微软雅黑", 11F);
     this.toolExit.Image = ((System.Drawing.Image)(resources.GetObject("toolExit.Image")));
     this.toolExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolExit.Name = "toolExit";
     this.toolExit.Size = new System.Drawing.Size(96, 88);
     this.toolExit.Text = "退    出(ESC)";
     this.toolExit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.toolExit.Click += new System.EventHandler(this.toolExit_Click);
     //
     // seatContext
     //
     this.seatContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CtxAddNote,
     this.CtxLock,
     this.CtxSop,
     this.CtxRepay,
     this.CtxReprint,
     this.unWarnTool,
     this.undoTransferTool});
     this.seatContext.Name = "contextMenuStrip1";
     this.seatContext.Size = new System.Drawing.Size(130, 158);
     //
     // CtxAddNote
     //
     this.CtxAddNote.Name = "CtxAddNote";
     this.CtxAddNote.Size = new System.Drawing.Size(129, 22);
     this.CtxAddNote.Text = "添加备注";
     this.CtxAddNote.Click += new System.EventHandler(this.CtxAddNote_Click);
     //
     // CtxLock
     //
     this.CtxLock.Name = "CtxLock";
     this.CtxLock.Size = new System.Drawing.Size(129, 22);
     this.CtxLock.Text = "锁定/解锁";
     this.CtxLock.Click += new System.EventHandler(this.CtxLock_Click);
     //
     // CtxSop
     //
     this.CtxSop.Name = "CtxSop";
     this.CtxSop.Size = new System.Drawing.Size(129, 22);
     this.CtxSop.Text = "停用/启用";
     this.CtxSop.Click += new System.EventHandler(this.CtxSop_Click);
     //
     // CtxRepay
     //
     this.CtxRepay.Name = "CtxRepay";
     this.CtxRepay.Size = new System.Drawing.Size(129, 22);
     this.CtxRepay.Text = "重新结账";
     this.CtxRepay.Click += new System.EventHandler(this.CtxRepay_Click);
     //
     // CtxReprint
     //
     this.CtxReprint.Name = "CtxReprint";
     this.CtxReprint.Size = new System.Drawing.Size(129, 22);
     this.CtxReprint.Text = "重打账单";
     this.CtxReprint.Click += new System.EventHandler(this.CtxReprint_Click);
     //
     // unWarnTool
     //
     this.unWarnTool.Name = "unWarnTool";
     this.unWarnTool.Size = new System.Drawing.Size(129, 22);
     this.unWarnTool.Text = "解除警告";
     this.unWarnTool.Click += new System.EventHandler(this.unWarnTool_Click);
     //
     // undoTransferTool
     //
     this.undoTransferTool.Name = "undoTransferTool";
     this.undoTransferTool.Size = new System.Drawing.Size(129, 22);
     this.undoTransferTool.Text = "恢复转账";
     this.undoTransferTool.Click += new System.EventHandler(this.undoTransferTool_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.currentUser,
     this.toolStripStatusLabel3,
     this.statusTip,
     this.aviTip,
     this.useTip,
     this.payTip,
     this.lockTip,
     this.stopTip,
     this.warnTip,
     this.depositTip,
     this.toolStripStatusLabel2});
     this.statusStrip1.Location = new System.Drawing.Point(0, 716);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(1370, 26);
     this.statusStrip1.TabIndex = 6;
     this.statusStrip1.TabStop = true;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(0, 21);
     //
     // currentUser
     //
     this.currentUser.Name = "currentUser";
     this.currentUser.Size = new System.Drawing.Size(171, 21);
     this.currentUser.Text = "toolStripStatusLabel2";
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(20, 21);
     this.toolStripStatusLabel3.Text = "  ";
     //
     // statusTip
     //
     this.statusTip.Font = new System.Drawing.Font("宋体", 10F);
     this.statusTip.Name = "statusTip";
     this.statusTip.Size = new System.Drawing.Size(77, 21);
     this.statusTip.Text = "状态说明:";
     //
     // aviTip
     //
     this.aviTip.BackColor = System.Drawing.Color.White;
     this.aviTip.Font = new System.Drawing.Font("宋体", 10F);
     this.aviTip.Name = "aviTip";
     this.aviTip.Size = new System.Drawing.Size(84, 21);
     this.aviTip.Text = "   可用    ";
     //
     // useTip
     //
     this.useTip.BackColor = System.Drawing.Color.Cyan;
     this.useTip.Font = new System.Drawing.Font("宋体", 10F);
     this.useTip.Name = "useTip";
     this.useTip.Size = new System.Drawing.Size(63, 21);
     this.useTip.Text = "正在使用";
     //
     // payTip
     //
     this.payTip.BackColor = System.Drawing.Color.Gray;
     this.payTip.Font = new System.Drawing.Font("宋体", 10F);
     this.payTip.Name = "payTip";
     this.payTip.Size = new System.Drawing.Size(91, 21);
     this.payTip.Text = "    结账    ";
     //
     // lockTip
     //
     this.lockTip.BackColor = System.Drawing.Color.Orange;
     this.lockTip.Font = new System.Drawing.Font("宋体", 10F);
     this.lockTip.Name = "lockTip";
     this.lockTip.Size = new System.Drawing.Size(91, 21);
     this.lockTip.Text = "    锁定    ";
     //
     // stopTip
     //
     this.stopTip.BackColor = System.Drawing.Color.Red;
     this.stopTip.Name = "stopTip";
     this.stopTip.Size = new System.Drawing.Size(82, 21);
     this.stopTip.Text = "    停用    ";
     //
     // warnTip
     //
     this.warnTip.BackColor = System.Drawing.Color.Yellow;
     this.warnTip.Name = "warnTip";
     this.warnTip.Size = new System.Drawing.Size(74, 21);
     this.warnTip.Text = " 警告 ";
     //
     // depositTip
     //
     this.depositTip.BackColor = System.Drawing.Color.Violet;
     this.depositTip.Name = "depositTip";
     this.depositTip.Size = new System.Drawing.Size(74, 21);
     this.depositTip.Text = "押金离场";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.BackColor = System.Drawing.Color.CornflowerBlue;
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(74, 21);
     this.toolStripStatusLabel2.Text = "重新结账";
     //
     // statusStrip2
     //
     this.statusStrip2.Font = new System.Drawing.Font("微软雅黑", 12F);
     this.statusStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.LseatTotal,
     this.seatTotal,
     this.toolStripStatusLabel20,
     this.LseatAvi,
     this.seatAvi,
     this.toolStripStatusLabel21,
     this.LmoneyTotal,
     this.moneyTotal,
     this.toolStripStatusLabel22,
     this.LseatPaid,
     this.seatPaid,
     this.toolStripStatusLabel23,
     this.LmoneyPaid,
     this.moneyPaid,
     this.toolStripStatusLabel24,
     this.LseatUnpaid,
     this.seatUnpaid,
     this.toolStripStatusLabel25,
     this.LmoneyUnpaid,
     this.moneyUnpaid});
     this.statusStrip2.Location = new System.Drawing.Point(0, 690);
     this.statusStrip2.Name = "statusStrip2";
     this.statusStrip2.Size = new System.Drawing.Size(1370, 26);
     this.statusStrip2.TabIndex = 7;
     this.statusStrip2.Text = "statusStrip2";
     //
     // LseatTotal
     //
     this.LseatTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatTotal.Name = "LseatTotal";
     this.LseatTotal.Size = new System.Drawing.Size(80, 21);
     this.LseatTotal.Text = "总台位数:";
     //
     // seatTotal
     //
     this.seatTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.seatTotal.Name = "seatTotal";
     this.seatTotal.Size = new System.Drawing.Size(40, 21);
     this.seatTotal.Text = "7000";
     //
     // toolStripStatusLabel20
     //
     this.toolStripStatusLabel20.Name = "toolStripStatusLabel20";
     this.toolStripStatusLabel20.Size = new System.Drawing.Size(20, 21);
     this.toolStripStatusLabel20.Text = "  ";
     //
     // LseatAvi
     //
     this.LseatAvi.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatAvi.Name = "LseatAvi";
     this.LseatAvi.Size = new System.Drawing.Size(96, 21);
     this.LseatAvi.Text = "空闲台位数:";
     //
     // seatAvi
     //
     this.seatAvi.Font = new System.Drawing.Font("宋体", 12F);
     this.seatAvi.Name = "seatAvi";
     this.seatAvi.Size = new System.Drawing.Size(32, 21);
     this.seatAvi.Text = "100";
     //
     // toolStripStatusLabel21
     //
     this.toolStripStatusLabel21.Name = "toolStripStatusLabel21";
     this.toolStripStatusLabel21.Size = new System.Drawing.Size(60, 21);
     this.toolStripStatusLabel21.Text = "          ";
     //
     // LmoneyTotal
     //
     this.LmoneyTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyTotal.Name = "LmoneyTotal";
     this.LmoneyTotal.Size = new System.Drawing.Size(80, 21);
     this.LmoneyTotal.Text = "合计消费:";
     //
     // moneyTotal
     //
     this.moneyTotal.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyTotal.Name = "moneyTotal";
     this.moneyTotal.Size = new System.Drawing.Size(40, 21);
     this.moneyTotal.Text = "7000";
     //
     // toolStripStatusLabel22
     //
     this.toolStripStatusLabel22.Name = "toolStripStatusLabel22";
     this.toolStripStatusLabel22.Size = new System.Drawing.Size(25, 21);
     this.toolStripStatusLabel22.Text = "   ";
     //
     // LseatPaid
     //
     this.LseatPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatPaid.Name = "LseatPaid";
     this.LseatPaid.Size = new System.Drawing.Size(64, 21);
     this.LseatPaid.Text = "已结账:";
     //
     // seatPaid
     //
     this.seatPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.seatPaid.Name = "seatPaid";
     this.seatPaid.Size = new System.Drawing.Size(24, 21);
     this.seatPaid.Text = "10";
     //
     // toolStripStatusLabel23
     //
     this.toolStripStatusLabel23.Name = "toolStripStatusLabel23";
     this.toolStripStatusLabel23.Size = new System.Drawing.Size(15, 21);
     this.toolStripStatusLabel23.Text = " ";
     //
     // LmoneyPaid
     //
     this.LmoneyPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyPaid.Name = "LmoneyPaid";
     this.LmoneyPaid.Size = new System.Drawing.Size(48, 21);
     this.LmoneyPaid.Text = "金额:";
     //
     // moneyPaid
     //
     this.moneyPaid.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyPaid.Name = "moneyPaid";
     this.moneyPaid.Size = new System.Drawing.Size(40, 21);
     this.moneyPaid.Text = "7000";
     //
     // toolStripStatusLabel24
     //
     this.toolStripStatusLabel24.Name = "toolStripStatusLabel24";
     this.toolStripStatusLabel24.Size = new System.Drawing.Size(30, 21);
     this.toolStripStatusLabel24.Text = "    ";
     //
     // LseatUnpaid
     //
     this.LseatUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LseatUnpaid.Name = "LseatUnpaid";
     this.LseatUnpaid.Size = new System.Drawing.Size(64, 21);
     this.LseatUnpaid.Text = "未结账:";
     //
     // seatUnpaid
     //
     this.seatUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.seatUnpaid.Name = "seatUnpaid";
     this.seatUnpaid.Size = new System.Drawing.Size(40, 21);
     this.seatUnpaid.Text = "7000";
     //
     // toolStripStatusLabel25
     //
     this.toolStripStatusLabel25.Name = "toolStripStatusLabel25";
     this.toolStripStatusLabel25.Size = new System.Drawing.Size(15, 21);
     this.toolStripStatusLabel25.Text = " ";
     //
     // LmoneyUnpaid
     //
     this.LmoneyUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.LmoneyUnpaid.Name = "LmoneyUnpaid";
     this.LmoneyUnpaid.Size = new System.Drawing.Size(48, 21);
     this.LmoneyUnpaid.Text = "金额:";
     //
     // moneyUnpaid
     //
     this.moneyUnpaid.Font = new System.Drawing.Font("宋体", 12F);
     this.moneyUnpaid.Name = "moneyUnpaid";
     this.moneyUnpaid.Size = new System.Drawing.Size(40, 21);
     this.moneyUnpaid.Text = "7000";
     //
     // seatPanel
     //
     this.seatPanel.AutoScroll = true;
     this.seatPanel.BackColor = System.Drawing.Color.White;
     this.seatPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.seatPanel.Location = new System.Drawing.Point(0, 91);
     this.seatPanel.Name = "seatPanel";
     this.seatPanel.Size = new System.Drawing.Size(1370, 599);
     this.seatPanel.TabIndex = 9;
     //
     // MainWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1370, 742);
     this.Controls.Add(this.seatPanel);
     this.Controls.Add(this.statusStrip2);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "MainWindow";
     this.Text = "前台";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.ReceptionSeatForm_Load);
     this.SizeChanged += new System.EventHandler(this.MainWindow_SizeChanged);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form_KeyDown);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.seatContext.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.statusStrip2.ResumeLayout(false);
     this.statusStrip2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_catplanilla));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     this.dgb_catplanilla = new System.Windows.Forms.DataGridView();
     this.label5 = new System.Windows.Forms.Label();
     this.txtbusqueda = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.txtcatplanillaid = new System.Windows.Forms.TextBox();
     this.txtcatplanillaname = new System.Windows.Forms.TextBox();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.cateplanid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cateplanname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_catplanilla)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btn_busqueda);
     this.groupBox2.Controls.Add(this.dgb_catplanilla);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.txtbusqueda);
     this.groupBox2.Location = new System.Drawing.Point(5, 122);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(445, 254);
     this.groupBox2.TabIndex = 115;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "»» Busqueda";
     //
     // btn_busqueda
     //
     this.btn_busqueda.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_busqueda.Appearance.Options.UseFont = true;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(357, 18);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(73, 22);
     this.btn_busqueda.TabIndex = 115;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // dgb_catplanilla
     //
     this.dgb_catplanilla.AllowUserToAddRows = false;
     this.dgb_catplanilla.AllowUserToDeleteRows = false;
     this.dgb_catplanilla.AllowUserToResizeColumns = false;
     this.dgb_catplanilla.AllowUserToResizeRows = false;
     this.dgb_catplanilla.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgb_catplanilla.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
     this.dgb_catplanilla.ColumnHeadersHeight = 20;
     this.dgb_catplanilla.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.cateplanid,
     this.cateplanname});
     this.dgb_catplanilla.Location = new System.Drawing.Point(10, 46);
     this.dgb_catplanilla.MultiSelect = false;
     this.dgb_catplanilla.Name = "dgb_catplanilla";
     this.dgb_catplanilla.RowHeadersVisible = false;
     this.dgb_catplanilla.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dgb_catplanilla.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.dgb_catplanilla.RowTemplate.Height = 20;
     this.dgb_catplanilla.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dgb_catplanilla.Size = new System.Drawing.Size(422, 202);
     this.dgb_catplanilla.TabIndex = 19;
     this.dgb_catplanilla.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_catplanilla_CellClick);
     this.dgb_catplanilla.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_catplanilla_CellEnter);
     this.dgb_catplanilla.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_catplanilla_CellLeave);
     this.dgb_catplanilla.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_catplanilla_KeyUp);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(16, 22);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 114;
     this.label5.Text = "Descripción:";
     //
     // txtbusqueda
     //
     this.txtbusqueda.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtbusqueda.Location = new System.Drawing.Point(88, 19);
     this.txtbusqueda.MaxLength = 0;
     this.txtbusqueda.Name = "txtbusqueda";
     this.txtbusqueda.Size = new System.Drawing.Size(261, 21);
     this.txtbusqueda.TabIndex = 17;
     this.txtbusqueda.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     this.txtbusqueda.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtbusqueda_KeyUp);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Teal;
     this.label11.Location = new System.Drawing.Point(130, 29);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(172, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Categoria Planilla";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label16);
     this.groupBox1.Controls.Add(this.txtcatplanillaid);
     this.groupBox1.Controls.Add(this.txtcatplanillaname);
     this.groupBox1.Location = new System.Drawing.Point(5, 47);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(445, 75);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "»» Datos";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(18, 43);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(60, 13);
     this.label1.TabIndex = 36;
     this.label1.Text = "Cat.Planilla";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.ForeColor = System.Drawing.Color.Black;
     this.label16.Location = new System.Drawing.Point(38, 20);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(40, 13);
     this.label16.TabIndex = 35;
     this.label16.Text = "Codigo";
     //
     // txtcatplanillaid
     //
     this.txtcatplanillaid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtcatplanillaid.Location = new System.Drawing.Point(86, 19);
     this.txtcatplanillaid.MaxLength = 3;
     this.txtcatplanillaid.Name = "txtcatplanillaid";
     this.txtcatplanillaid.Size = new System.Drawing.Size(24, 20);
     this.txtcatplanillaid.TabIndex = 11;
     this.txtcatplanillaid.Text = "0";
     this.txtcatplanillaid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtcatplanillaname
     //
     this.txtcatplanillaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtcatplanillaname.Location = new System.Drawing.Point(86, 40);
     this.txtcatplanillaname.Name = "txtcatplanillaname";
     this.txtcatplanillaname.Size = new System.Drawing.Size(286, 21);
     this.txtcatplanillaname.TabIndex = 12;
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(460, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // cateplanid
     //
     this.cateplanid.DataPropertyName = "cateplanid";
     dataGridViewCellStyle8.NullValue = null;
     this.cateplanid.DefaultCellStyle = dataGridViewCellStyle8;
     this.cateplanid.HeaderText = "Codigo";
     this.cateplanid.Name = "cateplanid";
     this.cateplanid.Width = 50;
     //
     // cateplanname
     //
     this.cateplanname.DataPropertyName = "cateplanname";
     this.cateplanname.HeaderText = "Cat.Planilla";
     this.cateplanname.Name = "cateplanname";
     this.cateplanname.Width = 150;
     //
     // Frm_catplanilla
     //
     this.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(460, 381);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Botonera);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_catplanilla";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Categoria Planilla";
     this.Load += new System.EventHandler(this.Frm_cargos_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_cargos_KeyDown);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_catplanilla)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WelcomeForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.manageUserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changePsswordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.databaseManagementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.restoreBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.startNewYearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.initializeDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerTrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unRegisterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.userHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.troubleshootingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.systemLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutEBusinessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.btnPOS = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
     this.btnInvoice = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnStock = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomer = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompany = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.btnOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStrip_Reports = new System.Windows.Forms.ToolStrip();
     this.btnSalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
     this.btnPurchaseReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.btnDailySalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.btnBuyerLedgerReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomerTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompanyTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.btnProfitReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCurrentCashReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItemTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.middlePanel = new System.Windows.Forms.Panel();
     this.lblSologon = new System.Windows.Forms.Label();
     this.lbRegistrationNo = new System.Windows.Forms.Label();
     this.lblPhoneNumber = new System.Windows.Forms.Label();
     this.lblAdress = new System.Windows.Forms.Label();
     this.panelToday = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.lvSale = new System.Windows.Forms.ListView();
     this.colSNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colRNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colCustomer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colTotal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colPayment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label2 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lvPurchase = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.panelClock = new System.Windows.Forms.Panel();
     this.lvStockSummary = new System.Windows.Forms.ListView();
     this.colItem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colStock = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colOnOrder = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLimit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.btnRefresh = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.lblWatch = new System.Windows.Forms.Label();
     this.topPanel = new System.Windows.Forms.Panel();
     this.lblShopName = new System.Windows.Forms.Label();
     this.logoPanel = new System.Windows.Forms.Panel();
     this.label3 = new System.Windows.Forms.Label();
     this.lblPointofSale = new System.Windows.Forms.Label();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.toolStrip_Reports.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.middlePanel.SuspendLayout();
     this.panelToday.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panelClock.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.topPanel.SuspendLayout();
     this.logoPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("menuStrip1.BackgroundImage")));
     this.menuStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1,
     this.settingToolStripMenuItem,
     this.databaseManagementToolStripMenuItem,
     this.troubleshootingToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1007, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
     this.toolStripMenuItem1.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // settingToolStripMenuItem
     //
     this.settingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.manageUserToolStripMenuItem,
     this.changePsswordToolStripMenuItem});
     this.settingToolStripMenuItem.Name = "settingToolStripMenuItem";
     this.settingToolStripMenuItem.Size = new System.Drawing.Size(116, 20);
     this.settingToolStripMenuItem.Text = "User Management";
     //
     // manageUserToolStripMenuItem
     //
     this.manageUserToolStripMenuItem.Name = "manageUserToolStripMenuItem";
     this.manageUserToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
     this.manageUserToolStripMenuItem.Text = "Manage User";
     this.manageUserToolStripMenuItem.Click += new System.EventHandler(this.manageUserToolStripMenuItem_Click);
     //
     // changePsswordToolStripMenuItem
     //
     this.changePsswordToolStripMenuItem.Name = "changePsswordToolStripMenuItem";
     this.changePsswordToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
     this.changePsswordToolStripMenuItem.Text = "Change Password";
     this.changePsswordToolStripMenuItem.Click += new System.EventHandler(this.changePsswordToolStripMenuItem_Click);
     //
     // databaseManagementToolStripMenuItem
     //
     this.databaseManagementToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.createBackupToolStripMenuItem,
     this.restoreBackupToolStripMenuItem,
     this.startNewYearToolStripMenuItem,
     this.initializeDatabaseToolStripMenuItem,
     this.createDatabaseToolStripMenuItem,
     this.registerTrialToolStripMenuItem,
     this.registerToolStripMenuItem,
     this.unRegisterToolStripMenuItem,
     this.userHistoryToolStripMenuItem});
     this.databaseManagementToolStripMenuItem.Name = "databaseManagementToolStripMenuItem";
     this.databaseManagementToolStripMenuItem.Size = new System.Drawing.Size(98, 20);
     this.databaseManagementToolStripMenuItem.Text = "Administration";
     //
     // createBackupToolStripMenuItem
     //
     this.createBackupToolStripMenuItem.Name = "createBackupToolStripMenuItem";
     this.createBackupToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.createBackupToolStripMenuItem.Text = "Create Backup";
     this.createBackupToolStripMenuItem.Click += new System.EventHandler(this.createBackupToolStripMenuItem_Click);
     //
     // restoreBackupToolStripMenuItem
     //
     this.restoreBackupToolStripMenuItem.Name = "restoreBackupToolStripMenuItem";
     this.restoreBackupToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.restoreBackupToolStripMenuItem.Text = "Restore Backup";
     this.restoreBackupToolStripMenuItem.Click += new System.EventHandler(this.restoreBackupToolStripMenuItem_Click);
     //
     // startNewYearToolStripMenuItem
     //
     this.startNewYearToolStripMenuItem.Name = "startNewYearToolStripMenuItem";
     this.startNewYearToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.startNewYearToolStripMenuItem.Text = "Start New Business Year";
     //
     // initializeDatabaseToolStripMenuItem
     //
     this.initializeDatabaseToolStripMenuItem.Name = "initializeDatabaseToolStripMenuItem";
     this.initializeDatabaseToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.initializeDatabaseToolStripMenuItem.Text = "Initialize Database";
     this.initializeDatabaseToolStripMenuItem.Click += new System.EventHandler(this.initializeDatabaseToolStripMenuItem_Click);
     //
     // createDatabaseToolStripMenuItem
     //
     this.createDatabaseToolStripMenuItem.Name = "createDatabaseToolStripMenuItem";
     this.createDatabaseToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.createDatabaseToolStripMenuItem.Text = "Create Database";
     this.createDatabaseToolStripMenuItem.Click += new System.EventHandler(this.createDatabaseToolStripMenuItem_Click);
     //
     // registerTrialToolStripMenuItem
     //
     this.registerTrialToolStripMenuItem.Name = "registerTrialToolStripMenuItem";
     this.registerTrialToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.registerTrialToolStripMenuItem.Text = "Register Trial";
     //
     // registerToolStripMenuItem
     //
     this.registerToolStripMenuItem.Name = "registerToolStripMenuItem";
     this.registerToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.registerToolStripMenuItem.Text = "Register";
     //
     // unRegisterToolStripMenuItem
     //
     this.unRegisterToolStripMenuItem.Name = "unRegisterToolStripMenuItem";
     this.unRegisterToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.unRegisterToolStripMenuItem.Text = "Un Register";
     //
     // userHistoryToolStripMenuItem
     //
     this.userHistoryToolStripMenuItem.Name = "userHistoryToolStripMenuItem";
     this.userHistoryToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
     this.userHistoryToolStripMenuItem.Text = "User History";
     this.userHistoryToolStripMenuItem.Click += new System.EventHandler(this.userHistoryToolStripMenuItem_Click);
     //
     // troubleshootingToolStripMenuItem
     //
     this.troubleshootingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.systemLogToolStripMenuItem});
     this.troubleshootingToolStripMenuItem.Name = "troubleshootingToolStripMenuItem";
     this.troubleshootingToolStripMenuItem.Size = new System.Drawing.Size(107, 20);
     this.troubleshootingToolStripMenuItem.Text = "Troubleshooting";
     //
     // systemLogToolStripMenuItem
     //
     this.systemLogToolStripMenuItem.Name = "systemLogToolStripMenuItem";
     this.systemLogToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
     this.systemLogToolStripMenuItem.Text = "System Log";
     this.systemLogToolStripMenuItem.Click += new System.EventHandler(this.systemLogToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutEBusinessToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // aboutEBusinessToolStripMenuItem
     //
     this.aboutEBusinessToolStripMenuItem.Name = "aboutEBusinessToolStripMenuItem";
     this.aboutEBusinessToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.aboutEBusinessToolStripMenuItem.Text = "About EBusiness";
     //
     // toolStrip1
     //
     this.toolStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toolStrip1.BackgroundImage")));
     this.toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnPOS,
     this.toolStripSeparator14,
     this.btnInvoice,
     this.toolStripSeparator1,
     this.btnStock,
     this.toolStripSeparator2,
     this.btnItem,
     this.toolStripSeparator3,
     this.btnCustomer,
     this.toolStripSeparator4,
     this.btnCompany,
     this.toolStripSeparator5,
     this.btnOrder,
     this.toolStripSeparator6,
     this.btnShop,
     this.toolStripSeparator13});
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1007, 57);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // btnPOS
     //
     this.btnPOS.Font = new System.Drawing.Font("Arial Black", 12F, System.Drawing.FontStyle.Bold);
     this.btnPOS.Image = ((System.Drawing.Image)(resources.GetObject("btnPOS.Image")));
     this.btnPOS.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnPOS.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPOS.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnPOS.Name = "btnPOS";
     this.btnPOS.Size = new System.Drawing.Size(96, 56);
     this.btnPOS.Text = "&POS";
     this.btnPOS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnPOS.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
     this.btnPOS.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnPOS.ToolTipText = "POS";
     this.btnPOS.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator14
     //
     this.toolStripSeparator14.Name = "toolStripSeparator14";
     this.toolStripSeparator14.Size = new System.Drawing.Size(6, 57);
     //
     // btnInvoice
     //
     this.btnInvoice.BackColor = System.Drawing.Color.Transparent;
     this.btnInvoice.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnInvoice.ForeColor = System.Drawing.Color.Navy;
     this.btnInvoice.Image = ((System.Drawing.Image)(resources.GetObject("btnInvoice.Image")));
     this.btnInvoice.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnInvoice.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnInvoice.Name = "btnInvoice";
     this.btnInvoice.Size = new System.Drawing.Size(114, 54);
     this.btnInvoice.Text = "&Invoice";
     this.btnInvoice.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnInvoice.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnInvoice.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 57);
     //
     // btnStock
     //
     this.btnStock.BackColor = System.Drawing.Color.Transparent;
     this.btnStock.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnStock.ForeColor = System.Drawing.Color.Navy;
     this.btnStock.Image = ((System.Drawing.Image)(resources.GetObject("btnStock.Image")));
     this.btnStock.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnStock.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnStock.Name = "btnStock";
     this.btnStock.Size = new System.Drawing.Size(100, 54);
     this.btnStock.Text = "&Stock";
     this.btnStock.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnStock.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnStock.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 57);
     //
     // btnItem
     //
     this.btnItem.BackColor = System.Drawing.Color.Transparent;
     this.btnItem.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnItem.ForeColor = System.Drawing.Color.Navy;
     this.btnItem.Image = ((System.Drawing.Image)(resources.GetObject("btnItem.Image")));
     this.btnItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItem.Name = "btnItem";
     this.btnItem.Size = new System.Drawing.Size(90, 54);
     this.btnItem.Text = "&Item";
     this.btnItem.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnItem.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnItem.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 57);
     //
     // btnCustomer
     //
     this.btnCustomer.BackColor = System.Drawing.Color.Transparent;
     this.btnCustomer.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnCustomer.ForeColor = System.Drawing.Color.Navy;
     this.btnCustomer.Image = ((System.Drawing.Image)(resources.GetObject("btnCustomer.Image")));
     this.btnCustomer.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCustomer.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCustomer.Name = "btnCustomer";
     this.btnCustomer.Size = new System.Drawing.Size(128, 54);
     this.btnCustomer.Text = "&Customer";
     this.btnCustomer.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCustomer.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCustomer.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 57);
     //
     // btnCompany
     //
     this.btnCompany.BackColor = System.Drawing.Color.Transparent;
     this.btnCompany.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnCompany.ForeColor = System.Drawing.Color.Navy;
     this.btnCompany.Image = ((System.Drawing.Image)(resources.GetObject("btnCompany.Image")));
     this.btnCompany.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCompany.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCompany.Name = "btnCompany";
     this.btnCompany.Size = new System.Drawing.Size(126, 54);
     this.btnCompany.Text = "S&upplier";
     this.btnCompany.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCompany.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCompany.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 57);
     //
     // btnOrder
     //
     this.btnOrder.BackColor = System.Drawing.Color.Transparent;
     this.btnOrder.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnOrder.ForeColor = System.Drawing.Color.Navy;
     this.btnOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnOrder.Image")));
     this.btnOrder.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnOrder.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnOrder.Name = "btnOrder";
     this.btnOrder.Size = new System.Drawing.Size(102, 54);
     this.btnOrder.Text = "&Order";
     this.btnOrder.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnOrder.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnOrder.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 57);
     //
     // btnShop
     //
     this.btnShop.BackColor = System.Drawing.Color.Transparent;
     this.btnShop.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold);
     this.btnShop.ForeColor = System.Drawing.Color.Navy;
     this.btnShop.Image = ((System.Drawing.Image)(resources.GetObject("btnShop.Image")));
     this.btnShop.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnShop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnShop.Name = "btnShop";
     this.btnShop.Size = new System.Drawing.Size(97, 54);
     this.btnShop.Text = "S&hop";
     this.btnShop.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnShop.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnShop.Click += new System.EventHandler(this.btnManagement_Click);
     //
     // toolStripSeparator13
     //
     this.toolStripSeparator13.Name = "toolStripSeparator13";
     this.toolStripSeparator13.Size = new System.Drawing.Size(6, 57);
     //
     // toolStrip_Reports
     //
     this.toolStrip_Reports.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toolStrip_Reports.BackgroundImage")));
     this.toolStrip_Reports.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.toolStrip_Reports.Dock = System.Windows.Forms.DockStyle.Left;
     this.toolStrip_Reports.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnSalesReport,
     this.toolStripSeparator15,
     this.btnPurchaseReport,
     this.toolStripSeparator8,
     this.btnDailySalesReport,
     this.toolStripSeparator11,
     this.btnBuyerLedgerReport,
     this.toolStripSeparator16,
     this.btnCustomerTransaction,
     this.toolStripSeparator18,
     this.btnCompanyTransaction,
     this.toolStripSeparator12,
     this.btnProfitReport,
     this.toolStripSeparator7,
     this.btnCurrentCashReport,
     this.toolStripSeparator9,
     this.btnItemTransaction,
     this.toolStripSeparator10});
     this.toolStrip_Reports.Location = new System.Drawing.Point(0, 81);
     this.toolStrip_Reports.Name = "toolStrip_Reports";
     this.toolStrip_Reports.Size = new System.Drawing.Size(187, 604);
     this.toolStrip_Reports.TabIndex = 2;
     this.toolStrip_Reports.Text = "toolStrip2";
     //
     // btnSalesReport
     //
     this.btnSalesReport.BackColor = System.Drawing.Color.Transparent;
     this.btnSalesReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnSalesReport.ForeColor = System.Drawing.Color.Navy;
     this.btnSalesReport.Image = ((System.Drawing.Image)(resources.GetObject("btnSalesReport.Image")));
     this.btnSalesReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalesReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnSalesReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSalesReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnSalesReport.Name = "btnSalesReport";
     this.btnSalesReport.Size = new System.Drawing.Size(184, 34);
     this.btnSalesReport.Text = "&Sales Report";
     this.btnSalesReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnSalesReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator15
     //
     this.toolStripSeparator15.Name = "toolStripSeparator15";
     this.toolStripSeparator15.Size = new System.Drawing.Size(184, 6);
     //
     // btnPurchaseReport
     //
     this.btnPurchaseReport.BackColor = System.Drawing.Color.Transparent;
     this.btnPurchaseReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnPurchaseReport.ForeColor = System.Drawing.Color.Navy;
     this.btnPurchaseReport.Image = ((System.Drawing.Image)(resources.GetObject("btnPurchaseReport.Image")));
     this.btnPurchaseReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnPurchaseReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnPurchaseReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnPurchaseReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnPurchaseReport.Name = "btnPurchaseReport";
     this.btnPurchaseReport.Size = new System.Drawing.Size(184, 34);
     this.btnPurchaseReport.Text = "&Purchase Report";
     this.btnPurchaseReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnPurchaseReport.ToolTipText = "Purchase Report";
     this.btnPurchaseReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(184, 6);
     //
     // btnDailySalesReport
     //
     this.btnDailySalesReport.BackColor = System.Drawing.Color.Transparent;
     this.btnDailySalesReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnDailySalesReport.ForeColor = System.Drawing.Color.Navy;
     this.btnDailySalesReport.Image = ((System.Drawing.Image)(resources.GetObject("btnDailySalesReport.Image")));
     this.btnDailySalesReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnDailySalesReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDailySalesReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnDailySalesReport.Name = "btnDailySalesReport";
     this.btnDailySalesReport.Size = new System.Drawing.Size(184, 34);
     this.btnDailySalesReport.Text = "&Daily Sales/Purchase";
     this.btnDailySalesReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnDailySalesReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator11
     //
     this.toolStripSeparator11.Name = "toolStripSeparator11";
     this.toolStripSeparator11.Size = new System.Drawing.Size(184, 6);
     //
     // btnBuyerLedgerReport
     //
     this.btnBuyerLedgerReport.BackColor = System.Drawing.Color.Transparent;
     this.btnBuyerLedgerReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnBuyerLedgerReport.ForeColor = System.Drawing.Color.Navy;
     this.btnBuyerLedgerReport.Image = ((System.Drawing.Image)(resources.GetObject("btnBuyerLedgerReport.Image")));
     this.btnBuyerLedgerReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnBuyerLedgerReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnBuyerLedgerReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBuyerLedgerReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnBuyerLedgerReport.Name = "btnBuyerLedgerReport";
     this.btnBuyerLedgerReport.Size = new System.Drawing.Size(184, 34);
     this.btnBuyerLedgerReport.Text = "&Buyer Ledger";
     this.btnBuyerLedgerReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnBuyerLedgerReport.ToolTipText = "Buyer Ledger";
     this.btnBuyerLedgerReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator16
     //
     this.toolStripSeparator16.Name = "toolStripSeparator16";
     this.toolStripSeparator16.Size = new System.Drawing.Size(184, 6);
     //
     // btnCustomerTransaction
     //
     this.btnCustomerTransaction.BackColor = System.Drawing.Color.Transparent;
     this.btnCustomerTransaction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnCustomerTransaction.ForeColor = System.Drawing.Color.Navy;
     this.btnCustomerTransaction.Image = ((System.Drawing.Image)(resources.GetObject("btnCustomerTransaction.Image")));
     this.btnCustomerTransaction.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCustomerTransaction.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCustomerTransaction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCustomerTransaction.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnCustomerTransaction.Name = "btnCustomerTransaction";
     this.btnCustomerTransaction.Size = new System.Drawing.Size(184, 34);
     this.btnCustomerTransaction.Text = "&Customer Transaction";
     this.btnCustomerTransaction.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCustomerTransaction.ToolTipText = "Buyer Ledger";
     this.btnCustomerTransaction.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator18
     //
     this.toolStripSeparator18.Name = "toolStripSeparator18";
     this.toolStripSeparator18.Size = new System.Drawing.Size(184, 6);
     //
     // btnCompanyTransaction
     //
     this.btnCompanyTransaction.BackColor = System.Drawing.Color.Transparent;
     this.btnCompanyTransaction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnCompanyTransaction.ForeColor = System.Drawing.Color.Navy;
     this.btnCompanyTransaction.Image = ((System.Drawing.Image)(resources.GetObject("btnCompanyTransaction.Image")));
     this.btnCompanyTransaction.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCompanyTransaction.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCompanyTransaction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCompanyTransaction.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnCompanyTransaction.Name = "btnCompanyTransaction";
     this.btnCompanyTransaction.Size = new System.Drawing.Size(184, 34);
     this.btnCompanyTransaction.Text = "Supplier Transaction";
     this.btnCompanyTransaction.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCompanyTransaction.ToolTipText = "Buyer Ledger";
     this.btnCompanyTransaction.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator12
     //
     this.toolStripSeparator12.Name = "toolStripSeparator12";
     this.toolStripSeparator12.Size = new System.Drawing.Size(184, 6);
     //
     // btnProfitReport
     //
     this.btnProfitReport.BackColor = System.Drawing.Color.Transparent;
     this.btnProfitReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnProfitReport.ForeColor = System.Drawing.Color.Navy;
     this.btnProfitReport.Image = ((System.Drawing.Image)(resources.GetObject("btnProfitReport.Image")));
     this.btnProfitReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnProfitReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnProfitReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnProfitReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnProfitReport.Name = "btnProfitReport";
     this.btnProfitReport.Size = new System.Drawing.Size(184, 34);
     this.btnProfitReport.Text = "&Profit/Loss Report";
     this.btnProfitReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnProfitReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(184, 6);
     //
     // btnCurrentCashReport
     //
     this.btnCurrentCashReport.BackColor = System.Drawing.Color.Transparent;
     this.btnCurrentCashReport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnCurrentCashReport.ForeColor = System.Drawing.Color.Navy;
     this.btnCurrentCashReport.Image = ((System.Drawing.Image)(resources.GetObject("btnCurrentCashReport.Image")));
     this.btnCurrentCashReport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCurrentCashReport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnCurrentCashReport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCurrentCashReport.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnCurrentCashReport.Name = "btnCurrentCashReport";
     this.btnCurrentCashReport.Size = new System.Drawing.Size(184, 34);
     this.btnCurrentCashReport.Text = "&Current Cash Report";
     this.btnCurrentCashReport.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnCurrentCashReport.ToolTipText = "Profit/Loss Report";
     this.btnCurrentCashReport.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(184, 6);
     //
     // btnItemTransaction
     //
     this.btnItemTransaction.BackColor = System.Drawing.Color.Transparent;
     this.btnItemTransaction.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
     this.btnItemTransaction.ForeColor = System.Drawing.Color.Navy;
     this.btnItemTransaction.Image = ((System.Drawing.Image)(resources.GetObject("btnItemTransaction.Image")));
     this.btnItemTransaction.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnItemTransaction.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnItemTransaction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItemTransaction.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
     this.btnItemTransaction.Name = "btnItemTransaction";
     this.btnItemTransaction.Size = new System.Drawing.Size(184, 34);
     this.btnItemTransaction.Text = "Item Transaction";
     this.btnItemTransaction.TextImageRelation = System.Windows.Forms.TextImageRelation.Overlay;
     this.btnItemTransaction.ToolTipText = "Item Transaction";
     this.btnItemTransaction.Click += new System.EventHandler(this.btnReport_Click);
     //
     // toolStripSeparator10
     //
     this.toolStripSeparator10.Name = "toolStripSeparator10";
     this.toolStripSeparator10.Size = new System.Drawing.Size(184, 6);
     //
     // statusStrip1
     //
     this.statusStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("statusStrip1.BackgroundImage")));
     this.statusStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel2,
     this.toolStripStatusLabel3,
     this.toolStripStatusLabel4});
     this.statusStrip1.Location = new System.Drawing.Point(187, 663);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.statusStrip1.Size = new System.Drawing.Size(820, 22);
     this.statusStrip1.TabIndex = 3;
     this.statusStrip1.Text = "Imutex 2011";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(0, 17);
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripStatusLabel3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripStatusLabel3.Image")));
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(16, 17);
     this.toolStripStatusLabel3.Text = "toolStripStatusLabel3";
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Bold);
     this.toolStripStatusLabel4.ForeColor = System.Drawing.Color.Navy;
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(0, 17);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.SteelBlue;
     this.panel2.Controls.Add(this.middlePanel);
     this.panel2.Controls.Add(this.topPanel);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(187, 81);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(820, 582);
     this.panel2.TabIndex = 5;
     //
     // middlePanel
     //
     this.middlePanel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("middlePanel.BackgroundImage")));
     this.middlePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.middlePanel.Controls.Add(this.lblSologon);
     this.middlePanel.Controls.Add(this.lbRegistrationNo);
     this.middlePanel.Controls.Add(this.lblPhoneNumber);
     this.middlePanel.Controls.Add(this.lblAdress);
     this.middlePanel.Controls.Add(this.panelToday);
     this.middlePanel.Controls.Add(this.panelClock);
     this.middlePanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.middlePanel.Location = new System.Drawing.Point(0, 70);
     this.middlePanel.Name = "middlePanel";
     this.middlePanel.Size = new System.Drawing.Size(820, 512);
     this.middlePanel.TabIndex = 1;
     //
     // lblSologon
     //
     this.lblSologon.BackColor = System.Drawing.Color.Transparent;
     this.lblSologon.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblSologon.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold);
     this.lblSologon.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblSologon.Location = new System.Drawing.Point(0, 109);
     this.lblSologon.Name = "lblSologon";
     this.lblSologon.Size = new System.Drawing.Size(591, 44);
     this.lblSologon.TabIndex = 10;
     this.lblSologon.Text = "Shop Slogon";
     this.lblSologon.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbRegistrationNo
     //
     this.lbRegistrationNo.BackColor = System.Drawing.Color.Transparent;
     this.lbRegistrationNo.Dock = System.Windows.Forms.DockStyle.Top;
     this.lbRegistrationNo.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbRegistrationNo.ForeColor = System.Drawing.Color.MediumBlue;
     this.lbRegistrationNo.Location = new System.Drawing.Point(0, 77);
     this.lbRegistrationNo.Name = "lbRegistrationNo";
     this.lbRegistrationNo.Size = new System.Drawing.Size(591, 32);
     this.lbRegistrationNo.TabIndex = 9;
     this.lbRegistrationNo.Text = "Shop Reg#";
     this.lbRegistrationNo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblPhoneNumber
     //
     this.lblPhoneNumber.BackColor = System.Drawing.Color.Transparent;
     this.lblPhoneNumber.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblPhoneNumber.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPhoneNumber.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblPhoneNumber.Location = new System.Drawing.Point(0, 39);
     this.lblPhoneNumber.Name = "lblPhoneNumber";
     this.lblPhoneNumber.Size = new System.Drawing.Size(591, 38);
     this.lblPhoneNumber.TabIndex = 8;
     this.lblPhoneNumber.Text = "Shop Phone";
     this.lblPhoneNumber.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblAdress
     //
     this.lblAdress.BackColor = System.Drawing.Color.Transparent;
     this.lblAdress.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblAdress.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAdress.ForeColor = System.Drawing.Color.DarkSlateGray;
     this.lblAdress.Location = new System.Drawing.Point(0, 0);
     this.lblAdress.Name = "lblAdress";
     this.lblAdress.Size = new System.Drawing.Size(591, 39);
     this.lblAdress.TabIndex = 7;
     this.lblAdress.Text = "Shop Address";
     this.lblAdress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panelToday
     //
     this.panelToday.Controls.Add(this.splitContainer1);
     this.panelToday.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelToday.Location = new System.Drawing.Point(0, 213);
     this.panelToday.Name = "panelToday";
     this.panelToday.Size = new System.Drawing.Size(591, 299);
     this.panelToday.TabIndex = 5;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.lvSale);
     this.splitContainer1.Panel1.Controls.Add(this.label2);
     this.splitContainer1.Panel1.Controls.Add(this.label5);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.lvPurchase);
     this.splitContainer1.Panel2.Controls.Add(this.label6);
     this.splitContainer1.Panel2.Controls.Add(this.label4);
     this.splitContainer1.Size = new System.Drawing.Size(591, 299);
     this.splitContainer1.SplitterDistance = 277;
     this.splitContainer1.TabIndex = 0;
     //
     // lvSale
     //
     this.lvSale.BackColor = System.Drawing.Color.Bisque;
     this.lvSale.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvSale.BackgroundImage")));
     this.lvSale.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colSNo,
     this.colRNo,
     this.colCustomer,
     this.colTotal,
     this.colPayment});
     this.lvSale.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvSale.GridLines = true;
     this.lvSale.Location = new System.Drawing.Point(0, 23);
     this.lvSale.Name = "lvSale";
     this.lvSale.Size = new System.Drawing.Size(277, 253);
     this.lvSale.TabIndex = 6;
     this.lvSale.UseCompatibleStateImageBehavior = false;
     this.lvSale.View = System.Windows.Forms.View.Details;
     //
     // colSNo
     //
     this.colSNo.Text = "No";
     this.colSNo.Width = 30;
     //
     // colRNo
     //
     this.colRNo.Text = "Receipt";
     this.colRNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.colRNo.Width = 50;
     //
     // colCustomer
     //
     this.colCustomer.Text = "Customer";
     this.colCustomer.Width = 80;
     //
     // colTotal
     //
     this.colTotal.Text = "Total";
     this.colTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // colPayment
     //
     this.colPayment.Text = "Payment";
     this.colPayment.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Green;
     this.label2.Dock = System.Windows.Forms.DockStyle.Top;
     this.label2.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.Info;
     this.label2.Image = ((System.Drawing.Image)(resources.GetObject("label2.Image")));
     this.label2.Location = new System.Drawing.Point(0, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(277, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Today\'s Sale";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.DeepSkyBlue;
     this.label5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.DarkGreen;
     this.label5.Image = ((System.Drawing.Image)(resources.GetObject("label5.Image")));
     this.label5.Location = new System.Drawing.Point(0, 276);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(277, 23);
     this.label5.TabIndex = 0;
     this.label5.Text = "Total Sale : 0.00";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lvPurchase
     //
     this.lvPurchase.BackColor = System.Drawing.Color.Bisque;
     this.lvPurchase.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvPurchase.BackgroundImage")));
     this.lvPurchase.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5});
     this.lvPurchase.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvPurchase.GridLines = true;
     this.lvPurchase.Location = new System.Drawing.Point(0, 23);
     this.lvPurchase.Name = "lvPurchase";
     this.lvPurchase.Size = new System.Drawing.Size(310, 253);
     this.lvPurchase.TabIndex = 7;
     this.lvPurchase.UseCompatibleStateImageBehavior = false;
     this.lvPurchase.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "No";
     this.columnHeader1.Width = 30;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Invoice";
     this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.columnHeader2.Width = 50;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Supplier";
     this.columnHeader3.Width = 80;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Total";
     this.columnHeader4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Payment";
     this.columnHeader5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.DarkRed;
     this.label6.Dock = System.Windows.Forms.DockStyle.Top;
     this.label6.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Info;
     this.label6.Image = ((System.Drawing.Image)(resources.GetObject("label6.Image")));
     this.label6.Location = new System.Drawing.Point(0, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(310, 23);
     this.label6.TabIndex = 1;
     this.label6.Text = "Today\'s Purchase";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Aqua;
     this.label4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.DarkRed;
     this.label4.Image = ((System.Drawing.Image)(resources.GetObject("label4.Image")));
     this.label4.Location = new System.Drawing.Point(0, 276);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(310, 23);
     this.label4.TabIndex = 0;
     this.label4.Text = "Total Purchase : 0.00 ";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panelClock
     //
     this.panelClock.BackColor = System.Drawing.Color.Transparent;
     this.panelClock.Controls.Add(this.lvStockSummary);
     this.panelClock.Controls.Add(this.btnRefresh);
     this.panelClock.Controls.Add(this.label1);
     this.panelClock.Controls.Add(this.panel1);
     this.panelClock.Dock = System.Windows.Forms.DockStyle.Right;
     this.panelClock.Location = new System.Drawing.Point(591, 0);
     this.panelClock.Name = "panelClock";
     this.panelClock.Size = new System.Drawing.Size(229, 512);
     this.panelClock.TabIndex = 0;
     //
     // lvStockSummary
     //
     this.lvStockSummary.BackColor = System.Drawing.Color.Bisque;
     this.lvStockSummary.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("lvStockSummary.BackgroundImage")));
     this.lvStockSummary.BackgroundImageTiled = true;
     this.lvStockSummary.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colItem,
     this.colStock,
     this.colOnOrder,
     this.colLimit});
     this.lvStockSummary.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvStockSummary.GridLines = true;
     this.lvStockSummary.Location = new System.Drawing.Point(0, 242);
     this.lvStockSummary.Name = "lvStockSummary";
     this.lvStockSummary.Size = new System.Drawing.Size(229, 247);
     this.lvStockSummary.TabIndex = 3;
     this.lvStockSummary.UseCompatibleStateImageBehavior = false;
     this.lvStockSummary.View = System.Windows.Forms.View.Details;
     //
     // colItem
     //
     this.colItem.Text = "Item";
     this.colItem.Width = 70;
     //
     // colStock
     //
     this.colStock.Text = "Stock";
     this.colStock.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colStock.Width = 50;
     //
     // colOnOrder
     //
     this.colOnOrder.Text = "Order";
     this.colOnOrder.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colOnOrder.Width = 50;
     //
     // colLimit
     //
     this.colLimit.Text = "Limit";
     this.colLimit.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.colLimit.Width = 50;
     //
     // btnRefresh
     //
     this.btnRefresh.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.btnRefresh.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRefresh.ForeColor = System.Drawing.Color.Blue;
     this.btnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
     this.btnRefresh.Location = new System.Drawing.Point(0, 489);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(229, 23);
     this.btnRefresh.TabIndex = 2;
     this.btnRefresh.Text = "Refresh";
     this.btnRefresh.UseVisualStyleBackColor = true;
     this.btnRefresh.Click += new System.EventHandler(this.button1_Click);
     //
     // label1
     //
     this.label1.Dock = System.Windows.Forms.DockStyle.Top;
     this.label1.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
     this.label1.Location = new System.Drawing.Point(0, 222);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(229, 20);
     this.label1.TabIndex = 1;
     this.label1.Text = "Short Stock Items ";
     //
     // panel1
     //
     this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.lblWatch);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(229, 222);
     this.panel1.TabIndex = 0;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.monthCalendar1);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 59);
     this.panel3.Margin = new System.Windows.Forms.Padding(2);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(229, 163);
     this.panel3.TabIndex = 7;
     //
     // monthCalendar1
     //
     this.monthCalendar1.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.monthCalendar1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.monthCalendar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.monthCalendar1.Location = new System.Drawing.Point(0, 0);
     this.monthCalendar1.MinDate = new System.DateTime(1970, 1, 1, 0, 0, 0, 0);
     this.monthCalendar1.Name = "monthCalendar1";
     this.monthCalendar1.TabIndex = 8;
     this.monthCalendar1.TitleBackColor = System.Drawing.Color.LightSkyBlue;
     //
     // lblWatch
     //
     this.lblWatch.BackColor = System.Drawing.Color.Transparent;
     this.lblWatch.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblWatch.Font = new System.Drawing.Font("Arial", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblWatch.ForeColor = System.Drawing.Color.OldLace;
     this.lblWatch.Location = new System.Drawing.Point(0, 0);
     this.lblWatch.Name = "lblWatch";
     this.lblWatch.Size = new System.Drawing.Size(229, 59);
     this.lblWatch.TabIndex = 6;
     this.lblWatch.Text = "00:00:00";
     this.lblWatch.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // topPanel
     //
     this.topPanel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("topPanel.BackgroundImage")));
     this.topPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.topPanel.Controls.Add(this.lblShopName);
     this.topPanel.Controls.Add(this.logoPanel);
     this.topPanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.topPanel.Location = new System.Drawing.Point(0, 0);
     this.topPanel.Name = "topPanel";
     this.topPanel.Size = new System.Drawing.Size(820, 70);
     this.topPanel.TabIndex = 0;
     //
     // lblShopName
     //
     this.lblShopName.BackColor = System.Drawing.Color.Transparent;
     this.lblShopName.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblShopName.Font = new System.Drawing.Font("Microsoft Sans Serif", 30F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblShopName.ForeColor = System.Drawing.Color.Lime;
     this.lblShopName.Location = new System.Drawing.Point(0, 0);
     this.lblShopName.Name = "lblShopName";
     this.lblShopName.Size = new System.Drawing.Size(591, 70);
     this.lblShopName.TabIndex = 1;
     this.lblShopName.Text = "Shop Name";
     this.lblShopName.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // logoPanel
     //
     this.logoPanel.BackColor = System.Drawing.Color.Transparent;
     this.logoPanel.Controls.Add(this.label3);
     this.logoPanel.Controls.Add(this.lblPointofSale);
     this.logoPanel.Dock = System.Windows.Forms.DockStyle.Right;
     this.logoPanel.Location = new System.Drawing.Point(591, 0);
     this.logoPanel.Name = "logoPanel";
     this.logoPanel.Size = new System.Drawing.Size(229, 70);
     this.logoPanel.TabIndex = 0;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Lavender;
     this.label3.Location = new System.Drawing.Point(0, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(229, 35);
     this.label3.TabIndex = 1;
     this.label3.Text = "iMutex";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblPointofSale
     //
     this.lblPointofSale.BackColor = System.Drawing.Color.Transparent;
     this.lblPointofSale.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.lblPointofSale.Font = new System.Drawing.Font("Arial Black", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPointofSale.ForeColor = System.Drawing.Color.Lime;
     this.lblPointofSale.Location = new System.Drawing.Point(0, 35);
     this.lblPointofSale.Name = "lblPointofSale";
     this.lblPointofSale.Size = new System.Drawing.Size(229, 35);
     this.lblPointofSale.TabIndex = 0;
     this.lblPointofSale.Text = "Point Of Sale";
     this.lblPointofSale.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 1000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // WelcomeForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1007, 685);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip_Reports);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MainMenuStrip = this.menuStrip1;
     this.MaximumSize = new System.Drawing.Size(1023, 729);
     this.MinimumSize = new System.Drawing.Size(1023, 704);
     this.Name = "WelcomeForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Welcome To iMutex POS";
     this.Load += new System.EventHandler(this.WelcomeForm_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WelcomeForm_KeyDown);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.toolStrip_Reports.ResumeLayout(false);
     this.toolStrip_Reports.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.middlePanel.ResumeLayout(false);
     this.panelToday.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.panelClock.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.topPanel.ResumeLayout(false);
     this.logoPanel.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.statusBar = new System.Windows.Forms.StatusStrip();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.mainMenu = new System.Windows.Forms.MenuStrip();
     this.gameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changeLevelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.restartMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.undoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.backgroundPanel = new System.Windows.Forms.Panel();
     this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.drawingArea = new System.Windows.Forms.PictureBox();
     this.restartButton = new System.Windows.Forms.ToolStripButton();
     this.undoButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.levelCollectionLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.levelLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusBar.SuspendLayout();
     this.mainMenu.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.backgroundPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.drawingArea)).BeginInit();
     this.SuspendLayout();
     //
     // statusBar
     //
     this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1,
     this.statusLabel,
     this.toolStripStatusLabel4,
     this.toolStripStatusLabel2,
     this.levelCollectionLabel,
     this.toolStripStatusLabel3,
     this.levelLabel});
     this.statusBar.Location = new System.Drawing.Point(0, 480);
     this.statusBar.Name = "statusBar";
     this.statusBar.Size = new System.Drawing.Size(742, 24);
     this.statusBar.TabIndex = 1;
     this.statusBar.Text = "statusBar";
     //
     // statusLabel
     //
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(69, 19);
     this.statusLabel.Text = "Not Playing";
     //
     // mainMenu
     //
     this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.gameToolStripMenuItem,
     this.editToolStripMenuItem});
     this.mainMenu.Location = new System.Drawing.Point(0, 0);
     this.mainMenu.Name = "mainMenu";
     this.mainMenu.Size = new System.Drawing.Size(742, 24);
     this.mainMenu.TabIndex = 3;
     this.mainMenu.Text = "menuStrip2";
     //
     // gameToolStripMenuItem
     //
     this.gameToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.changeLevelMenuItem,
     this.restartMenuItem,
     this.toolStripSeparator1,
     this.exitMenuItem});
     this.gameToolStripMenuItem.Name = "gameToolStripMenuItem";
     this.gameToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
     this.gameToolStripMenuItem.Text = "Game";
     //
     // changeLevelMenuItem
     //
     this.changeLevelMenuItem.Name = "changeLevelMenuItem";
     this.changeLevelMenuItem.Size = new System.Drawing.Size(152, 22);
     this.changeLevelMenuItem.Text = "Change Level";
     this.changeLevelMenuItem.Click += new System.EventHandler(this.changeLevelMenuItem_Click);
     //
     // restartMenuItem
     //
     this.restartMenuItem.Enabled = false;
     this.restartMenuItem.Name = "restartMenuItem";
     this.restartMenuItem.Size = new System.Drawing.Size(152, 22);
     this.restartMenuItem.Text = "Restart Level";
     this.restartMenuItem.Click += new System.EventHandler(this.restartMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.undoMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "Edit";
     //
     // undoMenuItem
     //
     this.undoMenuItem.Enabled = false;
     this.undoMenuItem.Name = "undoMenuItem";
     this.undoMenuItem.Size = new System.Drawing.Size(152, 22);
     this.undoMenuItem.Text = "Undo Move";
     this.undoMenuItem.Click += new System.EventHandler(this.undoMenuItem_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.restartButton,
     this.toolStripSeparator2,
     this.undoButton});
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(742, 25);
     this.toolStrip1.TabIndex = 4;
     this.toolStrip1.Text = "toolStrip1";
     //
     // backgroundPanel
     //
     this.backgroundPanel.BackColor = System.Drawing.Color.Khaki;
     this.backgroundPanel.Controls.Add(this.drawingArea);
     this.backgroundPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.backgroundPanel.Location = new System.Drawing.Point(0, 49);
     this.backgroundPanel.Name = "backgroundPanel";
     this.backgroundPanel.Size = new System.Drawing.Size(742, 431);
     this.backgroundPanel.TabIndex = 6;
     //
     // exitMenuItem
     //
     this.exitMenuItem.Name = "exitMenuItem";
     this.exitMenuItem.Size = new System.Drawing.Size(152, 22);
     this.exitMenuItem.Text = "Exit";
     this.exitMenuItem.Click += new System.EventHandler(this.exitMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // drawingArea
     //
     this.drawingArea.BackgroundImage = global::SokobanNET.Properties.Resources.Floor;
     this.drawingArea.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.drawingArea.Location = new System.Drawing.Point(0, 0);
     this.drawingArea.Name = "drawingArea";
     this.drawingArea.Size = new System.Drawing.Size(315, 249);
     this.drawingArea.TabIndex = 1;
     this.drawingArea.TabStop = false;
     this.drawingArea.Visible = false;
     this.drawingArea.Paint += new System.Windows.Forms.PaintEventHandler(this.drawingArea_Paint);
     //
     // restartButton
     //
     this.restartButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.restartButton.Enabled = false;
     this.restartButton.Image = global::SokobanNET.Properties.Resources.Restart;
     this.restartButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.restartButton.Name = "restartButton";
     this.restartButton.Size = new System.Drawing.Size(23, 22);
     this.restartButton.Text = "Restart Level";
     this.restartButton.Click += new System.EventHandler(this.restartButton_Click);
     //
     // undoButton
     //
     this.undoButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.undoButton.Enabled = false;
     this.undoButton.Image = ((System.Drawing.Image)(resources.GetObject("undoButton.Image")));
     this.undoButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.undoButton.Name = "undoButton";
     this.undoButton.Size = new System.Drawing.Size(23, 22);
     this.undoButton.Text = "Undo Movement";
     this.undoButton.Click += new System.EventHandler(this.undoButton_Click);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(42, 19);
     this.toolStripStatusLabel1.Text = "Status:";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel2.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(68, 19);
     this.toolStripStatusLabel2.Text = "Collection:";
     //
     // levelCollectionLabel
     //
     this.levelCollectionLabel.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
     this.levelCollectionLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
     this.levelCollectionLabel.Name = "levelCollectionLabel";
     this.levelCollectionLabel.Size = new System.Drawing.Size(4, 19);
     //
     // toolStripStatusLabel3
     //
     this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
     this.toolStripStatusLabel3.Size = new System.Drawing.Size(37, 19);
     this.toolStripStatusLabel3.Text = "Level:";
     //
     // levelLabel
     //
     this.levelLabel.Name = "levelLabel";
     this.levelLabel.Size = new System.Drawing.Size(0, 19);
     //
     // toolStripStatusLabel4
     //
     this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
     this.toolStripStatusLabel4.Size = new System.Drawing.Size(524, 19);
     this.toolStripStatusLabel4.Spring = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(742, 504);
     this.Controls.Add(this.backgroundPanel);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.mainMenu);
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "SokobanNET";
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
     this.statusBar.ResumeLayout(false);
     this.statusBar.PerformLayout();
     this.mainMenu.ResumeLayout(false);
     this.mainMenu.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.backgroundPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.drawingArea)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_reporte_diferenciaInvRollos));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.chkDiferencias = new DevExpress.XtraEditors.CheckEdit();
     this.cmb_fechas = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.rollo = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.productname = new System.Windows.Forms.TextBox();
     this.productid = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.lineaname = new System.Windows.Forms.TextBox();
     this.lineaid = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_buscar = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_imprimir_gen = new System.Windows.Forms.ToolStripButton();
     this.btn_excel = new System.Windows.Forms.ToolStripButton();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkDiferencias.Properties)).BeginInit();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.chkDiferencias);
     this.groupBox1.Controls.Add(this.cmb_fechas);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.rollo);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.productname);
     this.groupBox1.Controls.Add(this.productid);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.lineaname);
     this.groupBox1.Controls.Add(this.lineaid);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(0, 83);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(514, 114);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // chkDiferencias
     //
     this.chkDiferencias.Location = new System.Drawing.Point(248, 89);
     this.chkDiferencias.Name = "chkDiferencias";
     this.chkDiferencias.Properties.Caption = "Solo Diferencias";
     this.chkDiferencias.Size = new System.Drawing.Size(95, 19);
     this.chkDiferencias.TabIndex = 89;
     //
     // cmb_fechas
     //
     this.cmb_fechas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_fechas.FormattingEnabled = true;
     this.cmb_fechas.Location = new System.Drawing.Point(102, 87);
     this.cmb_fechas.Name = "cmb_fechas";
     this.cmb_fechas.Size = new System.Drawing.Size(121, 21);
     this.cmb_fechas.TabIndex = 88;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(53, 89);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(46, 13);
     this.label3.TabIndex = 87;
     this.label3.Text = "Fecha:";
     //
     // rollo
     //
     this.rollo.Location = new System.Drawing.Point(103, 64);
     this.rollo.MaxLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.Size = new System.Drawing.Size(60, 21);
     this.rollo.TabIndex = 84;
     this.rollo.Text = "ventas al exterior";
     this.rollo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rollo_KeyDown);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(57, 66);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(40, 13);
     this.label8.TabIndex = 83;
     this.label8.Text = "Rollo:";
     //
     // productname
     //
     this.productname.Location = new System.Drawing.Point(188, 42);
     this.productname.Name = "productname";
     this.productname.Size = new System.Drawing.Size(317, 21);
     this.productname.TabIndex = 79;
     this.productname.Text = "ventas al exterior";
     //
     // productid
     //
     this.productid.Location = new System.Drawing.Point(103, 42);
     this.productid.MaxLength = 13;
     this.productid.Name = "productid";
     this.productid.Size = new System.Drawing.Size(83, 21);
     this.productid.TabIndex = 78;
     this.productid.Text = "ventas al exterior";
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(35, 45);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(62, 13);
     this.label2.TabIndex = 77;
     this.label2.Text = "Producto:";
     //
     // lineaname
     //
     this.lineaname.Location = new System.Drawing.Point(149, 20);
     this.lineaname.Name = "lineaname";
     this.lineaname.Size = new System.Drawing.Size(282, 21);
     this.lineaname.TabIndex = 17;
     this.lineaname.Text = "ventas al exterior";
     //
     // lineaid
     //
     this.lineaid.Location = new System.Drawing.Point(102, 20);
     this.lineaid.MaxLength = 13;
     this.lineaid.Name = "lineaid";
     this.lineaid.Size = new System.Drawing.Size(47, 21);
     this.lineaid.TabIndex = 16;
     this.lineaid.Text = "ventas al exterior";
     this.lineaid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lineaid_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(54, 23);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(42, 13);
     this.label1.TabIndex = 21;
     this.label1.Text = "Linea:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(514, 50);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(69, 12);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(414, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "CONCILIACIÓN DE INVENTARIO X ROLLO";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_buscar
     //
     this.btn_buscar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_buscar.Image = ((System.Drawing.Image)(resources.GetObject("btn_buscar.Image")));
     this.btn_buscar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_buscar.Name = "btn_buscar";
     this.btn_buscar.Size = new System.Drawing.Size(26, 26);
     this.btn_buscar.Text = "toolStripButton15";
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_cancelar,
     this.toolStripSeparator1,
     this.btn_imprimir,
     this.btn_imprimir_gen,
     this.btn_excel,
     this.toolStripSeparator2,
     this.btn_buscar,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(516, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_imprimir_gen
     //
     this.btn_imprimir_gen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir_gen.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir_gen.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir_gen.Name = "btn_imprimir_gen";
     this.btn_imprimir_gen.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir_gen.Text = "Impresion General";
     this.btn_imprimir_gen.Click += new System.EventHandler(this.btn_imprimir_gen_Click);
     //
     // btn_excel
     //
     this.btn_excel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_excel.Image = global::BapFormulariosNet.Properties.Resources.btn_excel20;
     this.btn_excel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_excel.Name = "btn_excel";
     this.btn_excel.Size = new System.Drawing.Size(26, 26);
     this.btn_excel.Text = "toolStripButton1";
     this.btn_excel.ToolTipText = "Excel";
     //
     // Frm_reporte_diferenciaInvRollos
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(516, 200);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_reporte_diferenciaInvRollos";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "INV :: CONCILIACIÓN DE INVENTARIO X ROLLO";
     this.Load += new System.EventHandler(this.Frm_reporte_stockrollo_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkDiferencias.Properties)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Filmes));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label18 = new System.Windows.Forms.Label();
     this.Genero = new System.Windows.Forms.GroupBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tb_Quantidade = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.tb_titulo = new System.Windows.Forms.TextBox();
     this.tb_anoprod = new System.Windows.Forms.TextBox();
     this.tb_subtitulo = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.tb_duracao = new System.Windows.Forms.TextBox();
     this.tb_produtora = new System.Windows.Forms.TextBox();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.Voltar = new System.Windows.Forms.ToolStrip();
     this.Retornar = new System.Windows.Forms.ToolStripButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rb_genero = new System.Windows.Forms.RadioButton();
     this.rb_nome = new System.Windows.Forms.RadioButton();
     this.Bt_Pesquisar = new System.Windows.Forms.Button();
     this.tb_VerPesquisa = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.tbCodAltEx = new System.Windows.Forms.TextBox();
     this.dgFilmes = new System.Windows.Forms.DataGridView();
     this.button3 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.Genero.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.Voltar.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFilmes)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Location = new System.Drawing.Point(0, 2);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(634, 460);
     this.tabControl1.TabIndex = 5;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage1.BackgroundImage")));
     this.tabPage1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage1.Controls.Add(this.groupBox3);
     this.tabPage1.Controls.Add(this.toolStrip1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(626, 434);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Cadastrar Filme";
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.Transparent;
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.Genero);
     this.groupBox3.Controls.Add(this.comboBox1);
     this.groupBox3.Controls.Add(this.label1);
     this.groupBox3.Controls.Add(this.tb_Quantidade);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.button2);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.button1);
     this.groupBox3.Controls.Add(this.tb_titulo);
     this.groupBox3.Controls.Add(this.tb_anoprod);
     this.groupBox3.Controls.Add(this.tb_subtitulo);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.tb_duracao);
     this.groupBox3.Controls.Add(this.tb_produtora);
     this.groupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox3.Location = new System.Drawing.Point(22, 6);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(583, 390);
     this.groupBox3.TabIndex = 19;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Cadastrar Novo Filme";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Verdana", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.SystemColors.Control;
     this.label18.Location = new System.Drawing.Point(396, 19);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(150, 12);
     this.label18.TabIndex = 52;
     this.label18.Text = "( * ) Campos Obrigatórios";
     //
     // Genero
     //
     this.Genero.Controls.Add(this.label16);
     this.Genero.Controls.Add(this.label15);
     this.Genero.Controls.Add(this.label14);
     this.Genero.Controls.Add(this.label12);
     this.Genero.Controls.Add(this.label11);
     this.Genero.Controls.Add(this.label10);
     this.Genero.Controls.Add(this.label9);
     this.Genero.Controls.Add(this.label8);
     this.Genero.Controls.Add(this.label17);
     this.Genero.Enabled = false;
     this.Genero.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.Genero.ForeColor = System.Drawing.SystemColors.Control;
     this.Genero.Location = new System.Drawing.Point(41, 322);
     this.Genero.Name = "Genero";
     this.Genero.Size = new System.Drawing.Size(490, 61);
     this.Genero.TabIndex = 38;
     this.Genero.TabStop = false;
     this.Genero.Text = "Genero";
     //
     // label16
     //
     this.label16.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.label16.AutoSize = true;
     this.label16.Enabled = false;
     this.label16.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label16.Location = new System.Drawing.Point(411, 17);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(65, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "O - Outros";
     //
     // label15
     //
     this.label15.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.label15.AutoSize = true;
     this.label15.Enabled = false;
     this.label15.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label15.Location = new System.Drawing.Point(305, 39);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(107, 13);
     this.label15.TabIndex = 7;
     this.label15.Text = "M - Documentário";
     //
     // label14
     //
     this.label14.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.label14.AutoSize = true;
     this.label14.Enabled = false;
     this.label14.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label14.Location = new System.Drawing.Point(97, 37);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(61, 13);
     this.label14.TabIndex = 6;
     this.label14.Text = "T - Terror";
     //
     // label12
     //
     this.label12.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.label12.AutoSize = true;
     this.label12.Enabled = false;
     this.label12.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label12.Location = new System.Drawing.Point(6, 38);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(64, 13);
     this.label12.TabIndex = 5;
     this.label12.Text = "F - Ficção";
     //
     // label11
     //
     this.label11.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.label11.AutoSize = true;
     this.label11.Enabled = false;
     this.label11.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label11.Location = new System.Drawing.Point(305, 17);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(64, 13);
     this.label11.TabIndex = 4;
     this.label11.Text = "D - Drama";
     //
     // label10
     //
     this.label10.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.label10.AutoSize = true;
     this.label10.Enabled = false;
     this.label10.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label10.Location = new System.Drawing.Point(190, 37);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(81, 13);
     this.label10.TabIndex = 3;
     this.label10.Text = "R - Romance";
     //
     // label9
     //
     this.label9.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.label9.AutoSize = true;
     this.label9.Enabled = false;
     this.label9.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label9.Location = new System.Drawing.Point(190, 16);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(75, 13);
     this.label9.TabIndex = 2;
     this.label9.Text = "C - Comédia";
     //
     // label8
     //
     this.label8.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.label8.AutoSize = true;
     this.label8.Enabled = false;
     this.label8.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label8.Location = new System.Drawing.Point(96, 16);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(78, 13);
     this.label8.TabIndex = 1;
     this.label8.Text = "V - Aventura";
     //
     // label17
     //
     this.label17.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.label17.AutoSize = true;
     this.label17.Enabled = false;
     this.label17.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label17.Location = new System.Drawing.Point(6, 16);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(63, 13);
     this.label17.TabIndex = 0;
     this.label17.Text = "A - ação  ";
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "A",
     "V",
     "C",
     "D",
     "R",
     "F",
     "T",
     "M",
     "O"});
     this.comboBox1.Location = new System.Drawing.Point(153, 138);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(57, 24);
     this.comboBox1.TabIndex = 19;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(62, 49);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Título *";
     //
     // tb_Quantidade
     //
     this.tb_Quantidade.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_Quantidade.Location = new System.Drawing.Point(153, 239);
     this.tb_Quantidade.Name = "tb_Quantidade";
     this.tb_Quantidade.Size = new System.Drawing.Size(123, 23);
     this.tb_Quantidade.TabIndex = 18;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(62, 194);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(93, 16);
     this.label2.TabIndex = 1;
     this.label2.Text = "Produtora *";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(62, 242);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(92, 16);
     this.label13.TabIndex = 17;
     this.label13.Text = "Quantidade";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(62, 95);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(73, 16);
     this.label3.TabIndex = 2;
     this.label3.Text = "Subtítulo";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(62, 141);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 16);
     this.label4.TabIndex = 3;
     this.label4.Text = "Genero  *";
     //
     // button2
     //
     this.button2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button2.Location = new System.Drawing.Point(388, 235);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(107, 31);
     this.button2.TabIndex = 15;
     this.button2.Text = "&Cadastrar Filme";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(305, 198);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(73, 16);
     this.label5.TabIndex = 4;
     this.label5.Text = "Duração:";
     //
     // button1
     //
     this.button1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button1.Location = new System.Drawing.Point(388, 272);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(107, 31);
     this.button1.TabIndex = 14;
     this.button1.Text = "&Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // tb_titulo
     //
     this.tb_titulo.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_titulo.Location = new System.Drawing.Point(153, 46);
     this.tb_titulo.Name = "tb_titulo";
     this.tb_titulo.Size = new System.Drawing.Size(342, 23);
     this.tb_titulo.TabIndex = 6;
     //
     // tb_anoprod
     //
     this.tb_anoprod.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_anoprod.Location = new System.Drawing.Point(384, 136);
     this.tb_anoprod.Name = "tb_anoprod";
     this.tb_anoprod.Size = new System.Drawing.Size(111, 23);
     this.tb_anoprod.TabIndex = 13;
     //
     // tb_subtitulo
     //
     this.tb_subtitulo.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_subtitulo.Location = new System.Drawing.Point(153, 95);
     this.tb_subtitulo.Name = "tb_subtitulo";
     this.tb_subtitulo.Size = new System.Drawing.Size(342, 23);
     this.tb_subtitulo.TabIndex = 7;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(243, 143);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(143, 16);
     this.label7.TabIndex = 12;
     this.label7.Text = "Ano de Produção *";
     //
     // tb_duracao
     //
     this.tb_duracao.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_duracao.Location = new System.Drawing.Point(384, 195);
     this.tb_duracao.Name = "tb_duracao";
     this.tb_duracao.Size = new System.Drawing.Size(111, 23);
     this.tb_duracao.TabIndex = 8;
     //
     // tb_produtora
     //
     this.tb_produtora.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_produtora.Location = new System.Drawing.Point(153, 194);
     this.tb_produtora.Name = "tb_produtora";
     this.tb_produtora.Size = new System.Drawing.Size(123, 23);
     this.tb_produtora.TabIndex = 9;
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.Transparent;
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1});
     this.toolStrip1.Location = new System.Drawing.Point(3, 392);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(620, 39);
     this.toolStrip1.TabIndex = 49;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripButton1.ForeColor = System.Drawing.SystemColors.Control;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(112, 36);
     this.toolStripButton1.Text = "Retornar";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage4.BackgroundImage")));
     this.tabPage4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage4.Controls.Add(this.Voltar);
     this.tabPage4.Controls.Add(this.groupBox2);
     this.tabPage4.Controls.Add(this.label6);
     this.tabPage4.Controls.Add(this.tbCodAltEx);
     this.tabPage4.Controls.Add(this.dgFilmes);
     this.tabPage4.Controls.Add(this.button3);
     this.tabPage4.Controls.Add(this.button4);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(626, 434);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Alterar ou Excluir Filme";
     this.tabPage4.Enter += new System.EventHandler(this.tabPage4_Enter);
     //
     // Voltar
     //
     this.Voltar.BackColor = System.Drawing.Color.Transparent;
     this.Voltar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.Voltar.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.Voltar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Retornar});
     this.Voltar.Location = new System.Drawing.Point(3, 392);
     this.Voltar.Name = "Voltar";
     this.Voltar.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.Voltar.Size = new System.Drawing.Size(620, 39);
     this.Voltar.TabIndex = 48;
     this.Voltar.Text = "toolStrip1";
     //
     // Retornar
     //
     this.Retornar.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Retornar.ForeColor = System.Drawing.SystemColors.Control;
     this.Retornar.Image = ((System.Drawing.Image)(resources.GetObject("Retornar.Image")));
     this.Retornar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Retornar.Name = "Retornar";
     this.Retornar.Size = new System.Drawing.Size(112, 36);
     this.Retornar.Text = "Retornar";
     this.Retornar.Click += new System.EventHandler(this.Retornar_Click);
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.Bt_Pesquisar);
     this.groupBox2.Controls.Add(this.tb_VerPesquisa);
     this.groupBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox2.Location = new System.Drawing.Point(8, 6);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(615, 86);
     this.groupBox2.TabIndex = 38;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Pesquisa De filme";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rb_genero);
     this.groupBox1.Controls.Add(this.rb_nome);
     this.groupBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox1.Location = new System.Drawing.Point(458, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(154, 68);
     this.groupBox1.TabIndex = 37;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Tipo De Pesquisa";
     //
     // rb_genero
     //
     this.rb_genero.AutoSize = true;
     this.rb_genero.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rb_genero.Location = new System.Drawing.Point(20, 48);
     this.rb_genero.Name = "rb_genero";
     this.rb_genero.Size = new System.Drawing.Size(106, 20);
     this.rb_genero.TabIndex = 34;
     this.rb_genero.Text = "Por Genero";
     this.rb_genero.UseVisualStyleBackColor = true;
     //
     // rb_nome
     //
     this.rb_nome.AutoSize = true;
     this.rb_nome.Checked = true;
     this.rb_nome.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rb_nome.Location = new System.Drawing.Point(20, 22);
     this.rb_nome.Name = "rb_nome";
     this.rb_nome.Size = new System.Drawing.Size(96, 20);
     this.rb_nome.TabIndex = 32;
     this.rb_nome.TabStop = true;
     this.rb_nome.Text = "Por Nome";
     this.rb_nome.UseVisualStyleBackColor = true;
     //
     // Bt_Pesquisar
     //
     this.Bt_Pesquisar.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bt_Pesquisar.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Bt_Pesquisar.Location = new System.Drawing.Point(324, 35);
     this.Bt_Pesquisar.Name = "Bt_Pesquisar";
     this.Bt_Pesquisar.Size = new System.Drawing.Size(95, 26);
     this.Bt_Pesquisar.TabIndex = 31;
     this.Bt_Pesquisar.Text = "Pesquisar";
     this.Bt_Pesquisar.UseVisualStyleBackColor = true;
     this.Bt_Pesquisar.Click += new System.EventHandler(this.Bt_Pesquisar_Click);
     //
     // tb_VerPesquisa
     //
     this.tb_VerPesquisa.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_VerPesquisa.Location = new System.Drawing.Point(6, 38);
     this.tb_VerPesquisa.Name = "tb_VerPesquisa";
     this.tb_VerPesquisa.Size = new System.Drawing.Size(248, 23);
     this.tb_VerPesquisa.TabIndex = 33;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Control;
     this.label6.Location = new System.Drawing.Point(6, 105);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(184, 16);
     this.label6.TabIndex = 36;
     this.label6.Text = "Digite o Código do filme:";
     //
     // tbCodAltEx
     //
     this.tbCodAltEx.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbCodAltEx.Location = new System.Drawing.Point(14, 124);
     this.tbCodAltEx.Name = "tbCodAltEx";
     this.tbCodAltEx.Size = new System.Drawing.Size(248, 23);
     this.tbCodAltEx.TabIndex = 35;
     //
     // dgFilmes
     //
     this.dgFilmes.AllowUserToAddRows = false;
     this.dgFilmes.AllowUserToDeleteRows = false;
     this.dgFilmes.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.dgFilmes.BackgroundColor = System.Drawing.SystemColors.ButtonFace;
     this.dgFilmes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgFilmes.GridColor = System.Drawing.SystemColors.ControlText;
     this.dgFilmes.Location = new System.Drawing.Point(6, 156);
     this.dgFilmes.Name = "dgFilmes";
     this.dgFilmes.ReadOnly = true;
     this.dgFilmes.Size = new System.Drawing.Size(614, 230);
     this.dgFilmes.TabIndex = 30;
     //
     // button3
     //
     this.button3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.Location = new System.Drawing.Point(332, 124);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(95, 26);
     this.button3.TabIndex = 29;
     this.button3.Text = "&Alterar";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button4
     //
     this.button4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.Location = new System.Drawing.Point(466, 124);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(95, 26);
     this.button4.TabIndex = 28;
     this.button4.Text = "&Excluir";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // Filmes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(634, 462);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.IsMdiContainer = true;
     this.Name = "Filmes";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Filmes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Filmes_FormClosing);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.Genero.ResumeLayout(false);
     this.Genero.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.Voltar.ResumeLayout(false);
     this.Voltar.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFilmes)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZedGraphToolstrip));
     this.toolStripZed = new System.Windows.Forms.ToolStrip();
     this.showPointValuesButton = new System.Windows.Forms.ToolStripButton();
     this.cursorValuesButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.saveImageButton = new System.Windows.Forms.ToolStripButton();
     this.copyImageButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.pageSetupButton = new System.Windows.Forms.ToolStripButton();
     this.printPreviewButton = new System.Windows.Forms.ToolStripButton();
     this.printImagesButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.zoomInButton = new System.Windows.Forms.ToolStripButton();
     this.zoomOutButton = new System.Windows.Forms.ToolStripButton();
     this.defaultScaleButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.activateScrollButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripZed.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripZed
     //
     this.toolStripZed.Dock = System.Windows.Forms.DockStyle.Left;
     this.toolStripZed.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripZed.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showPointValuesButton,
     this.cursorValuesButton,
     this.toolStripSeparator5,
     this.saveImageButton,
     this.copyImageButton,
     this.toolStripSeparator6,
     this.pageSetupButton,
     this.printPreviewButton,
     this.printImagesButton,
     this.toolStripSeparator7,
     this.zoomInButton,
     this.zoomOutButton,
     this.defaultScaleButton,
     this.toolStripSeparator8,
     this.activateScrollButton});
     this.toolStripZed.Location = new System.Drawing.Point(0, 0);
     this.toolStripZed.Name = "toolStripZed";
     this.toolStripZed.Size = new System.Drawing.Size(32, 345);
     this.toolStripZed.TabIndex = 0;
     this.toolStripZed.Text = "toolStrip1";
     //
     // showPointValuesButton
     //
     this.showPointValuesButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.showPointValuesButton.Image = global::zaitun.Properties.Resources.point_values;
     this.showPointValuesButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.showPointValuesButton.Name = "showPointValuesButton";
     this.showPointValuesButton.Size = new System.Drawing.Size(29, 20);
     this.showPointValuesButton.Text = "Show Point Values";
     this.showPointValuesButton.Click += new System.EventHandler(this.showPointButtonClick);
     //
     // cursorValuesButton
     //
     this.cursorValuesButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cursorValuesButton.Image = global::zaitun.Properties.Resources.cursor_value;
     this.cursorValuesButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cursorValuesButton.Name = "cursorValuesButton";
     this.cursorValuesButton.Size = new System.Drawing.Size(29, 20);
     this.cursorValuesButton.Text = "Shor Cursor Values";
     this.cursorValuesButton.Click += new System.EventHandler(this.cursorValuesButton_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(21, 6);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(21, 6);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(21, 6);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(21, 6);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(29, 20);
     this.toolStripButton1.Text = "toolStripButton1";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(29, 6);
     //
     // saveImageButton
     //
     this.saveImageButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveImageButton.Image = global::zaitun.Properties.Resources.ico_alpha_Save_16x16;
     this.saveImageButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveImageButton.Name = "saveImageButton";
     this.saveImageButton.Size = new System.Drawing.Size(29, 20);
     this.saveImageButton.Text = "Save Image As..";
     this.saveImageButton.Click += new System.EventHandler(this.saveImageButton_Click);
     //
     // copyImageButton
     //
     this.copyImageButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyImageButton.Image = global::zaitun.Properties.Resources.copy1;
     this.copyImageButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyImageButton.Name = "copyImageButton";
     this.copyImageButton.Size = new System.Drawing.Size(29, 20);
     this.copyImageButton.Text = "Copy Image";
     this.copyImageButton.Click += new System.EventHandler(this.copyImageButton_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(29, 6);
     //
     // pageSetupButton
     //
     this.pageSetupButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pageSetupButton.Image = global::zaitun.Properties.Resources.Print_16;
     this.pageSetupButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.pageSetupButton.Name = "pageSetupButton";
     this.pageSetupButton.Size = new System.Drawing.Size(29, 20);
     this.pageSetupButton.Text = "Page Setup";
     this.pageSetupButton.Click += new System.EventHandler(this.pageSetupButton_Click);
     //
     // printPreviewButton
     //
     this.printPreviewButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.printPreviewButton.Image = global::zaitun.Properties.Resources.print_preview;
     this.printPreviewButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printPreviewButton.Name = "printPreviewButton";
     this.printPreviewButton.Size = new System.Drawing.Size(29, 20);
     this.printPreviewButton.Text = "Print Preview";
     this.printPreviewButton.Click += new System.EventHandler(this.printPreviewButton_Click);
     //
     // printImagesButton
     //
     this.printImagesButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.printImagesButton.Image = global::zaitun.Properties.Resources.Printer_32;
     this.printImagesButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printImagesButton.Name = "printImagesButton";
     this.printImagesButton.Size = new System.Drawing.Size(29, 20);
     this.printImagesButton.Text = "Print Image";
     this.printImagesButton.Click += new System.EventHandler(this.printImageButton_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(29, 6);
     //
     // zoomInButton
     //
     this.zoomInButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.zoomInButton.Image = global::zaitun.Properties.Resources.zoomIN_24x24;
     this.zoomInButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.zoomInButton.Name = "zoomInButton";
     this.zoomInButton.Size = new System.Drawing.Size(29, 20);
     this.zoomInButton.Text = "Zoom In";
     this.zoomInButton.Click += new System.EventHandler(this.zoomInButton_Click);
     //
     // zoomOutButton
     //
     this.zoomOutButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.zoomOutButton.Image = global::zaitun.Properties.Resources.zoomOUT_24x24;
     this.zoomOutButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.zoomOutButton.Name = "zoomOutButton";
     this.zoomOutButton.Size = new System.Drawing.Size(29, 20);
     this.zoomOutButton.Text = "Back To Previous Zoom";
     this.zoomOutButton.Click += new System.EventHandler(this.zoomOutButton_Click);
     //
     // defaultScaleButton
     //
     this.defaultScaleButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.defaultScaleButton.Image = global::zaitun.Properties.Resources.ico_alpha_Search_24x24;
     this.defaultScaleButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.defaultScaleButton.Name = "defaultScaleButton";
     this.defaultScaleButton.Size = new System.Drawing.Size(29, 20);
     this.defaultScaleButton.Text = "Set Scale To Default";
     this.defaultScaleButton.Click += new System.EventHandler(this.defaultScaleButton_Click);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(29, 6);
     //
     // activateScrollButton
     //
     this.activateScrollButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.activateScrollButton.Image = global::zaitun.Properties.Resources.ico_alpha_Mouse_16x16;
     this.activateScrollButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.activateScrollButton.Name = "activateScrollButton";
     this.activateScrollButton.Size = new System.Drawing.Size(29, 20);
     this.activateScrollButton.Text = "Activate Zoom Scrolling";
     this.activateScrollButton.Click += new System.EventHandler(this.activateScrollButton_Click);
     //
     // ZedGraphToolstrip
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.toolStripZed);
     this.Name = "ZedGraphToolstrip";
     this.Size = new System.Drawing.Size(43, 345);
     this.toolStripZed.ResumeLayout(false);
     this.toolStripZed.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 51
0
 public MyToolbar()
 {
    this.toolStrip = new System.Windows.Forms.ToolStrip();
 }
        /// <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.ToolStrip toolStrip1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmModelo));
            this.tbIncluir = new System.Windows.Forms.ToolStripButton();
            this.tbAlterar = new System.Windows.Forms.ToolStripButton();
            this.tbExcluir = new System.Windows.Forms.ToolStripButton();
            this.tbAtualizar = new System.Windows.Forms.ToolStripButton();
            this.tbImprimir = new System.Windows.Forms.ToolStripButton();
            this.tbVoltar = new System.Windows.Forms.ToolStripButton();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label13 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btn01 = new System.Windows.Forms.Button();
            this.btn02 = new System.Windows.Forms.Button();
            this.cbxSelecionaFornecedor = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.cboUnidadeMedida = new System.Windows.Forms.ComboBox();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.txtCodigo = new System.Windows.Forms.TextBox();
            this.txtPrecoCusto = new System.Windows.Forms.TextBox();
            this.txtDescricao = new System.Windows.Forms.TextBox();
            this.txtPrecoVenda = new System.Windows.Forms.TextBox();
            this.dtgProdutos = new System.Windows.Forms.DataGridView();
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.rdbDesc = new System.Windows.Forms.RadioButton();
            this.rdbCresc = new System.Windows.Forms.RadioButton();
            this.label8 = new System.Windows.Forms.Label();
            this.txtConsulta = new System.Windows.Forms.MaskedTextBox();
            this.cbxPesquisar = new System.Windows.Forms.ComboBox();
            this.cbxOrdenar = new System.Windows.Forms.ComboBox();
            this.label10 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.label9 = new System.Windows.Forms.Label();
            this.btnPesquisa = new System.Windows.Forms.Button();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.panel5 = new System.Windows.Forms.Panel();
            this.panel4 = new System.Windows.Forms.Panel();
            this.btnGerarRelatorio = new System.Windows.Forms.Button();
            this.label11 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
            toolStrip1 = new System.Windows.Forms.ToolStrip();
            toolStrip1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtgProdutos)).BeginInit();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel4.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            toolStrip1.AutoSize = false;
            toolStrip1.BackColor = System.Drawing.Color.White;
            toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            toolStrip1.GripMargin = new System.Windows.Forms.Padding(0);
            toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tbIncluir,
            this.tbAlterar,
            this.tbExcluir,
            this.tbAtualizar,
            this.tbImprimir,
            this.tbVoltar});
            toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow;
            toolStrip1.Location = new System.Drawing.Point(2, 0);
            toolStrip1.Name = "toolStrip1";
            toolStrip1.Padding = new System.Windows.Forms.Padding(0);
            toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            toolStrip1.ShowItemToolTips = false;
            toolStrip1.Size = new System.Drawing.Size(69, 506);
            toolStrip1.TabIndex = 94;
            toolStrip1.Text = "toolStrip1";
            // 
            // tbIncluir
            // 
            this.tbIncluir.Image = ((System.Drawing.Image)(resources.GetObject("tbIncluir.Image")));
            this.tbIncluir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbIncluir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbIncluir.Name = "tbIncluir";
            this.tbIncluir.Size = new System.Drawing.Size(68, 81);
            this.tbIncluir.Text = "Incluir";
            this.tbIncluir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbIncluir.ToolTipText = "Clique parar incluir um registro";
            // 
            // tbAlterar
            // 
            this.tbAlterar.Image = ((System.Drawing.Image)(resources.GetObject("tbAlterar.Image")));
            this.tbAlterar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbAlterar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbAlterar.Name = "tbAlterar";
            this.tbAlterar.Size = new System.Drawing.Size(68, 81);
            this.tbAlterar.Text = "Alterar";
            this.tbAlterar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbAlterar.ToolTipText = "Clique para alterar um registro";
            // 
            // tbExcluir
            // 
            this.tbExcluir.Image = ((System.Drawing.Image)(resources.GetObject("tbExcluir.Image")));
            this.tbExcluir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbExcluir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbExcluir.Name = "tbExcluir";
            this.tbExcluir.Size = new System.Drawing.Size(68, 81);
            this.tbExcluir.Text = "Excluir";
            this.tbExcluir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbExcluir.ToolTipText = "Clique para excluir um registro";
            // 
            // tbAtualizar
            // 
            this.tbAtualizar.Image = ((System.Drawing.Image)(resources.GetObject("tbAtualizar.Image")));
            this.tbAtualizar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbAtualizar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbAtualizar.Name = "tbAtualizar";
            this.tbAtualizar.Size = new System.Drawing.Size(68, 81);
            this.tbAtualizar.Text = "Atualizar";
            this.tbAtualizar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbAtualizar.ToolTipText = "Clique para Atualizar os registros";
            // 
            // tbImprimir
            // 
            this.tbImprimir.Image = ((System.Drawing.Image)(resources.GetObject("tbImprimir.Image")));
            this.tbImprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbImprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbImprimir.Name = "tbImprimir";
            this.tbImprimir.Size = new System.Drawing.Size(68, 81);
            this.tbImprimir.Text = "Imprimir";
            this.tbImprimir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbImprimir.ToolTipText = "Clique para imprimir ";
            this.tbImprimir.Click += new System.EventHandler(this.tbImprimir_Click);
            // 
            // tbVoltar
            // 
            this.tbVoltar.Image = ((System.Drawing.Image)(resources.GetObject("tbVoltar.Image")));
            this.tbVoltar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbVoltar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbVoltar.Name = "tbVoltar";
            this.tbVoltar.Size = new System.Drawing.Size(68, 81);
            this.tbVoltar.Text = "Voltar";
            this.tbVoltar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbVoltar.ToolTipText = "Retornar a tela anterior";
            // 
            // panel2
            // 
            this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel2.BackColor = System.Drawing.Color.DimGray;
            this.panel2.Controls.Add(this.label13);
            this.panel2.Location = new System.Drawing.Point(90, 12);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(912, 75);
            this.panel2.TabIndex = 33;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.BackColor = System.Drawing.Color.Transparent;
            this.label13.Font = new System.Drawing.Font("Impact", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.White;
            this.label13.Location = new System.Drawing.Point(4, 6);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(491, 60);
            this.label13.TabIndex = 96;
            this.label13.Text = "CADASTRO DE PRODUTOS";
            this.label13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Font = new System.Drawing.Font("Impact", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.White;
            this.label3.Location = new System.Drawing.Point(3, 2);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(137, 36);
            this.label3.TabIndex = 96;
            this.label3.Text = "RELATÓRIO";
            this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.BackColor = System.Drawing.Color.White;
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(toolStrip1);
            this.panel1.Location = new System.Drawing.Point(4, 12);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(76, 604);
            this.panel1.TabIndex = 95;
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.BackColor = System.Drawing.Color.Transparent;
            this.groupBox1.Controls.Add(this.btn01);
            this.groupBox1.Controls.Add(this.btn02);
            this.groupBox1.Controls.Add(this.cbxSelecionaFornecedor);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.cboUnidadeMedida);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.txtCodigo);
            this.groupBox1.Controls.Add(this.txtPrecoCusto);
            this.groupBox1.Controls.Add(this.txtDescricao);
            this.groupBox1.Controls.Add(this.txtPrecoVenda);
            this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.Location = new System.Drawing.Point(2, -5);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(301, 103);
            this.groupBox1.TabIndex = 112;
            this.groupBox1.TabStop = false;
            // 
            // btn01
            // 
            this.btn01.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btn01.Location = new System.Drawing.Point(64, 26);
            this.btn01.Name = "btn01";
            this.btn01.Size = new System.Drawing.Size(110, 59);
            this.btn01.TabIndex = 27;
            this.btn01.Text = "01";
            this.btn01.UseVisualStyleBackColor = true;
            // 
            // btn02
            // 
            this.btn02.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btn02.Location = new System.Drawing.Point(180, 26);
            this.btn02.Name = "btn02";
            this.btn02.Size = new System.Drawing.Size(110, 59);
            this.btn02.TabIndex = 27;
            this.btn02.Text = "02";
            this.btn02.UseVisualStyleBackColor = true;
            // 
            // cbxSelecionaFornecedor
            // 
            this.cbxSelecionaFornecedor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxSelecionaFornecedor.BackColor = System.Drawing.Color.LemonChiffon;
            this.cbxSelecionaFornecedor.FormattingEnabled = true;
            this.cbxSelecionaFornecedor.Location = new System.Drawing.Point(239, 72);
            this.cbxSelecionaFornecedor.Name = "cbxSelecionaFornecedor";
            this.cbxSelecionaFornecedor.Size = new System.Drawing.Size(0, 24);
            this.cbxSelecionaFornecedor.TabIndex = 26;
            // 
            // label2
            // 
            this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(-186, 11);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(60, 16);
            this.label2.TabIndex = 25;
            this.label2.Text = "Unidade";
            // 
            // cboUnidadeMedida
            // 
            this.cboUnidadeMedida.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cboUnidadeMedida.BackColor = System.Drawing.Color.LemonChiffon;
            this.cboUnidadeMedida.FormattingEnabled = true;
            this.cboUnidadeMedida.Items.AddRange(new object[] {
            "UN",
            "CX",
            "KG",
            "PC",
            "LT",
            "MT"});
            this.cboUnidadeMedida.Location = new System.Drawing.Point(-183, 30);
            this.cboUnidadeMedida.Name = "cboUnidadeMedida";
            this.cboUnidadeMedida.Size = new System.Drawing.Size(79, 24);
            this.cboUnidadeMedida.TabIndex = 24;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(236, 53);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(126, 16);
            this.label7.TabIndex = 10;
            this.label7.Text = "Fornecedor Padrão";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(91, 11);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(70, 16);
            this.label6.TabIndex = 9;
            this.label6.Text = "Descrição";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(121, 55);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(81, 16);
            this.label5.TabIndex = 8;
            this.label5.Text = "Preço Custo";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(6, 55);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(106, 16);
            this.label4.TabIndex = 7;
            this.label4.Text = "Preço de Venda";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 11);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(52, 16);
            this.label1.TabIndex = 6;
            this.label1.Text = "Codigo";
            // 
            // txtCodigo
            // 
            this.txtCodigo.BackColor = System.Drawing.Color.LemonChiffon;
            this.txtCodigo.Location = new System.Drawing.Point(9, 30);
            this.txtCodigo.Name = "txtCodigo";
            this.txtCodigo.Size = new System.Drawing.Size(79, 22);
            this.txtCodigo.TabIndex = 2;
            this.txtCodigo.TextChanged += new System.EventHandler(this.txtCodigo_TextChanged);
            // 
            // txtPrecoCusto
            // 
            this.txtPrecoCusto.BackColor = System.Drawing.Color.LemonChiffon;
            this.txtPrecoCusto.Location = new System.Drawing.Point(124, 74);
            this.txtPrecoCusto.Name = "txtPrecoCusto";
            this.txtPrecoCusto.Size = new System.Drawing.Size(109, 22);
            this.txtPrecoCusto.TabIndex = 4;
            // 
            // txtDescricao
            // 
            this.txtDescricao.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDescricao.BackColor = System.Drawing.Color.LemonChiffon;
            this.txtDescricao.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtDescricao.Location = new System.Drawing.Point(94, 30);
            this.txtDescricao.Name = "txtDescricao";
            this.txtDescricao.Size = new System.Drawing.Size(0, 22);
            this.txtDescricao.TabIndex = 5;
            // 
            // txtPrecoVenda
            // 
            this.txtPrecoVenda.BackColor = System.Drawing.Color.LemonChiffon;
            this.txtPrecoVenda.Location = new System.Drawing.Point(9, 74);
            this.txtPrecoVenda.Name = "txtPrecoVenda";
            this.txtPrecoVenda.Size = new System.Drawing.Size(109, 22);
            this.txtPrecoVenda.TabIndex = 3;
            // 
            // dtgProdutos
            // 
            this.dtgProdutos.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.dtgProdutos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dtgProdutos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column1,
            this.Column2,
            this.Column5,
            this.Column3,
            this.Column4,
            this.Column6});
            this.dtgProdutos.Location = new System.Drawing.Point(2, 147);
            this.dtgProdutos.Name = "dtgProdutos";
            this.dtgProdutos.ReadOnly = true;
            this.dtgProdutos.RowHeadersVisible = false;
            this.dtgProdutos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dtgProdutos.Size = new System.Drawing.Size(301, 376);
            this.dtgProdutos.TabIndex = 108;
            // 
            // Column1
            // 
            this.Column1.DataPropertyName = "P_Id";
            this.Column1.Frozen = true;
            this.Column1.HeaderText = "Código";
            this.Column1.Name = "Column1";
            this.Column1.ReadOnly = true;
            this.Column1.Width = 50;
            // 
            // Column2
            // 
            this.Column2.DataPropertyName = "P_Descricao";
            this.Column2.Frozen = true;
            this.Column2.HeaderText = "Descrição";
            this.Column2.Name = "Column2";
            this.Column2.ReadOnly = true;
            this.Column2.Width = 150;
            // 
            // Column5
            // 
            this.Column5.DataPropertyName = "P_Unid";
            this.Column5.HeaderText = "UN";
            this.Column5.Name = "Column5";
            this.Column5.ReadOnly = true;
            this.Column5.Width = 30;
            // 
            // Column3
            // 
            this.Column3.DataPropertyName = "P_Pcusto";
            this.Column3.HeaderText = "Custo R$";
            this.Column3.Name = "Column3";
            this.Column3.ReadOnly = true;
            this.Column3.Width = 80;
            // 
            // Column4
            // 
            this.Column4.DataPropertyName = "P_Pvenda";
            this.Column4.HeaderText = "Venda R$";
            this.Column4.Name = "Column4";
            this.Column4.ReadOnly = true;
            this.Column4.Width = 80;
            // 
            // Column6
            // 
            this.Column6.DataPropertyName = "P_Fornecedor";
            this.Column6.HeaderText = "Fornecedor";
            this.Column6.Name = "Column6";
            this.Column6.ReadOnly = true;
            this.Column6.Width = 200;
            // 
            // rdbDesc
            // 
            this.rdbDesc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.rdbDesc.AutoSize = true;
            this.rdbDesc.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rdbDesc.ForeColor = System.Drawing.Color.White;
            this.rdbDesc.Location = new System.Drawing.Point(234, 12);
            this.rdbDesc.Name = "rdbDesc";
            this.rdbDesc.Size = new System.Drawing.Size(65, 17);
            this.rdbDesc.TabIndex = 6;
            this.rdbDesc.Text = "Z -> A";
            this.rdbDesc.UseVisualStyleBackColor = true;
            // 
            // rdbCresc
            // 
            this.rdbCresc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.rdbCresc.AutoSize = true;
            this.rdbCresc.Checked = true;
            this.rdbCresc.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rdbCresc.ForeColor = System.Drawing.Color.White;
            this.rdbCresc.Location = new System.Drawing.Point(168, 12);
            this.rdbCresc.Name = "rdbCresc";
            this.rdbCresc.Size = new System.Drawing.Size(65, 17);
            this.rdbCresc.TabIndex = 6;
            this.rdbCresc.TabStop = true;
            this.rdbCresc.Text = "A -> Z";
            this.rdbCresc.UseVisualStyleBackColor = true;
            // 
            // label8
            // 
            this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label8.ForeColor = System.Drawing.Color.White;
            this.label8.Location = new System.Drawing.Point(-48, 14);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(60, 13);
            this.label8.TabIndex = 5;
            this.label8.Text = "Ordenar";
            // 
            // txtConsulta
            // 
            this.txtConsulta.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtConsulta.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtConsulta.Location = new System.Drawing.Point(114, 9);
            this.txtConsulta.Name = "txtConsulta";
            this.txtConsulta.Size = new System.Drawing.Size(0, 22);
            this.txtConsulta.TabIndex = 3;
            // 
            // cbxPesquisar
            // 
            this.cbxPesquisar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxPesquisar.FormattingEnabled = true;
            this.cbxPesquisar.Items.AddRange(new object[] {
            "Todos os Campos",
            "Código do Produto",
            "Descrição do Produtol",
            "Preço Venda acima de...",
            "Preço Venda abaixo de...",
            "Preço Custo acima de...",
            "Preço Custo abaixo de...",
            "Tipo de Unidade",
            "Fornecedor Padrão"});
            this.cbxPesquisar.Location = new System.Drawing.Point(-275, 10);
            this.cbxPesquisar.Name = "cbxPesquisar";
            this.cbxPesquisar.Size = new System.Drawing.Size(143, 21);
            this.cbxPesquisar.TabIndex = 1;
            // 
            // cbxOrdenar
            // 
            this.cbxOrdenar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cbxOrdenar.FormattingEnabled = true;
            this.cbxOrdenar.Items.AddRange(new object[] {
            "Código do Produto",
            "Descrição do Produto",
            "Preço Venda ",
            "Preço Custo",
            "Tipo de Unidade",
            "Fornecedor Padrão"});
            this.cbxOrdenar.Location = new System.Drawing.Point(15, 10);
            this.cbxOrdenar.Name = "cbxOrdenar";
            this.cbxOrdenar.Size = new System.Drawing.Size(151, 21);
            this.cbxOrdenar.TabIndex = 1;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label10.ForeColor = System.Drawing.Color.White;
            this.label10.Location = new System.Drawing.Point(5, 14);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(109, 13);
            this.label10.TabIndex = 0;
            this.label10.Text = "Pesquisar por...";
            // 
            // panel3
            // 
            this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel3.BackColor = System.Drawing.Color.DimGray;
            this.panel3.Controls.Add(this.rdbDesc);
            this.panel3.Controls.Add(this.label10);
            this.panel3.Controls.Add(this.rdbCresc);
            this.panel3.Controls.Add(this.cbxOrdenar);
            this.panel3.Controls.Add(this.label9);
            this.panel3.Controls.Add(this.label8);
            this.panel3.Controls.Add(this.cbxPesquisar);
            this.panel3.Controls.Add(this.btnPesquisa);
            this.panel3.Controls.Add(this.txtConsulta);
            this.panel3.Location = new System.Drawing.Point(2, 102);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(301, 39);
            this.panel3.TabIndex = 115;
            // 
            // label9
            // 
            this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label9.AutoSize = true;
            this.label9.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label9.ForeColor = System.Drawing.Color.White;
            this.label9.Location = new System.Drawing.Point(-307, 14);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(27, 13);
            this.label9.TabIndex = 5;
            this.label9.Text = "em";
            // 
            // btnPesquisa
            // 
            this.btnPesquisa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnPesquisa.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.btnPesquisa.BackgroundImage = global::Control_Manager_Plus.Properties.Resources.find;
            this.btnPesquisa.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.btnPesquisa.Location = new System.Drawing.Point(-115, 8);
            this.btnPesquisa.Name = "btnPesquisa";
            this.btnPesquisa.Size = new System.Drawing.Size(64, 25);
            this.btnPesquisa.TabIndex = 4;
            this.btnPesquisa.UseVisualStyleBackColor = false;
            // 
            // splitContainer1
            // 
            this.splitContainer1.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.splitContainer1.Location = new System.Drawing.Point(90, 93);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.dtgProdutos);
            this.splitContainer1.Panel1.Controls.Add(this.panel3);
            this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
            this.splitContainer1.Panel1Collapsed = true;
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.panel5);
            this.splitContainer1.Panel2.Controls.Add(this.reportViewer1);
            this.splitContainer1.Size = new System.Drawing.Size(918, 523);
            this.splitContainer1.SplitterDistance = 306;
            this.splitContainer1.TabIndex = 116;
            // 
            // panel5
            // 
            this.panel5.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.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel5.Controls.Add(this.panel4);
            this.panel5.Controls.Add(this.btnGerarRelatorio);
            this.panel5.Controls.Add(this.label11);
            this.panel5.Controls.Add(this.label12);
            this.panel5.Controls.Add(this.comboBox1);
            this.panel5.Controls.Add(this.comboBox2);
            this.panel5.Location = new System.Drawing.Point(724, 3);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(822, 940);
            this.panel5.TabIndex = 121;
            // 
            // panel4
            // 
            this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel4.BackColor = System.Drawing.Color.DimGray;
            this.panel4.Controls.Add(this.label3);
            this.panel4.Location = new System.Drawing.Point(0, 2);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(830, 39);
            this.panel4.TabIndex = 116;
            // 
            // btnGerarRelatorio
            // 
            this.btnGerarRelatorio.Location = new System.Drawing.Point(4, 144);
            this.btnGerarRelatorio.Name = "btnGerarRelatorio";
            this.btnGerarRelatorio.Size = new System.Drawing.Size(100, 49);
            this.btnGerarRelatorio.TabIndex = 120;
            this.btnGerarRelatorio.Text = "Gerar Relatório";
            this.btnGerarRelatorio.UseVisualStyleBackColor = true;
            this.btnGerarRelatorio.Click += new System.EventHandler(this.btnGerarRelatorio_Click);
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.Location = new System.Drawing.Point(3, 45);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(113, 16);
            this.label11.TabIndex = 117;
            this.label11.Text = "Tipo de Relatório";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label12.Location = new System.Drawing.Point(3, 89);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(95, 16);
            this.label12.TabIndex = 119;
            this.label12.Text = "Definir produto";
            // 
            // comboBox1
            // 
            this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "Todos os produtos",
            "Produto especifico."});
            this.comboBox1.Location = new System.Drawing.Point(4, 64);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(824, 21);
            this.comboBox1.TabIndex = 2;
            // 
            // comboBox2
            // 
            this.comboBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBox2.FormattingEnabled = true;
            this.comboBox2.Items.AddRange(new object[] {
            "Todos os produtos",
            "Produto especifico."});
            this.comboBox2.Location = new System.Drawing.Point(4, 108);
            this.comboBox2.Name = "comboBox2";
            this.comboBox2.Size = new System.Drawing.Size(824, 21);
            this.comboBox2.TabIndex = 118;
            // 
            // reportViewer1
            // 
            this.reportViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.reportViewer1.LocalReport.ReportEmbeddedResource = "Control_Manager_Plus.Relatorio.Produto.rdlc";
            this.reportViewer1.Location = new System.Drawing.Point(3, 3);
            this.reportViewer1.Name = "reportViewer1";
            this.reportViewer1.Size = new System.Drawing.Size(715, 940);
            this.reportViewer1.TabIndex = 0;
            // 
            // frmModelo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1014, 628);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.panel2);
            this.Name = "frmModelo";
            this.Text = "frmProduto";
            this.Load += new System.EventHandler(this.frmProduto_Load);
            toolStrip1.ResumeLayout(false);
            toolStrip1.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtgProdutos)).EndInit();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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.ToolStrip toolStrip1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDistribuicaoPorLoja));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.tbIncluir = new System.Windows.Forms.ToolStripButton();
            this.tbAlterar = new System.Windows.Forms.ToolStripButton();
            this.tbExcluir = new System.Windows.Forms.ToolStripButton();
            this.tbImprimir = new System.Windows.Forms.ToolStripButton();
            this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
            this.label11 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.panel4 = new System.Windows.Forms.Panel();
            this.label3 = new System.Windows.Forms.Label();
            this.btnGerarRelatorio = new System.Windows.Forms.Button();
            this.panel5 = new System.Windows.Forms.Panel();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.lbTotal = new System.Windows.Forms.Label();
            this.btnLancar = new System.Windows.Forms.Button();
            this.dtgSoma = new System.Windows.Forms.DataGridView();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dtgLojas = new System.Windows.Forms.DataGridView();
            this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Loja = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Qtde = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.btnExcluirLinhas = new System.Windows.Forms.Button();
            this.btnCancelar = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.txtCodDistribuicao = new System.Windows.Forms.TextBox();
            this.dtpDataSelecionada = new System.Windows.Forms.DateTimePicker();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.dtgLancamentos = new System.Windows.Forms.DataGridView();
            this.G_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_Selecao = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.G_Produto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_Div = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_PrecoCusto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_CodFornecedor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.btnSelecionarEmpresa = new System.Windows.Forms.Button();
            this.cbxFiltroEmpresa = new System.Windows.Forms.ComboBox();
            this.dtgEmpresaDetalhe = new System.Windows.Forms.DataGridView();
            this.RowdtgEmpresa_Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Produto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Qtde = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Fornecedor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.grProdutos = new System.Windows.Forms.GroupBox();
            this.tabControl2 = new System.Windows.Forms.TabControl();
            this.tabFornecedor = new System.Windows.Forms.TabPage();
            this.txtValorPadrao = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.cbxSelecionaFornecedor = new System.Windows.Forms.ComboBox();
            this.txtValorCusto = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.tabGeral = new System.Windows.Forms.TabPage();
            this.txtQtdePadrao = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtQtdeDisponivel = new System.Windows.Forms.TextBox();
            this.txtQtdeRestate = new System.Windows.Forms.TextBox();
            this.label7 = new System.Windows.Forms.Label();
            this.cbxSelecionaProduto = new System.Windows.Forms.ComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label13 = new System.Windows.Forms.Label();
            this.btnGravarDistribuicao = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            toolStrip1 = new System.Windows.Forms.ToolStrip();
            toolStrip1.SuspendLayout();
            this.panel4.SuspendLayout();
            this.panel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtgSoma)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dtgLojas)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtgLancamentos)).BeginInit();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dtgEmpresaDetalhe)).BeginInit();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.grProdutos.SuspendLayout();
            this.tabControl2.SuspendLayout();
            this.tabFornecedor.SuspendLayout();
            this.tabGeral.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            toolStrip1.AutoSize = false;
            toolStrip1.BackColor = System.Drawing.Color.White;
            toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
            toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            toolStrip1.GripMargin = new System.Windows.Forms.Padding(0);
            toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tbIncluir,
            this.tbAlterar,
            this.tbExcluir,
            this.tbImprimir});
            toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow;
            toolStrip1.Location = new System.Drawing.Point(2, 0);
            toolStrip1.Name = "toolStrip1";
            toolStrip1.Padding = new System.Windows.Forms.Padding(0);
            toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            toolStrip1.ShowItemToolTips = false;
            toolStrip1.Size = new System.Drawing.Size(69, 506);
            toolStrip1.TabIndex = 94;
            toolStrip1.Text = "toolStrip1";
            // 
            // tbIncluir
            // 
            this.tbIncluir.Image = ((System.Drawing.Image)(resources.GetObject("tbIncluir.Image")));
            this.tbIncluir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbIncluir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbIncluir.Name = "tbIncluir";
            this.tbIncluir.Size = new System.Drawing.Size(68, 83);
            this.tbIncluir.Text = "Incluir";
            this.tbIncluir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbIncluir.ToolTipText = "Clique parar incluir um registro";
            // 
            // tbAlterar
            // 
            this.tbAlterar.Image = ((System.Drawing.Image)(resources.GetObject("tbAlterar.Image")));
            this.tbAlterar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbAlterar.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbAlterar.Name = "tbAlterar";
            this.tbAlterar.Size = new System.Drawing.Size(68, 83);
            this.tbAlterar.Text = "Alterar";
            this.tbAlterar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbAlterar.ToolTipText = "Clique para alterar um registro";
            // 
            // tbExcluir
            // 
            this.tbExcluir.Image = ((System.Drawing.Image)(resources.GetObject("tbExcluir.Image")));
            this.tbExcluir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbExcluir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbExcluir.Name = "tbExcluir";
            this.tbExcluir.Size = new System.Drawing.Size(68, 83);
            this.tbExcluir.Text = "Excluir  Linhas";
            this.tbExcluir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbExcluir.ToolTipText = "Clique para excluir um registro";
            // 
            // tbImprimir
            // 
            this.tbImprimir.Image = ((System.Drawing.Image)(resources.GetObject("tbImprimir.Image")));
            this.tbImprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tbImprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tbImprimir.Name = "tbImprimir";
            this.tbImprimir.Size = new System.Drawing.Size(68, 83);
            this.tbImprimir.Text = "Imprimir";
            this.tbImprimir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tbImprimir.ToolTipText = "Clique para imprimir ";
            // 
            // reportViewer1
            // 
            this.reportViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.reportViewer1.LocalReport.ReportEmbeddedResource = "Control_Manager_Plus.Relatorio.Produto.rdlc";
            this.reportViewer1.Location = new System.Drawing.Point(3, 3);
            this.reportViewer1.Name = "reportViewer1";
            this.reportViewer1.Size = new System.Drawing.Size(715, 517);
            this.reportViewer1.TabIndex = 0;
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label11.Location = new System.Drawing.Point(3, 45);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(113, 16);
            this.label11.TabIndex = 117;
            this.label11.Text = "Tipo de Relatório";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label12.Location = new System.Drawing.Point(3, 89);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(95, 16);
            this.label12.TabIndex = 119;
            this.label12.Text = "Definir produto";
            // 
            // comboBox1
            // 
            this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            "Todos os produtos",
            "Produto especifico."});
            this.comboBox1.Location = new System.Drawing.Point(4, 64);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(18, 21);
            this.comboBox1.TabIndex = 2;
            // 
            // panel4
            // 
            this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel4.BackColor = System.Drawing.Color.DimGray;
            this.panel4.Controls.Add(this.label3);
            this.panel4.Location = new System.Drawing.Point(0, 2);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(24, 39);
            this.panel4.TabIndex = 116;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Font = new System.Drawing.Font("Impact", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.White;
            this.label3.Location = new System.Drawing.Point(3, 2);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(136, 36);
            this.label3.TabIndex = 96;
            this.label3.Text = "RELATÓRIO";
            this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // btnGerarRelatorio
            // 
            this.btnGerarRelatorio.Location = new System.Drawing.Point(4, 144);
            this.btnGerarRelatorio.Name = "btnGerarRelatorio";
            this.btnGerarRelatorio.Size = new System.Drawing.Size(100, 49);
            this.btnGerarRelatorio.TabIndex = 120;
            this.btnGerarRelatorio.Text = "Gerar Relatório";
            this.btnGerarRelatorio.UseVisualStyleBackColor = true;
            // 
            // panel5
            // 
            this.panel5.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.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel5.Controls.Add(this.panel4);
            this.panel5.Controls.Add(this.btnGerarRelatorio);
            this.panel5.Controls.Add(this.label11);
            this.panel5.Controls.Add(this.label12);
            this.panel5.Controls.Add(this.comboBox1);
            this.panel5.Controls.Add(this.comboBox2);
            this.panel5.Location = new System.Drawing.Point(723, 3);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(0, 517);
            this.panel5.TabIndex = 121;
            // 
            // comboBox2
            // 
            this.comboBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBox2.FormattingEnabled = true;
            this.comboBox2.Items.AddRange(new object[] {
            "Todos os produtos",
            "Produto especifico."});
            this.comboBox2.Location = new System.Drawing.Point(4, 108);
            this.comboBox2.Name = "comboBox2";
            this.comboBox2.Size = new System.Drawing.Size(18, 21);
            this.comboBox2.TabIndex = 118;
            // 
            // splitContainer1
            // 
            this.splitContainer1.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.splitContainer1.Location = new System.Drawing.Point(91, 93);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.lbTotal);
            this.splitContainer1.Panel1.Controls.Add(this.btnLancar);
            this.splitContainer1.Panel1.Controls.Add(this.dtgSoma);
            this.splitContainer1.Panel1.Controls.Add(this.dtgLojas);
            this.splitContainer1.Panel1.Controls.Add(this.btnExcluirLinhas);
            this.splitContainer1.Panel1.Controls.Add(this.btnCancelar);
            this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
            this.splitContainer1.Panel1.Controls.Add(this.tabControl1);
            this.splitContainer1.Panel1.Controls.Add(this.grProdutos);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.panel5);
            this.splitContainer1.Panel2.Controls.Add(this.reportViewer1);
            this.splitContainer1.Panel2Collapsed = true;
            this.splitContainer1.Size = new System.Drawing.Size(918, 523);
            this.splitContainer1.SplitterDistance = 306;
            this.splitContainer1.TabIndex = 119;
            // 
            // lbTotal
            // 
            this.lbTotal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lbTotal.AutoSize = true;
            this.lbTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbTotal.Location = new System.Drawing.Point(198, 467);
            this.lbTotal.Name = "lbTotal";
            this.lbTotal.Size = new System.Drawing.Size(52, 16);
            this.lbTotal.TabIndex = 17;
            this.lbTotal.Text = "TOTAL";
            // 
            // btnLancar
            // 
            this.btnLancar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnLancar.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnLancar.Location = new System.Drawing.Point(256, 493);
            this.btnLancar.Name = "btnLancar";
            this.btnLancar.Size = new System.Drawing.Size(153, 28);
            this.btnLancar.TabIndex = 19;
            this.btnLancar.Text = "Lançar";
            this.btnLancar.UseVisualStyleBackColor = true;
            // 
            // dtgSoma
            // 
            this.dtgSoma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtgSoma.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dtgSoma.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dtgSoma.ColumnHeadersVisible = false;
            this.dtgSoma.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn2,
            this.dataGridViewTextBoxColumn4,
            this.dataGridViewTextBoxColumn5});
            this.dtgSoma.Location = new System.Drawing.Point(256, 465);
            this.dtgSoma.Name = "dtgSoma";
            this.dtgSoma.RowHeadersVisible = false;
            this.dtgSoma.Size = new System.Drawing.Size(153, 24);
            this.dtgSoma.TabIndex = 18;
            // 
            // dataGridViewTextBoxColumn2
            // 
            this.dataGridViewTextBoxColumn2.FillWeight = 250F;
            this.dataGridViewTextBoxColumn2.HeaderText = "Loja";
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
            this.dataGridViewTextBoxColumn2.ReadOnly = true;
            this.dataGridViewTextBoxColumn2.Visible = false;
            this.dataGridViewTextBoxColumn2.Width = 250;
            // 
            // dataGridViewTextBoxColumn4
            // 
            this.dataGridViewTextBoxColumn4.FillWeight = 50F;
            this.dataGridViewTextBoxColumn4.HeaderText = "Qtde.";
            this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
            this.dataGridViewTextBoxColumn4.ReadOnly = true;
            this.dataGridViewTextBoxColumn4.Width = 50;
            // 
            // dataGridViewTextBoxColumn5
            // 
            dataGridViewCellStyle1.Format = "C2";
            dataGridViewCellStyle1.NullValue = null;
            this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle1;
            this.dataGridViewTextBoxColumn5.HeaderText = "Total";
            this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
            this.dataGridViewTextBoxColumn5.ReadOnly = true;
            // 
            // dtgLojas
            // 
            this.dtgLojas.AllowUserToAddRows = false;
            dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.dtgLojas.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle2;
            this.dtgLojas.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.dtgLojas.BackgroundColor = System.Drawing.Color.White;
            this.dtgLojas.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.dtgLojas.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            this.dtgLojas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dtgLojas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Id,
            this.Loja,
            this.Valor,
            this.Qtde,
            this.Total});
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dtgLojas.DefaultCellStyle = dataGridViewCellStyle5;
            this.dtgLojas.Enabled = false;
            this.dtgLojas.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.dtgLojas.Location = new System.Drawing.Point(3, 154);
            this.dtgLojas.Name = "dtgLojas";
            this.dtgLojas.RowHeadersVisible = false;
            this.dtgLojas.Size = new System.Drawing.Size(406, 305);
            this.dtgLojas.TabIndex = 16;
            // 
            // Id
            // 
            this.Id.DataPropertyName = "L_Id";
            this.Id.HeaderText = "Id";
            this.Id.Name = "Id";
            this.Id.Visible = false;
            // 
            // Loja
            // 
            this.Loja.DataPropertyName = "L_Loja";
            this.Loja.FillWeight = 150F;
            this.Loja.HeaderText = "Loja";
            this.Loja.Name = "Loja";
            this.Loja.ReadOnly = true;
            this.Loja.Width = 150;
            // 
            // Valor
            // 
            dataGridViewCellStyle3.Format = "C2";
            this.Valor.DefaultCellStyle = dataGridViewCellStyle3;
            this.Valor.HeaderText = "Valor";
            this.Valor.Name = "Valor";
            this.Valor.ReadOnly = true;
            // 
            // Qtde
            // 
            this.Qtde.FillWeight = 50F;
            this.Qtde.HeaderText = "Qtde.";
            this.Qtde.Name = "Qtde";
            this.Qtde.Width = 50;
            // 
            // Total
            // 
            this.Total.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
            dataGridViewCellStyle4.Format = "C2";
            this.Total.DefaultCellStyle = dataGridViewCellStyle4;
            this.Total.HeaderText = "Total";
            this.Total.Name = "Total";
            this.Total.ReadOnly = true;
            // 
            // btnExcluirLinhas
            // 
            this.btnExcluirLinhas.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExcluirLinhas.Location = new System.Drawing.Point(712, 16);
            this.btnExcluirLinhas.Name = "btnExcluirLinhas";
            this.btnExcluirLinhas.Size = new System.Drawing.Size(91, 44);
            this.btnExcluirLinhas.TabIndex = 14;
            this.btnExcluirLinhas.Text = "Excluir Selecionados";
            this.btnExcluirLinhas.UseVisualStyleBackColor = true;
            // 
            // btnCancelar
            // 
            this.btnCancelar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancelar.Location = new System.Drawing.Point(809, 14);
            this.btnCancelar.Name = "btnCancelar";
            this.btnCancelar.Size = new System.Drawing.Size(91, 44);
            this.btnCancelar.TabIndex = 15;
            this.btnCancelar.Text = "Cancelar [Sair]";
            this.btnCancelar.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.label8);
            this.groupBox1.Controls.Add(this.txtCodDistribuicao);
            this.groupBox1.Controls.Add(this.dtpDataSelecionada);
            this.groupBox1.Location = new System.Drawing.Point(415, 16);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(280, 54);
            this.groupBox1.TabIndex = 13;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Distribuiçao";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(149, 24);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(30, 13);
            this.label2.TabIndex = 3;
            this.label2.Text = "Data";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(5, 24);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(44, 13);
            this.label8.TabIndex = 3;
            this.label8.Text = "Número";
            // 
            // txtCodDistribuicao
            // 
            this.txtCodDistribuicao.Enabled = false;
            this.txtCodDistribuicao.Location = new System.Drawing.Point(55, 21);
            this.txtCodDistribuicao.Name = "txtCodDistribuicao";
            this.txtCodDistribuicao.Size = new System.Drawing.Size(87, 20);
            this.txtCodDistribuicao.TabIndex = 2;
            // 
            // dtpDataSelecionada
            // 
            this.dtpDataSelecionada.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.dtpDataSelecionada.Location = new System.Drawing.Point(185, 21);
            this.dtpDataSelecionada.Name = "dtpDataSelecionada";
            this.dtpDataSelecionada.Size = new System.Drawing.Size(85, 20);
            this.dtpDataSelecionada.TabIndex = 1;
            // 
            // tabControl1
            // 
            this.tabControl1.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.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Location = new System.Drawing.Point(415, 76);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(500, 444);
            this.tabControl1.TabIndex = 12;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.dtgLancamentos);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(492, 418);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Geral";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // dtgLancamentos
            // 
            this.dtgLancamentos.AllowUserToAddRows = false;
            dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.dtgLancamentos.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
            this.dtgLancamentos.BackgroundColor = System.Drawing.Color.White;
            this.dtgLancamentos.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            this.dtgLancamentos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dtgLancamentos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.G_ID,
            this.G_Selecao,
            this.G_Produto,
            this.G_Valor,
            this.G_Div,
            this.G_PrecoCusto,
            this.G_CodFornecedor});
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dtgLancamentos.DefaultCellStyle = dataGridViewCellStyle10;
            this.dtgLancamentos.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dtgLancamentos.Location = new System.Drawing.Point(3, 3);
            this.dtgLancamentos.MultiSelect = false;
            this.dtgLancamentos.Name = "dtgLancamentos";
            this.dtgLancamentos.RowHeadersVisible = false;
            this.dtgLancamentos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dtgLancamentos.Size = new System.Drawing.Size(486, 412);
            this.dtgLancamentos.TabIndex = 0;
            // 
            // G_ID
            // 
            this.G_ID.Frozen = true;
            this.G_ID.HeaderText = "ID";
            this.G_ID.Name = "G_ID";
            this.G_ID.ReadOnly = true;
            this.G_ID.Visible = false;
            // 
            // G_Selecao
            // 
            this.G_Selecao.FillWeight = 20F;
            this.G_Selecao.Frozen = true;
            this.G_Selecao.HeaderText = "";
            this.G_Selecao.Name = "G_Selecao";
            this.G_Selecao.Width = 20;
            // 
            // G_Produto
            // 
            dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.G_Produto.DefaultCellStyle = dataGridViewCellStyle7;
            this.G_Produto.FillWeight = 150F;
            this.G_Produto.Frozen = true;
            this.G_Produto.HeaderText = "PRODUTO";
            this.G_Produto.Name = "G_Produto";
            this.G_Produto.ReadOnly = true;
            this.G_Produto.Width = 150;
            // 
            // G_Valor
            // 
            dataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.G_Valor.DefaultCellStyle = dataGridViewCellStyle8;
            this.G_Valor.Frozen = true;
            this.G_Valor.HeaderText = "VALOR";
            this.G_Valor.Name = "G_Valor";
            this.G_Valor.ReadOnly = true;
            // 
            // G_Div
            // 
            dataGridViewCellStyle9.BackColor = System.Drawing.Color.Silver;
            dataGridViewCellStyle9.NullValue = ">>";
            this.G_Div.DefaultCellStyle = dataGridViewCellStyle9;
            this.G_Div.FillWeight = 20F;
            this.G_Div.Frozen = true;
            this.G_Div.HeaderText = "";
            this.G_Div.Name = "G_Div";
            this.G_Div.ReadOnly = true;
            this.G_Div.Width = 20;
            // 
            // G_PrecoCusto
            // 
            this.G_PrecoCusto.Frozen = true;
            this.G_PrecoCusto.HeaderText = "PrecoCusto";
            this.G_PrecoCusto.Name = "G_PrecoCusto";
            this.G_PrecoCusto.Visible = false;
            // 
            // G_CodFornecedor
            // 
            this.G_CodFornecedor.Frozen = true;
            this.G_CodFornecedor.HeaderText = "Cód Fornecedor";
            this.G_CodFornecedor.Name = "G_CodFornecedor";
            this.G_CodFornecedor.Visible = false;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.btnSelecionarEmpresa);
            this.tabPage2.Controls.Add(this.cbxFiltroEmpresa);
            this.tabPage2.Controls.Add(this.dtgEmpresaDetalhe);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(492, 418);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Empresa";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // btnSelecionarEmpresa
            // 
            this.btnSelecionarEmpresa.Location = new System.Drawing.Point(387, 21);
            this.btnSelecionarEmpresa.Name = "btnSelecionarEmpresa";
            this.btnSelecionarEmpresa.Size = new System.Drawing.Size(104, 27);
            this.btnSelecionarEmpresa.TabIndex = 7;
            this.btnSelecionarEmpresa.Text = "Selecionar";
            this.btnSelecionarEmpresa.UseVisualStyleBackColor = true;
            // 
            // cbxFiltroEmpresa
            // 
            this.cbxFiltroEmpresa.FormattingEnabled = true;
            this.cbxFiltroEmpresa.Location = new System.Drawing.Point(10, 25);
            this.cbxFiltroEmpresa.Name = "cbxFiltroEmpresa";
            this.cbxFiltroEmpresa.Size = new System.Drawing.Size(371, 21);
            this.cbxFiltroEmpresa.TabIndex = 6;
            // 
            // dtgEmpresaDetalhe
            // 
            this.dtgEmpresaDetalhe.AllowUserToAddRows = false;
            this.dtgEmpresaDetalhe.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.dtgEmpresaDetalhe.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dtgEmpresaDetalhe.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.RowdtgEmpresa_Id,
            this.RowdtgEmpresa_Produto,
            this.RowdtgEmpresa_Valor,
            this.RowdtgEmpresa_Qtde,
            this.RowdtgEmpresa_Total,
            this.RowdtgEmpresa_Fornecedor});
            this.dtgEmpresaDetalhe.Location = new System.Drawing.Point(6, 69);
            this.dtgEmpresaDetalhe.Name = "dtgEmpresaDetalhe";
            this.dtgEmpresaDetalhe.RowHeadersVisible = false;
            this.dtgEmpresaDetalhe.Size = new System.Drawing.Size(480, 346);
            this.dtgEmpresaDetalhe.TabIndex = 5;
            // 
            // RowdtgEmpresa_Id
            // 
            this.RowdtgEmpresa_Id.HeaderText = "Id";
            this.RowdtgEmpresa_Id.Name = "RowdtgEmpresa_Id";
            this.RowdtgEmpresa_Id.Visible = false;
            // 
            // RowdtgEmpresa_Produto
            // 
            this.RowdtgEmpresa_Produto.FillWeight = 200F;
            this.RowdtgEmpresa_Produto.HeaderText = "Produto";
            this.RowdtgEmpresa_Produto.Name = "RowdtgEmpresa_Produto";
            this.RowdtgEmpresa_Produto.Width = 200;
            // 
            // RowdtgEmpresa_Valor
            // 
            dataGridViewCellStyle11.Format = "C2";
            dataGridViewCellStyle11.NullValue = null;
            this.RowdtgEmpresa_Valor.DefaultCellStyle = dataGridViewCellStyle11;
            this.RowdtgEmpresa_Valor.HeaderText = "Valor";
            this.RowdtgEmpresa_Valor.Name = "RowdtgEmpresa_Valor";
            // 
            // RowdtgEmpresa_Qtde
            // 
            this.RowdtgEmpresa_Qtde.FillWeight = 50F;
            this.RowdtgEmpresa_Qtde.HeaderText = "Qtde.";
            this.RowdtgEmpresa_Qtde.Name = "RowdtgEmpresa_Qtde";
            this.RowdtgEmpresa_Qtde.Width = 50;
            // 
            // RowdtgEmpresa_Total
            // 
            dataGridViewCellStyle12.Format = "C2";
            dataGridViewCellStyle12.NullValue = null;
            this.RowdtgEmpresa_Total.DefaultCellStyle = dataGridViewCellStyle12;
            this.RowdtgEmpresa_Total.HeaderText = "Total";
            this.RowdtgEmpresa_Total.Name = "RowdtgEmpresa_Total";
            // 
            // RowdtgEmpresa_Fornecedor
            // 
            this.RowdtgEmpresa_Fornecedor.HeaderText = "Fornecedor";
            this.RowdtgEmpresa_Fornecedor.Name = "RowdtgEmpresa_Fornecedor";
            this.RowdtgEmpresa_Fornecedor.ReadOnly = true;
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.chart1);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(492, 418);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Gráfico";
            this.tabPage3.UseVisualStyleBackColor = true;
            // 
            // chart1
            // 
            this.chart1.BackColor = System.Drawing.Color.Transparent;
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
            legend1.Name = "Legend1";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(0, 0);
            this.chart1.Name = "chart1";
            series1.ChartArea = "ChartArea1";
            series1.Legend = "Legend1";
            series1.Name = "Series1";
            this.chart1.Series.Add(series1);
            this.chart1.Size = new System.Drawing.Size(492, 418);
            this.chart1.TabIndex = 0;
            this.chart1.Text = "chart1";
            // 
            // grProdutos
            // 
            this.grProdutos.Controls.Add(this.tabControl2);
            this.grProdutos.Controls.Add(this.cbxSelecionaProduto);
            this.grProdutos.Controls.Add(this.label6);
            this.grProdutos.Location = new System.Drawing.Point(3, 3);
            this.grProdutos.Name = "grProdutos";
            this.grProdutos.Size = new System.Drawing.Size(406, 150);
            this.grProdutos.TabIndex = 11;
            this.grProdutos.TabStop = false;
            this.grProdutos.Text = "Produto";
            // 
            // tabControl2
            // 
            this.tabControl2.Controls.Add(this.tabFornecedor);
            this.tabControl2.Controls.Add(this.tabGeral);
            this.tabControl2.Location = new System.Drawing.Point(8, 51);
            this.tabControl2.Name = "tabControl2";
            this.tabControl2.SelectedIndex = 0;
            this.tabControl2.Size = new System.Drawing.Size(392, 94);
            this.tabControl2.TabIndex = 11;
            // 
            // tabFornecedor
            // 
            this.tabFornecedor.Controls.Add(this.txtValorPadrao);
            this.tabFornecedor.Controls.Add(this.label1);
            this.tabFornecedor.Controls.Add(this.cbxSelecionaFornecedor);
            this.tabFornecedor.Controls.Add(this.txtValorCusto);
            this.tabFornecedor.Controls.Add(this.label10);
            this.tabFornecedor.Controls.Add(this.label9);
            this.tabFornecedor.Location = new System.Drawing.Point(4, 22);
            this.tabFornecedor.Name = "tabFornecedor";
            this.tabFornecedor.Padding = new System.Windows.Forms.Padding(3);
            this.tabFornecedor.Size = new System.Drawing.Size(384, 68);
            this.tabFornecedor.TabIndex = 1;
            this.tabFornecedor.Text = "Fornecedor";
            this.tabFornecedor.UseVisualStyleBackColor = true;
            // 
            // txtValorPadrao
            // 
            this.txtValorPadrao.Enabled = false;
            this.txtValorPadrao.Location = new System.Drawing.Point(87, 42);
            this.txtValorPadrao.Name = "txtValorPadrao";
            this.txtValorPadrao.Size = new System.Drawing.Size(100, 20);
            this.txtValorPadrao.TabIndex = 8;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 45);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(69, 13);
            this.label1.TabIndex = 9;
            this.label1.Text = "Preço Venda";
            // 
            // cbxSelecionaFornecedor
            // 
            this.cbxSelecionaFornecedor.Enabled = false;
            this.cbxSelecionaFornecedor.FormattingEnabled = true;
            this.cbxSelecionaFornecedor.Location = new System.Drawing.Point(87, 12);
            this.cbxSelecionaFornecedor.Name = "cbxSelecionaFornecedor";
            this.cbxSelecionaFornecedor.Size = new System.Drawing.Size(291, 21);
            this.cbxSelecionaFornecedor.TabIndex = 7;
            // 
            // txtValorCusto
            // 
            this.txtValorCusto.Enabled = false;
            this.txtValorCusto.Location = new System.Drawing.Point(276, 42);
            this.txtValorCusto.Name = "txtValorCusto";
            this.txtValorCusto.Size = new System.Drawing.Size(100, 20);
            this.txtValorCusto.TabIndex = 4;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(6, 15);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(77, 13);
            this.label10.TabIndex = 5;
            this.label10.Text = "Nome / Razão";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(203, 45);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(65, 13);
            this.label9.TabIndex = 5;
            this.label9.Text = "Preço Custo";
            // 
            // tabGeral
            // 
            this.tabGeral.Controls.Add(this.txtQtdePadrao);
            this.tabGeral.Controls.Add(this.label5);
            this.tabGeral.Controls.Add(this.label4);
            this.tabGeral.Controls.Add(this.txtQtdeDisponivel);
            this.tabGeral.Controls.Add(this.txtQtdeRestate);
            this.tabGeral.Controls.Add(this.label7);
            this.tabGeral.Location = new System.Drawing.Point(4, 22);
            this.tabGeral.Name = "tabGeral";
            this.tabGeral.Padding = new System.Windows.Forms.Padding(3);
            this.tabGeral.Size = new System.Drawing.Size(384, 68);
            this.tabGeral.TabIndex = 0;
            this.tabGeral.Text = "Outros";
            this.tabGeral.UseVisualStyleBackColor = true;
            // 
            // txtQtdePadrao
            // 
            this.txtQtdePadrao.Enabled = false;
            this.txtQtdePadrao.Location = new System.Drawing.Point(20, 31);
            this.txtQtdePadrao.Name = "txtQtdePadrao";
            this.txtQtdePadrao.Size = new System.Drawing.Size(83, 20);
            this.txtQtdePadrao.TabIndex = 2;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(204, 35);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(50, 13);
            this.label5.TabIndex = 3;
            this.label5.Text = "Restante";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(204, 9);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(58, 13);
            this.label4.TabIndex = 3;
            this.label4.Text = "Dísponivel";
            // 
            // txtQtdeDisponivel
            // 
            this.txtQtdeDisponivel.Enabled = false;
            this.txtQtdeDisponivel.Location = new System.Drawing.Point(283, 6);
            this.txtQtdeDisponivel.Name = "txtQtdeDisponivel";
            this.txtQtdeDisponivel.Size = new System.Drawing.Size(83, 20);
            this.txtQtdeDisponivel.TabIndex = 2;
            // 
            // txtQtdeRestate
            // 
            this.txtQtdeRestate.Enabled = false;
            this.txtQtdeRestate.Location = new System.Drawing.Point(283, 32);
            this.txtQtdeRestate.Name = "txtQtdeRestate";
            this.txtQtdeRestate.Size = new System.Drawing.Size(83, 20);
            this.txtQtdeRestate.TabIndex = 2;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(17, 13);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(106, 13);
            this.label7.TabIndex = 3;
            this.label7.Text = "Lançar Qtde. Padrão";
            // 
            // cbxSelecionaProduto
            // 
            this.cbxSelecionaProduto.FormattingEnabled = true;
            this.cbxSelecionaProduto.Items.AddRange(new object[] {
            "Selecione"});
            this.cbxSelecionaProduto.Location = new System.Drawing.Point(75, 24);
            this.cbxSelecionaProduto.Name = "cbxSelecionaProduto";
            this.cbxSelecionaProduto.Size = new System.Drawing.Size(309, 21);
            this.cbxSelecionaProduto.TabIndex = 6;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(5, 27);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(46, 13);
            this.label6.TabIndex = 3;
            this.label6.Text = "Seleção";
            // 
            // panel2
            // 
            this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel2.BackColor = System.Drawing.Color.DimGray;
            this.panel2.Controls.Add(this.label13);
            this.panel2.Controls.Add(this.btnGravarDistribuicao);
            this.panel2.Location = new System.Drawing.Point(91, 12);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(912, 75);
            this.panel2.TabIndex = 117;
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.BackColor = System.Drawing.Color.Transparent;
            this.label13.Font = new System.Drawing.Font("Impact", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label13.ForeColor = System.Drawing.Color.White;
            this.label13.Location = new System.Drawing.Point(4, 6);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(326, 60);
            this.label13.TabIndex = 96;
            this.label13.Text = "DISTRIBUIÇÃO x";
            this.label13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
            // 
            // btnGravarDistribuicao
            // 
            this.btnGravarDistribuicao.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnGravarDistribuicao.Location = new System.Drawing.Point(621, 22);
            this.btnGravarDistribuicao.Name = "btnGravarDistribuicao";
            this.btnGravarDistribuicao.Size = new System.Drawing.Size(91, 44);
            this.btnGravarDistribuicao.TabIndex = 16;
            this.btnGravarDistribuicao.Text = "Gravar Distribuição";
            this.btnGravarDistribuicao.UseVisualStyleBackColor = true;
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.BackColor = System.Drawing.Color.White;
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(toolStrip1);
            this.panel1.Location = new System.Drawing.Point(5, 12);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(76, 604);
            this.panel1.TabIndex = 118;
            // 
            // frmDistribuicaoPorLoja
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1014, 628);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Name = "frmDistribuicaoPorLoja";
            this.Text = "frmDistribuicaoPorLoja";
            toolStrip1.ResumeLayout(false);
            toolStrip1.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel1.PerformLayout();
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dtgSoma)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dtgLojas)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dtgLancamentos)).EndInit();
            this.tabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dtgEmpresaDetalhe)).EndInit();
            this.tabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.grProdutos.ResumeLayout(false);
            this.grProdutos.PerformLayout();
            this.tabControl2.ResumeLayout(false);
            this.tabFornecedor.ResumeLayout(false);
            this.tabFornecedor.PerformLayout();
            this.tabGeral.ResumeLayout(false);
            this.tabGeral.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStrip commands;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CurrentStatusWindow));
            System.Windows.Forms.StatusStrip statusBar;
            System.Windows.Forms.ImageList explorerImages;
            this.refreshCommand = new System.Windows.Forms.ToolStripButton();
            this.currentStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.statusExplorer = new System.Windows.Forms.TreeView();
            this.statusDetails = new System.Windows.Forms.PropertyGrid();
            this.statusProgress = new System.Windows.Forms.ProgressBar();
            this.displayWorker = new System.ComponentModel.BackgroundWorker();
            this.refreshTimer = new System.Windows.Forms.Timer(this.components);
            commands = new System.Windows.Forms.ToolStrip();
            statusBar = new System.Windows.Forms.StatusStrip();
            explorerImages = new System.Windows.Forms.ImageList(this.components);
            commands.SuspendLayout();
            statusBar.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.SuspendLayout();
            // 
            // commands
            // 
            commands.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            commands.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.refreshCommand});
            commands.Location = new System.Drawing.Point(0, 0);
            commands.Name = "commands";
            commands.Size = new System.Drawing.Size(533, 25);
            commands.TabIndex = 0;
            commands.Text = "toolStrip1";
            // 
            // refreshCommand
            // 
            this.refreshCommand.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.refreshCommand.Image = ((System.Drawing.Image)(resources.GetObject("refreshCommand.Image")));
            this.refreshCommand.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.refreshCommand.Name = "refreshCommand";
            this.refreshCommand.Size = new System.Drawing.Size(23, 22);
            this.refreshCommand.Text = "Refresh";
            this.refreshCommand.Click += new System.EventHandler(this.refreshCommand_Click);
            // 
            // statusBar
            // 
            statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.currentStatus});
            statusBar.Location = new System.Drawing.Point(0, 366);
            statusBar.Name = "statusBar";
            statusBar.Size = new System.Drawing.Size(533, 22);
            statusBar.TabIndex = 1;
            statusBar.Text = "statusStrip1";
            // 
            // currentStatus
            // 
            this.currentStatus.Name = "currentStatus";
            this.currentStatus.Size = new System.Drawing.Size(518, 17);
            this.currentStatus.Spring = true;
            this.currentStatus.Text = "Loading status...";
            this.currentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // explorerImages
            // 
            explorerImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("explorerImages.ImageStream")));
            explorerImages.TransparentColor = System.Drawing.Color.Transparent;
            explorerImages.Images.SetKeyName(0, "Unknown");
            explorerImages.Images.SetKeyName(1, "CompletedSuccess");
            explorerImages.Images.SetKeyName(2, "CompletedFailed");
            explorerImages.Images.SetKeyName(3, "Pending");
            explorerImages.Images.SetKeyName(4, "Cancelled");
            explorerImages.Images.SetKeyName(5, "Running");
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 25);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.statusExplorer);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.statusDetails);
            this.splitContainer1.Panel2.Controls.Add(this.statusProgress);
            this.splitContainer1.Size = new System.Drawing.Size(533, 341);
            this.splitContainer1.SplitterDistance = 177;
            this.splitContainer1.TabIndex = 2;
            // 
            // statusExplorer
            // 
            this.statusExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.statusExplorer.ImageKey = "Unknown";
            this.statusExplorer.ImageList = explorerImages;
            this.statusExplorer.Location = new System.Drawing.Point(0, 0);
            this.statusExplorer.Name = "statusExplorer";
            this.statusExplorer.SelectedImageIndex = 0;
            this.statusExplorer.Size = new System.Drawing.Size(177, 341);
            this.statusExplorer.TabIndex = 0;
            this.statusExplorer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.statusExplorer_AfterSelect);
            // 
            // statusDetails
            // 
            this.statusDetails.CommandsVisibleIfAvailable = false;
            this.statusDetails.Dock = System.Windows.Forms.DockStyle.Fill;
            this.statusDetails.Location = new System.Drawing.Point(0, 23);
            this.statusDetails.Name = "statusDetails";
            this.statusDetails.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
            this.statusDetails.Size = new System.Drawing.Size(352, 318);
            this.statusDetails.TabIndex = 0;
            this.statusDetails.ToolbarVisible = false;
            // 
            // statusProgress
            // 
            this.statusProgress.Dock = System.Windows.Forms.DockStyle.Top;
            this.statusProgress.Location = new System.Drawing.Point(0, 0);
            this.statusProgress.Name = "statusProgress";
            this.statusProgress.Size = new System.Drawing.Size(352, 23);
            this.statusProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            this.statusProgress.TabIndex = 1;
            // 
            // displayWorker
            // 
            this.displayWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.displayWorker_DoWork);
            this.displayWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.displayWorker_RunWorkerCompleted);
            // 
            // refreshTimer
            // 
            this.refreshTimer.Interval = 5000;
            this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick);
            // 
            // CurrentStatusWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(533, 388);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(statusBar);
            this.Controls.Add(commands);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "CurrentStatusWindow";
            this.Text = "Current Status for ...";
            commands.ResumeLayout(false);
            commands.PerformLayout();
            statusBar.ResumeLayout(false);
            statusBar.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemplo n.º 56
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label label1;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.GroupBox groupBox1;
            System.Windows.Forms.ToolStrip toolStrip1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LiveCapture));
            this.queueCap = new System.Windows.Forms.Button();
            this.captureFrame = new System.Windows.Forms.NumericUpDown();
            this.captureDelay = new System.Windows.Forms.NumericUpDown();
            this.triggerCapture = new System.Windows.Forms.Button();
            this.deleteMenu = new System.Windows.Forms.ToolStripButton();
            this.saveMenu = new System.Windows.Forms.ToolStripButton();
            this.openMenu = new System.Windows.Forms.ToolStripSplitButton();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newInstanceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.captures = new System.Windows.Forms.ListView();
            this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
            this.connectionIcon = new System.Windows.Forms.Label();
            this.connectionStatus = new System.Windows.Forms.Label();
            this.childProcessLabel = new System.Windows.Forms.Label();
            this.childProcesses = new System.Windows.Forms.ListView();
            this.rightclickContext = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.openThisCaptureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.newInstanceToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.saveThisCaptureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteThisCaptureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.captureCountdown = new System.Windows.Forms.Timer(this.components);
            this.childUpdateTimer = new System.Windows.Forms.Timer(this.components);
            label1 = new System.Windows.Forms.Label();
            label2 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            groupBox1 = new System.Windows.Forms.GroupBox();
            toolStrip1 = new System.Windows.Forms.ToolStrip();
            groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.captureFrame)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.captureDelay)).BeginInit();
            toolStrip1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.flowLayoutPanel1.SuspendLayout();
            this.rightclickContext.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(3, 205);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(98, 13);
            label1.TabIndex = 6;
            label1.Text = "Captures collected:";
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(6, 21);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(74, 13);
            label2.TabIndex = 2;
            label2.Text = "Capture Delay";
            // 
            // label3
            // 
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(6, 50);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(86, 13);
            label3.TabIndex = 3;
            label3.Text = "Capture Frame #";
            // 
            // groupBox1
            // 
            groupBox1.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)));
            groupBox1.Controls.Add(this.queueCap);
            groupBox1.Controls.Add(this.captureFrame);
            groupBox1.Controls.Add(label3);
            groupBox1.Controls.Add(label2);
            groupBox1.Controls.Add(this.captureDelay);
            groupBox1.Controls.Add(this.triggerCapture);
            groupBox1.Location = new System.Drawing.Point(3, 34);
            groupBox1.Name = "groupBox1";
            groupBox1.Size = new System.Drawing.Size(351, 75);
            groupBox1.TabIndex = 7;
            groupBox1.TabStop = false;
            groupBox1.Text = "Tools";
            // 
            // queueCap
            // 
            this.queueCap.Location = new System.Drawing.Point(222, 44);
            this.queueCap.Name = "queueCap";
            this.queueCap.Size = new System.Drawing.Size(92, 23);
            this.queueCap.TabIndex = 4;
            this.queueCap.Text = "Queue Capture";
            this.queueCap.UseVisualStyleBackColor = true;
            this.queueCap.Click += new System.EventHandler(this.queueCap_Click);
            // 
            // captureFrame
            // 
            this.captureFrame.Location = new System.Drawing.Point(96, 46);
            this.captureFrame.Maximum = new decimal(new int[] {
            10000000,
            0,
            0,
            0});
            this.captureFrame.Minimum = new decimal(new int[] {
            2,
            0,
            0,
            0});
            this.captureFrame.Name = "captureFrame";
            this.captureFrame.Size = new System.Drawing.Size(120, 20);
            this.captureFrame.TabIndex = 3;
            this.captureFrame.ThousandsSeparator = true;
            this.captureFrame.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // captureDelay
            // 
            this.captureDelay.Location = new System.Drawing.Point(96, 19);
            this.captureDelay.Name = "captureDelay";
            this.captureDelay.Size = new System.Drawing.Size(120, 20);
            this.captureDelay.TabIndex = 1;
            // 
            // triggerCapture
            // 
            this.triggerCapture.Location = new System.Drawing.Point(222, 17);
            this.triggerCapture.Name = "triggerCapture";
            this.triggerCapture.Size = new System.Drawing.Size(92, 23);
            this.triggerCapture.TabIndex = 2;
            this.triggerCapture.Text = "Trigger Capture";
            this.triggerCapture.UseVisualStyleBackColor = true;
            this.triggerCapture.Click += new System.EventHandler(this.triggerCapture_Click);
            // 
            // toolStrip1
            // 
            toolStrip1.CanOverflow = false;
            toolStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
            toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.deleteMenu,
            this.saveMenu,
            this.openMenu});
            toolStrip1.Location = new System.Drawing.Point(0, 375);
            toolStrip1.Name = "toolStrip1";
            toolStrip1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            toolStrip1.Size = new System.Drawing.Size(357, 25);
            toolStrip1.Stretch = true;
            toolStrip1.TabIndex = 8;
            toolStrip1.Text = "toolStrip1";
            // 
            // deleteMenu
            // 
            this.deleteMenu.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.deleteMenu.Image = ((System.Drawing.Image)(resources.GetObject("deleteMenu.Image")));
            this.deleteMenu.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.deleteMenu.Name = "deleteMenu";
            this.deleteMenu.Size = new System.Drawing.Size(42, 22);
            this.deleteMenu.Text = "Delete";
            this.deleteMenu.Click += new System.EventHandler(this.deleteCapture_Click);
            // 
            // saveMenu
            // 
            this.saveMenu.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.saveMenu.Image = ((System.Drawing.Image)(resources.GetObject("saveMenu.Image")));
            this.saveMenu.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.saveMenu.Name = "saveMenu";
            this.saveMenu.Size = new System.Drawing.Size(35, 22);
            this.saveMenu.Text = "Save";
            this.saveMenu.Click += new System.EventHandler(this.saveCapture_Click);
            // 
            // openMenu
            // 
            this.openMenu.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.openMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem,
            this.newInstanceToolStripMenuItem});
            this.openMenu.Image = ((System.Drawing.Image)(resources.GetObject("openMenu.Image")));
            this.openMenu.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.openMenu.Name = "openMenu";
            this.openMenu.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.openMenu.Size = new System.Drawing.Size(49, 22);
            this.openMenu.Text = "Open";
            this.openMenu.ButtonClick += new System.EventHandler(this.openCapture_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.openToolStripMenuItem.Text = "In &this instance";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openCapture_Click);
            // 
            // newInstanceToolStripMenuItem
            // 
            this.newInstanceToolStripMenuItem.Name = "newInstanceToolStripMenuItem";
            this.newInstanceToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.newInstanceToolStripMenuItem.Text = "In &new instance";
            this.newInstanceToolStripMenuItem.Click += new System.EventHandler(this.openNewWindow_Click);
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.Controls.Add(this.captures, 0, 5);
            this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 0);
            this.tableLayoutPanel1.Controls.Add(label1, 0, 4);
            this.tableLayoutPanel1.Controls.Add(groupBox1, 0, 1);
            this.tableLayoutPanel1.Controls.Add(toolStrip1, 0, 6);
            this.tableLayoutPanel1.Controls.Add(this.childProcessLabel, 0, 2);
            this.tableLayoutPanel1.Controls.Add(this.childProcesses, 0, 3);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 7;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
            this.tableLayoutPanel1.Size = new System.Drawing.Size(357, 400);
            this.tableLayoutPanel1.TabIndex = 0;
            // 
            // captures
            // 
            this.captures.Dock = System.Windows.Forms.DockStyle.Fill;
            this.captures.FullRowSelect = true;
            this.captures.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.captures.Location = new System.Drawing.Point(3, 221);
            this.captures.Name = "captures";
            this.captures.Size = new System.Drawing.Size(351, 151);
            this.captures.TabIndex = 6;
            this.captures.TileSize = new System.Drawing.Size(300, 100);
            this.captures.UseCompatibleStateImageBehavior = false;
            this.captures.View = System.Windows.Forms.View.Tile;
            this.captures.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.captures_ItemSelectionChanged);
            this.captures.KeyUp += new System.Windows.Forms.KeyEventHandler(this.captures_KeyUp);
            this.captures.MouseClick += new System.Windows.Forms.MouseEventHandler(this.captures_MouseClick);
            this.captures.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.captures_MouseDoubleClick);
            // 
            // flowLayoutPanel1
            // 
            this.flowLayoutPanel1.Controls.Add(this.connectionIcon);
            this.flowLayoutPanel1.Controls.Add(this.connectionStatus);
            this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 3);
            this.flowLayoutPanel1.Name = "flowLayoutPanel1";
            this.flowLayoutPanel1.Size = new System.Drawing.Size(351, 25);
            this.flowLayoutPanel1.TabIndex = 4;
            this.flowLayoutPanel1.WrapContents = false;
            // 
            // connectionIcon
            // 
            this.connectionIcon.Image = global::renderdocui.Properties.Resources.hourglass;
            this.connectionIcon.Location = new System.Drawing.Point(3, 0);
            this.connectionIcon.Name = "connectionIcon";
            this.connectionIcon.Size = new System.Drawing.Size(21, 23);
            this.connectionIcon.TabIndex = 1;
            this.connectionIcon.Text = "     ";
            // 
            // connectionStatus
            // 
            this.connectionStatus.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.connectionStatus.AutoSize = true;
            this.connectionStatus.Location = new System.Drawing.Point(30, 5);
            this.connectionStatus.Name = "connectionStatus";
            this.connectionStatus.Size = new System.Drawing.Size(70, 13);
            this.connectionStatus.TabIndex = 2;
            this.connectionStatus.Text = "Connecting...";
            this.connectionStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // childProcessLabel
            // 
            this.childProcessLabel.Location = new System.Drawing.Point(3, 112);
            this.childProcessLabel.Name = "childProcessLabel";
            this.childProcessLabel.Size = new System.Drawing.Size(85, 28);
            this.childProcessLabel.TabIndex = 9;
            this.childProcessLabel.Text = "Child Processes:";
            this.childProcessLabel.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
            // 
            // childProcesses
            // 
            this.childProcesses.Dock = System.Windows.Forms.DockStyle.Fill;
            this.childProcesses.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.childProcesses.Location = new System.Drawing.Point(3, 143);
            this.childProcesses.MinimumSize = new System.Drawing.Size(0, 40);
            this.childProcesses.Name = "childProcesses";
            this.childProcesses.Size = new System.Drawing.Size(351, 40);
            this.childProcesses.TabIndex = 5;
            this.childProcesses.UseCompatibleStateImageBehavior = false;
            this.childProcesses.View = System.Windows.Forms.View.Tile;
            this.childProcesses.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.childProcesses_MouseDoubleClick);
            // 
            // rightclickContext
            // 
            this.rightclickContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openThisCaptureToolStripMenuItem,
            this.saveThisCaptureToolStripMenuItem,
            this.deleteThisCaptureToolStripMenuItem});
            this.rightclickContext.Name = "rightclickContext";
            this.rightclickContext.Size = new System.Drawing.Size(124, 70);
            // 
            // openThisCaptureToolStripMenuItem
            // 
            this.openThisCaptureToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem1,
            this.newInstanceToolStripMenuItem1});
            this.openThisCaptureToolStripMenuItem.Name = "openThisCaptureToolStripMenuItem";
            this.openThisCaptureToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
            this.openThisCaptureToolStripMenuItem.Text = "&Open in...";
            // 
            // openToolStripMenuItem1
            // 
            this.openToolStripMenuItem1.Name = "openToolStripMenuItem1";
            this.openToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
            this.openToolStripMenuItem1.Text = "This instance";
            this.openToolStripMenuItem1.Click += new System.EventHandler(this.openCapture_Click);
            // 
            // newInstanceToolStripMenuItem1
            // 
            this.newInstanceToolStripMenuItem1.Name = "newInstanceToolStripMenuItem1";
            this.newInstanceToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
            this.newInstanceToolStripMenuItem1.Text = "New instance";
            this.newInstanceToolStripMenuItem1.Click += new System.EventHandler(this.openNewWindow_Click);
            // 
            // saveThisCaptureToolStripMenuItem
            // 
            this.saveThisCaptureToolStripMenuItem.Name = "saveThisCaptureToolStripMenuItem";
            this.saveThisCaptureToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
            this.saveThisCaptureToolStripMenuItem.Text = "&Save";
            this.saveThisCaptureToolStripMenuItem.Click += new System.EventHandler(this.saveCapture_Click);
            // 
            // deleteThisCaptureToolStripMenuItem
            // 
            this.deleteThisCaptureToolStripMenuItem.Name = "deleteThisCaptureToolStripMenuItem";
            this.deleteThisCaptureToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
            this.deleteThisCaptureToolStripMenuItem.Text = "&Delete";
            this.deleteThisCaptureToolStripMenuItem.Click += new System.EventHandler(this.deleteCapture_Click);
            // 
            // captureCountdown
            // 
            this.captureCountdown.Interval = 1000;
            this.captureCountdown.Tick += new System.EventHandler(this.captureCountdown_Tick);
            // 
            // childUpdateTimer
            // 
            this.childUpdateTimer.Enabled = true;
            this.childUpdateTimer.Tick += new System.EventHandler(this.childUpdateTimer_Tick);
            // 
            // LiveCapture
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(357, 400);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "LiveCapture";
            this.Text = "Connecting...";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LiveCapture_FormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LiveCapture_FormClosed);
            this.Shown += new System.EventHandler(this.LiveCapture_Shown);
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.captureFrame)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.captureDelay)).EndInit();
            toolStrip1.ResumeLayout(false);
            toolStrip1.PerformLayout();
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.flowLayoutPanel1.ResumeLayout(false);
            this.flowLayoutPanel1.PerformLayout();
            this.rightclickContext.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 57
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripMenuItem tsmiDismissedEmployees;
            System.Windows.Forms.ToolStripMenuItem toolStripMenuItem10;
            System.Windows.Forms.ToolStrip toolStrip1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KadrBaseForm));
            this.tsbNew = new System.Windows.Forms.ToolStripSplitButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbDelete = new System.Windows.Forms.ToolStripButton();
            this.tsbEdit = new System.Windows.Forms.ToolStripButton();
            this.tsbUpdate = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbCut = new System.Windows.Forms.ToolStripButton();
            this.tsbCopy = new System.Windows.Forms.ToolStripButton();
            this.tsbPaste = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.RollbackMenuItem = new System.Windows.Forms.ToolStripSplitButton();
            this.RedoMenuItem = new System.Windows.Forms.ToolStripSplitButton();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.tscbFindType = new System.Windows.Forms.ToolStripComboBox();
            this.tscbTextSearch = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
            this.расширенныйПоискToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbEmployeeFilter = new System.Windows.Forms.ToolStripSplitButton();
            this.tsmiCurrentEmployees = new System.Windows.Forms.ToolStripMenuItem();
            this.tsbDepartmentFilter = new System.Windows.Forms.ToolStripSplitButton();
            this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbBonusFilter = new System.Windows.Forms.ToolStripSplitButton();
            this.текущиеНадбавкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.отмененныеНадбавкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.CurrentObjectLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.CurrentObjectInfoLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.kadrTreeView1 = new Kadr.KadrTreeView.KadrTreeView(this.components);
            this.treeViewImageList = new System.Windows.Forms.ImageList(this.components);
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.FileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripTextBox1 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
            this.miImport = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.miExportReport = new System.Windows.Forms.ToolStripMenuItem();
            this.импортироватьСуточныйРапортToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.печатьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
            this.ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiActions = new System.Windows.Forms.ToolStripMenuItem();
            this.справочникиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ВидНадбавкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.единицыИзмеренияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.типНадбавкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.видToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            this.gRToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.пКГToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.категорияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.категорииПерсоналаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.видРаботыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.видыДолжностейToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.категорииToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.категорииToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.группыДолжностейToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.персоналToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.гражданствоToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.семейноеПоложениеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.приказыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.типыПриказовToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.видыПриказовToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.приказыМинистерстваToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.окладToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.источникФинансированияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.центрыФинансированияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.оКВЭДToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.базовыеОкладыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.совмещенияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.причинаСовмещенияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.табельToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.статусДняToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.графикиРаботыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.отделыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.типыОтделовToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.сервисToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.параметрыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.продлитьНадбавкуToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.назначитьЧасыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.отчётыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            this.графикБуренияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.надбавкиПоВидуРаботыToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.надбавкиПоОтделамToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.надбавкиПоДолжностямToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.надбавкиТ3ПоППСToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.отчетТ3ПоППСToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.комплексныйОтчетПоНадбавкамToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.фОТПоКатегориямБезИсточниковToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.поискНадбавокПоПриказуToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.сеткаПоДолжностямИОкладамToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.надбавкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.назначитьНадбавкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.продлитьНадбавкуToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.НастройкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.видыОтчетовToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.последовательностьДанныхToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.правкаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.отменитьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.повторитьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
            this.вырезатьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.копироватьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.вставитьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
            this.выделитьВсёToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.видToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.панельИнструментовToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.строкаСтатусаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.деревоПромысловыхОбъектовToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.справкаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.оглавлениеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.ApplicationAboutStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.treeNodeContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
            this.развернутьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.свернутьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
            this.показатьВсеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.свернутьВсеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripSeparator();
            this.обновитьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpProvider1 = new System.Windows.Forms.HelpProvider();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.departmentBindingSource = new System.Windows.Forms.BindingSource(this.components);
            tsmiDismissedEmployees = new System.Windows.Forms.ToolStripMenuItem();
            toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
            toolStrip1 = new System.Windows.Forms.ToolStrip();
            toolStrip1.SuspendLayout();
            this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.treeNodeContextMenu.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.departmentBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // tsmiDismissedEmployees
            // 
            tsmiDismissedEmployees.CheckOnClick = true;
            tsmiDismissedEmployees.Name = "tsmiDismissedEmployees";
            tsmiDismissedEmployees.Size = new System.Drawing.Size(203, 22);
            tsmiDismissedEmployees.Text = "Уволенные сотрудники";
            // 
            // toolStripMenuItem10
            // 
            toolStripMenuItem10.CheckOnClick = true;
            toolStripMenuItem10.Name = "toolStripMenuItem10";
            toolStripMenuItem10.Size = new System.Drawing.Size(205, 22);
            toolStripMenuItem10.Text = "Уволенные сотрудники";
            // 
            // toolStrip1
            // 
            toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsbNew,
            this.toolStripSeparator2,
            this.tsbDelete,
            this.tsbEdit,
            this.tsbUpdate,
            this.toolStripSeparator4,
            this.tsbCut,
            this.tsbCopy,
            this.tsbPaste,
            this.toolStripSeparator3,
            this.RollbackMenuItem,
            this.RedoMenuItem,
            this.toolStripSeparator5,
            this.tscbFindType,
            this.tscbTextSearch,
            this.toolStripSplitButton1,
            this.toolStripSeparator11,
            this.tsbEmployeeFilter,
            this.tsbDepartmentFilter,
            this.toolStripSeparator13,
            this.tsbBonusFilter,
            this.toolStripSeparator14});
            toolStrip1.Location = new System.Drawing.Point(3, 24);
            toolStrip1.Name = "toolStrip1";
            toolStrip1.Size = new System.Drawing.Size(838, 25);
            toolStrip1.TabIndex = 1;
            // 
            // tsbNew
            // 
            this.tsbNew.Image = global::Kadr.Properties.Resources.NewReportHS;
            this.tsbNew.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbNew.Name = "tsbNew";
            this.tsbNew.Size = new System.Drawing.Size(132, 22);
            this.tsbNew.Text = "Создать объект...";
            this.tsbNew.ButtonClick += new System.EventHandler(this.tsbNew_ButtonClick);
            this.tsbNew.DropDownOpening += new System.EventHandler(this.tsbNew_DropDownOpening);
            this.tsbNew.MouseEnter += new System.EventHandler(this.tsbNew_MouseEnter);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // tsbDelete
            // 
            this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbDelete.Image = global::Kadr.Properties.Resources.DeleteHS;
            this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbDelete.Name = "tsbDelete";
            this.tsbDelete.Size = new System.Drawing.Size(23, 22);
            this.tsbDelete.Click += new System.EventHandler(this.tsbDelete_Click);
            this.tsbDelete.MouseEnter += new System.EventHandler(this.tsbDelete_MouseEnter);
            // 
            // tsbEdit
            // 
            this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbEdit.Image = global::Kadr.Properties.Resources.EditInformationHS;
            this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbEdit.Name = "tsbEdit";
            this.tsbEdit.Size = new System.Drawing.Size(23, 22);
            this.tsbEdit.Click += new System.EventHandler(this.tsbEdit_Click);
            this.tsbEdit.MouseEnter += new System.EventHandler(this.tsbEdit_MouseEnter);
            // 
            // tsbUpdate
            // 
            this.tsbUpdate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbUpdate.Image = global::Kadr.Properties.Resources.RefreshDocViewHS;
            this.tsbUpdate.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbUpdate.Name = "tsbUpdate";
            this.tsbUpdate.Size = new System.Drawing.Size(23, 22);
            this.tsbUpdate.Click += new System.EventHandler(this.tsbUpdate_Click);
            this.tsbUpdate.MouseEnter += new System.EventHandler(this.tsbUpdate_MouseEnter);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            this.toolStripSeparator4.Visible = false;
            // 
            // tsbCut
            // 
            this.tsbCut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbCut.Image = global::Kadr.Properties.Resources.Edit_Cut;
            this.tsbCut.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbCut.Name = "tsbCut";
            this.tsbCut.Size = new System.Drawing.Size(23, 22);
            this.tsbCut.Visible = false;
            this.tsbCut.Click += new System.EventHandler(this.tsbCut_Click);
            this.tsbCut.MouseEnter += new System.EventHandler(this.tsbCut_MouseEnter);
            // 
            // tsbCopy
            // 
            this.tsbCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbCopy.Image = global::Kadr.Properties.Resources.CopyHS;
            this.tsbCopy.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbCopy.Name = "tsbCopy";
            this.tsbCopy.Size = new System.Drawing.Size(23, 22);
            this.tsbCopy.Visible = false;
            this.tsbCopy.Click += new System.EventHandler(this.tsbCopy_Click);
            this.tsbCopy.MouseEnter += new System.EventHandler(this.tsbCopy_MouseEnter);
            // 
            // tsbPaste
            // 
            this.tsbPaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.tsbPaste.Image = global::Kadr.Properties.Resources.PasteHS;
            this.tsbPaste.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbPaste.Name = "tsbPaste";
            this.tsbPaste.Size = new System.Drawing.Size(23, 22);
            this.tsbPaste.Visible = false;
            this.tsbPaste.Click += new System.EventHandler(this.tsbPaste_Click);
            this.tsbPaste.MouseEnter += new System.EventHandler(this.tsbPaste_MouseEnter);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            this.toolStripSeparator3.Visible = false;
            // 
            // RollbackMenuItem
            // 
            this.RollbackMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.RollbackMenuItem.Enabled = false;
            this.RollbackMenuItem.Image = global::Kadr.Properties.Resources.Edit_Undo;
            this.RollbackMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.RollbackMenuItem.Name = "RollbackMenuItem";
            this.RollbackMenuItem.Size = new System.Drawing.Size(32, 22);
            this.RollbackMenuItem.Text = "toolStripSplitButton1";
            this.RollbackMenuItem.Visible = false;
            this.RollbackMenuItem.DropDownOpening += new System.EventHandler(this.RollbackMenuItem_DropDownOpening);
            this.RollbackMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.RollbackMenuItem_DropDownItemClicked);
            // 
            // RedoMenuItem
            // 
            this.RedoMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.RedoMenuItem.Enabled = false;
            this.RedoMenuItem.Image = global::Kadr.Properties.Resources.Edit_Redo;
            this.RedoMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.RedoMenuItem.Name = "RedoMenuItem";
            this.RedoMenuItem.Size = new System.Drawing.Size(32, 22);
            this.RedoMenuItem.Text = "toolStripSplitButton2";
            this.RedoMenuItem.Visible = false;
            this.RedoMenuItem.DropDownOpening += new System.EventHandler(this.RedoMenuItem_DropDownOpening);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
            this.toolStripSeparator5.Visible = false;
            // 
            // tscbFindType
            // 
            this.tscbFindType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.tscbFindType.Items.AddRange(new object[] {
            "Поиск сотрудника",
            "Поиск отдела"});
            this.tscbFindType.MergeAction = System.Windows.Forms.MergeAction.MatchOnly;
            this.tscbFindType.Name = "tscbFindType";
            this.tscbFindType.Size = new System.Drawing.Size(160, 25);
            this.tscbFindType.SelectedIndexChanged += new System.EventHandler(this.tscbFindType_SelectedIndexChanged);
            // 
            // tscbTextSearch
            // 
            this.tscbTextSearch.Name = "tscbTextSearch";
            this.tscbTextSearch.Size = new System.Drawing.Size(270, 25);
            this.tscbTextSearch.SelectedIndexChanged += new System.EventHandler(this.tscbTextSearch_SelectedIndexChanged);
            // 
            // toolStripSplitButton1
            // 
            this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.расширенныйПоискToolStripMenuItem});
            this.toolStripSplitButton1.Image = global::Kadr.Properties.Resources.PlayHS;
            this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Black;
            this.toolStripSplitButton1.Name = "toolStripSplitButton1";
            this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 22);
            this.toolStripSplitButton1.Text = "toolStripSplitButton1";
            this.toolStripSplitButton1.Visible = false;
            this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.toolStripSplitButton1_ButtonClick);
            // 
            // расширенныйПоискToolStripMenuItem
            // 
            this.расширенныйПоискToolStripMenuItem.Name = "расширенныйПоискToolStripMenuItem";
            this.расширенныйПоискToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
            this.расширенныйПоискToolStripMenuItem.Text = "Расширенный поиск...";
            // 
            // toolStripSeparator11
            // 
            this.toolStripSeparator11.Name = "toolStripSeparator11";
            this.toolStripSeparator11.Size = new System.Drawing.Size(6, 25);
            // 
            // tsbEmployeeFilter
            // 
            this.tsbEmployeeFilter.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiCurrentEmployees,
            tsmiDismissedEmployees});
            this.tsbEmployeeFilter.Image = global::Kadr.Properties.Resources.Settings;
            this.tsbEmployeeFilter.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbEmployeeFilter.Name = "tsbEmployeeFilter";
            this.tsbEmployeeFilter.Size = new System.Drawing.Size(105, 22);
            this.tsbEmployeeFilter.Tag = "";
            this.tsbEmployeeFilter.Text = "Сотрудники";
            this.tsbEmployeeFilter.ToolTipText = "Настройки фильтра по сотрудникам";
            this.tsbEmployeeFilter.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.tsbEmployeeFilter_DropDownItemClicked);
            // 
            // tsmiCurrentEmployees
            // 
            this.tsmiCurrentEmployees.Checked = true;
            this.tsmiCurrentEmployees.CheckOnClick = true;
            this.tsmiCurrentEmployees.CheckState = System.Windows.Forms.CheckState.Checked;
            this.tsmiCurrentEmployees.Name = "tsmiCurrentEmployees";
            this.tsmiCurrentEmployees.Size = new System.Drawing.Size(203, 22);
            this.tsmiCurrentEmployees.Text = "Текущие сотрудники";
            // 
            // tsbDepartmentFilter
            // 
            this.tsbDepartmentFilter.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem13,
            this.toolStripMenuItem14});
            this.tsbDepartmentFilter.Image = global::Kadr.Properties.Resources.Settings;
            this.tsbDepartmentFilter.ImageTransparentColor = System.Drawing.Color.Black;
            this.tsbDepartmentFilter.Name = "tsbDepartmentFilter";
            this.tsbDepartmentFilter.Size = new System.Drawing.Size(81, 20);
            this.tsbDepartmentFilter.Text = "Отделы";
            this.tsbDepartmentFilter.ToolTipText = "Настройки фильтра по отделам";
            this.tsbDepartmentFilter.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.tsbDepartmentFilter_DropDownItemClicked);
            // 
            // toolStripMenuItem13
            // 
            this.toolStripMenuItem13.Checked = true;
            this.toolStripMenuItem13.CheckOnClick = true;
            this.toolStripMenuItem13.CheckState = System.Windows.Forms.CheckState.Checked;
            this.toolStripMenuItem13.Name = "toolStripMenuItem13";
            this.toolStripMenuItem13.Size = new System.Drawing.Size(230, 22);
            this.toolStripMenuItem13.Text = "Текущие отделы";
            // 
            // toolStripMenuItem14
            // 
            this.toolStripMenuItem14.CheckOnClick = true;
            this.toolStripMenuItem14.Name = "toolStripMenuItem14";
            this.toolStripMenuItem14.Size = new System.Drawing.Size(230, 22);
            this.toolStripMenuItem14.Text = "Расформированные отделы";
            // 
            // toolStripSeparator13
            // 
            this.toolStripSeparator13.Name = "toolStripSeparator13";
            this.toolStripSeparator13.Size = new System.Drawing.Size(6, 25);
            // 
            // tsbBonusFilter
            // 
            this.tsbBonusFilter.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.текущиеНадбавкиToolStripMenuItem,
            this.отмененныеНадбавкиToolStripMenuItem});
            this.tsbBonusFilter.Image = global::Kadr.Properties.Resources.Settings;
            this.tsbBonusFilter.ImageTransparentColor = System.Drawing.Color.Transparent;
            this.tsbBonusFilter.Name = "tsbBonusFilter";
            this.tsbBonusFilter.Size = new System.Drawing.Size(92, 20);
            this.tsbBonusFilter.Text = "Надбавки";
            this.tsbBonusFilter.ToolTipText = "Настройки фильтра надбавок";
            this.tsbBonusFilter.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripSplitButton2_DropDownItemClicked);
            // 
            // текущиеНадбавкиToolStripMenuItem
            // 
            this.текущиеНадбавкиToolStripMenuItem.Checked = true;
            this.текущиеНадбавкиToolStripMenuItem.CheckOnClick = true;
            this.текущиеНадбавкиToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.текущиеНадбавкиToolStripMenuItem.Name = "текущиеНадбавкиToolStripMenuItem";
            this.текущиеНадбавкиToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
            this.текущиеНадбавкиToolStripMenuItem.Text = "Текущие надбавки";
            // 
            // отмененныеНадбавкиToolStripMenuItem
            // 
            this.отмененныеНадбавкиToolStripMenuItem.CheckOnClick = true;
            this.отмененныеНадбавкиToolStripMenuItem.Name = "отмененныеНадбавкиToolStripMenuItem";
            this.отмененныеНадбавкиToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
            this.отмененныеНадбавкиToolStripMenuItem.Text = "Отмененные надбавки";
            // 
            // toolStripSeparator14
            // 
            this.toolStripSeparator14.Name = "toolStripSeparator14";
            this.toolStripSeparator14.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.BottomToolStripPanel
            // 
            this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStrip1);
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.Controls.Add(this.splitContainer1);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(841, 389);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(841, 462);
            this.toolStripContainer1.TabIndex = 0;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStripContainer1.TopToolStripPanel
            // 
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStrip1);
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.CurrentObjectLabel,
            this.CurrentObjectInfoLabel});
            this.statusStrip1.Location = new System.Drawing.Point(0, 0);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
            this.statusStrip1.Size = new System.Drawing.Size(841, 24);
            this.statusStrip1.TabIndex = 0;
            // 
            // CurrentObjectLabel
            // 
            this.CurrentObjectLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) 
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) 
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
            this.CurrentObjectLabel.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
            this.CurrentObjectLabel.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.CurrentObjectLabel.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.CurrentObjectLabel.Name = "CurrentObjectLabel";
            this.CurrentObjectLabel.Size = new System.Drawing.Size(59, 19);
            this.CurrentObjectLabel.Text = "Текущее";
            // 
            // CurrentObjectInfoLabel
            // 
            this.CurrentObjectInfoLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) 
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) 
            | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
            this.CurrentObjectInfoLabel.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
            this.CurrentObjectInfoLabel.Name = "CurrentObjectInfoLabel";
            this.CurrentObjectInfoLabel.Size = new System.Drawing.Size(122, 19);
            this.CurrentObjectInfoLabel.Text = "toolStripStatusLabel1";
            // 
            // splitContainer1
            // 
            this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.kadrTreeView1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.ForeColor = System.Drawing.SystemColors.ControlText;
            this.splitContainer1.Size = new System.Drawing.Size(841, 389);
            this.splitContainer1.SplitterDistance = 192;
            this.splitContainer1.TabIndex = 0;
            // 
            // kadrTreeView1
            // 
            this.kadrTreeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.kadrTreeView1.ImageIndex = 0;
            this.kadrTreeView1.ImageList = this.treeViewImageList;
            this.kadrTreeView1.Location = new System.Drawing.Point(0, 0);
            this.kadrTreeView1.Name = "kadrTreeView1";
            this.kadrTreeView1.SelectedImageIndex = 0;
            this.kadrTreeView1.Size = new System.Drawing.Size(190, 387);
            this.kadrTreeView1.TabIndex = 0;
            this.kadrTreeView1.NodeChildsAddedEvent += new APG.CodeHelper.DBTreeView.NodeChildsAdded(this.kadrTreeView1_NodeChildsAddedEvent);
            this.kadrTreeView1.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.kadrTreeView1_BeforeSelect);
            this.kadrTreeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.kadrTreeView1_AfterSelect);
            this.kadrTreeView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.kadrTreeView1_MouseClick);
            // 
            // treeViewImageList
            // 
            this.treeViewImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("treeViewImageList.ImageStream")));
            this.treeViewImageList.TransparentColor = System.Drawing.Color.Black;
            this.treeViewImageList.Images.SetKeyName(0, "");
            this.treeViewImageList.Images.SetKeyName(1, "");
            this.treeViewImageList.Images.SetKeyName(2, "");
            this.treeViewImageList.Images.SetKeyName(3, "");
            this.treeViewImageList.Images.SetKeyName(4, "");
            this.treeViewImageList.Images.SetKeyName(5, "");
            this.treeViewImageList.Images.SetKeyName(6, "");
            this.treeViewImageList.Images.SetKeyName(7, "");
            this.treeViewImageList.Images.SetKeyName(8, "im1.bmp");
            this.treeViewImageList.Images.SetKeyName(9, "User.png");
            // 
            // menuStrip1
            // 
            this.menuStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.FileToolStripMenuItem,
            this.tsmiActions,
            this.справочникиToolStripMenuItem,
            this.сервисToolStripMenuItem,
            this.отчётыToolStripMenuItem,
            this.правкаToolStripMenuItem,
            this.видToolStripMenuItem,
            this.справкаToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(841, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // FileToolStripMenuItem
            // 
            this.FileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripTextBox1,
            this.toolStripSeparator6,
            this.печатьToolStripMenuItem,
            this.toolStripMenuItem4,
            this.ExitToolStripMenuItem});
            this.FileToolStripMenuItem.Name = "FileToolStripMenuItem";
            this.FileToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
            this.FileToolStripMenuItem.Text = "&Файл";
            // 
            // toolStripTextBox1
            // 
            this.toolStripTextBox1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem11,
            this.toolStripMenuItem12,
            this.toolStripSeparator9,
            this.miImport,
            this.toolStripSeparator7,
            this.miExportReport,
            this.импортироватьСуточныйРапортToolStripMenuItem});
            this.toolStripTextBox1.Name = "toolStripTextBox1";
            this.toolStripTextBox1.Size = new System.Drawing.Size(175, 22);
            this.toolStripTextBox1.Text = "Импорт и экспорт";
            this.toolStripTextBox1.Visible = false;
            this.toolStripTextBox1.DropDownOpening += new System.EventHandler(this.toolStripTextBox1_DropDownOpening);
            // 
            // toolStripMenuItem11
            // 
            this.toolStripMenuItem11.Name = "toolStripMenuItem11";
            this.toolStripMenuItem11.Size = new System.Drawing.Size(386, 22);
            // 
            // toolStripMenuItem12
            // 
            this.toolStripMenuItem12.Name = "toolStripMenuItem12";
            this.toolStripMenuItem12.Size = new System.Drawing.Size(386, 22);
            this.toolStripMenuItem12.Text = "Экспортировать справочники (режим совместимости)...";
            this.toolStripMenuItem12.Click += new System.EventHandler(this.toolStripMenuItem12_Click);
            // 
            // toolStripSeparator9
            // 
            this.toolStripSeparator9.Name = "toolStripSeparator9";
            this.toolStripSeparator9.Size = new System.Drawing.Size(383, 6);
            // 
            // miImport
            // 
            this.miImport.Name = "miImport";
            this.miImport.Size = new System.Drawing.Size(386, 22);
            this.miImport.Text = "Импортировать справочники...";
            this.miImport.Click += new System.EventHandler(this.miImport_Click);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(383, 6);
            // 
            // miExportReport
            // 
            this.miExportReport.Name = "miExportReport";
            this.miExportReport.Size = new System.Drawing.Size(386, 22);
            this.miExportReport.Text = "Экспортировать суточный рапорт...";
            this.miExportReport.Click += new System.EventHandler(this.miExportReport_Click);
            // 
            // импортироватьСуточныйРапортToolStripMenuItem
            // 
            this.импортироватьСуточныйРапортToolStripMenuItem.Name = "импортироватьСуточныйРапортToolStripMenuItem";
            this.импортироватьСуточныйРапортToolStripMenuItem.Size = new System.Drawing.Size(386, 22);
            this.импортироватьСуточныйРапортToolStripMenuItem.Text = "Импортировать суточный рапорт...";
            this.импортироватьСуточныйРапортToolStripMenuItem.Click += new System.EventHandler(this.импортироватьСуточныйРапортToolStripMenuItem_Click);
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(172, 6);
            this.toolStripSeparator6.Visible = false;
            // 
            // печатьToolStripMenuItem
            // 
            this.печатьToolStripMenuItem.Name = "печатьToolStripMenuItem";
            this.печатьToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
            this.печатьToolStripMenuItem.Text = "Печать...";
            this.печатьToolStripMenuItem.Visible = false;
            // 
            // toolStripMenuItem4
            // 
            this.toolStripMenuItem4.Name = "toolStripMenuItem4";
            this.toolStripMenuItem4.Size = new System.Drawing.Size(172, 6);
            // 
            // ExitToolStripMenuItem
            // 
            this.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
            this.ExitToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
            this.ExitToolStripMenuItem.Text = "&Выход";
            this.ExitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
            // 
            // tsmiActions
            // 
            this.tsmiActions.Name = "tsmiActions";
            this.tsmiActions.Size = new System.Drawing.Size(70, 20);
            this.tsmiActions.Text = "Действия";
            this.tsmiActions.ToolTipText = "Действия над объектом дерева";
            this.tsmiActions.DropDownOpening += new System.EventHandler(this.tsmiActions_DropDownOpening);
            // 
            // справочникиToolStripMenuItem
            // 
            this.справочникиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ВидНадбавкиToolStripMenuItem,
            this.toolStripSeparator8,
            this.gRToolStripMenuItem,
            this.персоналToolStripMenuItem,
            this.приказыToolStripMenuItem,
            this.окладToolStripMenuItem,
            this.совмещенияToolStripMenuItem,
            this.табельToolStripMenuItem,
            this.отделыToolStripMenuItem});
            this.справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
            this.справочникиToolStripMenuItem.Size = new System.Drawing.Size(94, 20);
            this.справочникиToolStripMenuItem.Text = "&Справочники";
            this.справочникиToolStripMenuItem.DropDownOpened += new System.EventHandler(this.справочникиToolStripMenuItem_DropDownOpened);
            // 
            // ВидНадбавкиToolStripMenuItem
            // 
            this.ВидНадбавкиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.единицыИзмеренияToolStripMenuItem,
            this.типНадбавкиToolStripMenuItem,
            this.видToolStripMenuItem1});
            this.ВидНадбавкиToolStripMenuItem.Name = "ВидНадбавкиToolStripMenuItem";
            this.ВидНадбавкиToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.ВидНадбавкиToolStripMenuItem.Text = "Надбавки";
            // 
            // единицыИзмеренияToolStripMenuItem
            // 
            this.единицыИзмеренияToolStripMenuItem.Name = "единицыИзмеренияToolStripMenuItem";
            this.единицыИзмеренияToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.единицыИзмеренияToolStripMenuItem.Text = "Единицы измерения";
            this.единицыИзмеренияToolStripMenuItem.Click += new System.EventHandler(this.единицыИзмеренияToolStripMenuItem_Click);
            // 
            // типНадбавкиToolStripMenuItem
            // 
            this.типНадбавкиToolStripMenuItem.Name = "типНадбавкиToolStripMenuItem";
            this.типНадбавкиToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.типНадбавкиToolStripMenuItem.Text = "Типы надбавок...";
            this.типНадбавкиToolStripMenuItem.Click += new System.EventHandler(this.типНадбавкиToolStripMenuItem_Click);
            // 
            // видToolStripMenuItem1
            // 
            this.видToolStripMenuItem1.Name = "видToolStripMenuItem1";
            this.видToolStripMenuItem1.Size = new System.Drawing.Size(186, 22);
            this.видToolStripMenuItem1.Text = "Виды надбавок...";
            this.видToolStripMenuItem1.Click += new System.EventHandler(this.видToolStripMenuItem1_Click);
            // 
            // toolStripSeparator8
            // 
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(166, 6);
            // 
            // gRToolStripMenuItem
            // 
            this.gRToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.пКГToolStripMenuItem,
            this.категорияToolStripMenuItem,
            this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem,
            this.категорииПерсоналаToolStripMenuItem,
            this.видРаботыToolStripMenuItem,
            this.видыДолжностейToolStripMenuItem,
            this.категорииToolStripMenuItem,
            this.категорииToolStripMenuItem1,
            this.группыДолжностейToolStripMenuItem});
            this.gRToolStripMenuItem.Name = "gRToolStripMenuItem";
            this.gRToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.gRToolStripMenuItem.Text = "Должности";
            // 
            // пКГToolStripMenuItem
            // 
            this.пКГToolStripMenuItem.Name = "пКГToolStripMenuItem";
            this.пКГToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.пКГToolStripMenuItem.Text = "Профессионально-квалификационные группы...";
            this.пКГToolStripMenuItem.Click += new System.EventHandler(this.пКГToolStripMenuItem_Click);
            // 
            // категорияToolStripMenuItem
            // 
            this.категорияToolStripMenuItem.Name = "категорияToolStripMenuItem";
            this.категорияToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.категорияToolStripMenuItem.Text = "Профессионально-квалификационные уровни...";
            this.категорияToolStripMenuItem.Click += new System.EventHandler(this.категорияToolStripMenuItem_Click);
            // 
            // профессиональноквалификационыеПодподкатегорииToolStripMenuItem
            // 
            this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem.Name = "профессиональноквалификационыеПодподкатегорииToolStripMenuItem";
            this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem.Text = "Коэффициенты к окладу";
            this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem.Click += new System.EventHandler(this.профессиональноквалификационыеПодподкатегорииToolStripMenuItem_Click);
            // 
            // категорииПерсоналаToolStripMenuItem
            // 
            this.категорииПерсоналаToolStripMenuItem.Name = "категорииПерсоналаToolStripMenuItem";
            this.категорииПерсоналаToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.категорииПерсоналаToolStripMenuItem.Text = "Категории персонала...";
            this.категорииПерсоналаToolStripMenuItem.Click += new System.EventHandler(this.категорииПерсоналаToolStripMenuItem_Click);
            // 
            // видРаботыToolStripMenuItem
            // 
            this.видРаботыToolStripMenuItem.Name = "видРаботыToolStripMenuItem";
            this.видРаботыToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.видРаботыToolStripMenuItem.Text = "Виды работ...";
            this.видРаботыToolStripMenuItem.Click += new System.EventHandler(this.видРаботыToolStripMenuItem_Click);
            // 
            // видыДолжностейToolStripMenuItem
            // 
            this.видыДолжностейToolStripMenuItem.Name = "видыДолжностейToolStripMenuItem";
            this.видыДолжностейToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.видыДолжностейToolStripMenuItem.Text = "Виды должностей...";
            this.видыДолжностейToolStripMenuItem.Click += new System.EventHandler(this.видыДолжностейToolStripMenuItem_Click);
            // 
            // категорииToolStripMenuItem
            // 
            this.категорииToolStripMenuItem.Name = "категорииToolStripMenuItem";
            this.категорииToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.категорииToolStripMenuItem.Text = "Категории для ВПО-2";
            this.категорииToolStripMenuItem.Click += new System.EventHandler(this.категорииToolStripMenuItem_Click);
            // 
            // категорииToolStripMenuItem1
            // 
            this.категорииToolStripMenuItem1.Name = "категорииToolStripMenuItem1";
            this.категорииToolStripMenuItem1.Size = new System.Drawing.Size(346, 22);
            this.категорииToolStripMenuItem1.Text = "Категории для зп-образования";
            this.категорииToolStripMenuItem1.Click += new System.EventHandler(this.категорииToolStripMenuItem1_Click);
            // 
            // группыДолжностейToolStripMenuItem
            // 
            this.группыДолжностейToolStripMenuItem.Name = "группыДолжностейToolStripMenuItem";
            this.группыДолжностейToolStripMenuItem.Size = new System.Drawing.Size(346, 22);
            this.группыДолжностейToolStripMenuItem.Text = "Группы должностей";
            this.группыДолжностейToolStripMenuItem.Click += new System.EventHandler(this.группыДолжностейToolStripMenuItem_Click);
            // 
            // персоналToolStripMenuItem
            // 
            this.персоналToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.гражданствоToolStripMenuItem,
            this.семейноеПоложениеToolStripMenuItem});
            this.персоналToolStripMenuItem.Name = "персоналToolStripMenuItem";
            this.персоналToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.персоналToolStripMenuItem.Text = "Личные данные";
            // 
            // гражданствоToolStripMenuItem
            // 
            this.гражданствоToolStripMenuItem.Name = "гражданствоToolStripMenuItem";
            this.гражданствоToolStripMenuItem.Size = new System.Drawing.Size(205, 22);
            this.гражданствоToolStripMenuItem.Text = "Гражданство...";
            this.гражданствоToolStripMenuItem.Click += new System.EventHandler(this.гражданствоToolStripMenuItem_Click);
            // 
            // семейноеПоложениеToolStripMenuItem
            // 
            this.семейноеПоложениеToolStripMenuItem.Name = "семейноеПоложениеToolStripMenuItem";
            this.семейноеПоложениеToolStripMenuItem.Size = new System.Drawing.Size(205, 22);
            this.семейноеПоложениеToolStripMenuItem.Text = "Семейное положение...";
            this.семейноеПоложениеToolStripMenuItem.Click += new System.EventHandler(this.семейноеПоложениеToolStripMenuItem_Click);
            // 
            // приказыToolStripMenuItem
            // 
            this.приказыToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.типыПриказовToolStripMenuItem,
            this.видыПриказовToolStripMenuItem,
            this.приказыМинистерстваToolStripMenuItem});
            this.приказыToolStripMenuItem.Name = "приказыToolStripMenuItem";
            this.приказыToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.приказыToolStripMenuItem.Text = "Приказы";
            // 
            // типыПриказовToolStripMenuItem
            // 
            this.типыПриказовToolStripMenuItem.Name = "типыПриказовToolStripMenuItem";
            this.типыПриказовToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
            this.типыПриказовToolStripMenuItem.Text = "Типы приказов...";
            this.типыПриказовToolStripMenuItem.Click += new System.EventHandler(this.типыПриказовToolStripMenuItem_Click);
            // 
            // видыПриказовToolStripMenuItem
            // 
            this.видыПриказовToolStripMenuItem.Name = "видыПриказовToolStripMenuItem";
            this.видыПриказовToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
            this.видыПриказовToolStripMenuItem.Text = "Виды приказов...";
            this.видыПриказовToolStripMenuItem.Click += new System.EventHandler(this.видыПриказовToolStripMenuItem_Click);
            // 
            // приказыМинистерстваToolStripMenuItem
            // 
            this.приказыМинистерстваToolStripMenuItem.Name = "приказыМинистерстваToolStripMenuItem";
            this.приказыМинистерстваToolStripMenuItem.Size = new System.Drawing.Size(212, 22);
            this.приказыМинистерстваToolStripMenuItem.Text = "Приказы министерства...";
            this.приказыМинистерстваToolStripMenuItem.Click += new System.EventHandler(this.приказыМинистерстваToolStripMenuItem_Click);
            // 
            // окладToolStripMenuItem
            // 
            this.окладToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.источникФинансированияToolStripMenuItem,
            this.центрыФинансированияToolStripMenuItem,
            this.оКВЭДToolStripMenuItem,
            this.базовыеОкладыToolStripMenuItem});
            this.окладToolStripMenuItem.Name = "окладToolStripMenuItem";
            this.окладToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.окладToolStripMenuItem.Text = "Финансирование";
            // 
            // источникФинансированияToolStripMenuItem
            // 
            this.источникФинансированияToolStripMenuItem.Name = "источникФинансированияToolStripMenuItem";
            this.источникФинансированияToolStripMenuItem.Size = new System.Drawing.Size(242, 22);
            this.источникФинансированияToolStripMenuItem.Text = "Источники финансирования...";
            this.источникФинансированияToolStripMenuItem.Click += new System.EventHandler(this.источникФинансированияToolStripMenuItem_Click);
            // 
            // центрыФинансированияToolStripMenuItem
            // 
            this.центрыФинансированияToolStripMenuItem.Name = "центрыФинансированияToolStripMenuItem";
            this.центрыФинансированияToolStripMenuItem.Size = new System.Drawing.Size(242, 22);
            this.центрыФинансированияToolStripMenuItem.Text = "Центры затрат";
            this.центрыФинансированияToolStripMenuItem.Click += new System.EventHandler(this.центрыФинансированияToolStripMenuItem_Click);
            // 
            // оКВЭДToolStripMenuItem
            // 
            this.оКВЭДToolStripMenuItem.Name = "оКВЭДToolStripMenuItem";
            this.оКВЭДToolStripMenuItem.Size = new System.Drawing.Size(242, 22);
            this.оКВЭДToolStripMenuItem.Text = "ОКВЭД";
            this.оКВЭДToolStripMenuItem.Click += new System.EventHandler(this.оКВЭДToolStripMenuItem_Click);
            // 
            // базовыеОкладыToolStripMenuItem
            // 
            this.базовыеОкладыToolStripMenuItem.Name = "базовыеОкладыToolStripMenuItem";
            this.базовыеОкладыToolStripMenuItem.Size = new System.Drawing.Size(242, 22);
            this.базовыеОкладыToolStripMenuItem.Text = "Базовые оклады";
            this.базовыеОкладыToolStripMenuItem.Visible = false;
            this.базовыеОкладыToolStripMenuItem.Click += new System.EventHandler(this.базовыеОкладыToolStripMenuItem_Click);
            // 
            // совмещенияToolStripMenuItem
            // 
            this.совмещенияToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.причинаСовмещенияToolStripMenuItem});
            this.совмещенияToolStripMenuItem.Name = "совмещенияToolStripMenuItem";
            this.совмещенияToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.совмещенияToolStripMenuItem.Text = "Совмещения";
            // 
            // причинаСовмещенияToolStripMenuItem
            // 
            this.причинаСовмещенияToolStripMenuItem.Name = "причинаСовмещенияToolStripMenuItem";
            this.причинаСовмещенияToolStripMenuItem.Size = new System.Drawing.Size(201, 22);
            this.причинаСовмещенияToolStripMenuItem.Text = "Причины совмещения";
            this.причинаСовмещенияToolStripMenuItem.Click += new System.EventHandler(this.причинаСовмещенияToolStripMenuItem_Click);
            // 
            // табельToolStripMenuItem
            // 
            this.табельToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.статусДняToolStripMenuItem,
            this.графикиРаботыToolStripMenuItem});
            this.табельToolStripMenuItem.Name = "табельToolStripMenuItem";
            this.табельToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.табельToolStripMenuItem.Text = "Табель";
            this.табельToolStripMenuItem.Visible = false;
            // 
            // статусДняToolStripMenuItem
            // 
            this.статусДняToolStripMenuItem.Name = "статусДняToolStripMenuItem";
            this.статусДняToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
            this.статусДняToolStripMenuItem.Text = "Статус дня";
            this.статусДняToolStripMenuItem.Click += new System.EventHandler(this.статусДняToolStripMenuItem_Click);
            // 
            // графикиРаботыToolStripMenuItem
            // 
            this.графикиРаботыToolStripMenuItem.Name = "графикиРаботыToolStripMenuItem";
            this.графикиРаботыToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
            this.графикиРаботыToolStripMenuItem.Text = "Графики работы";
            this.графикиРаботыToolStripMenuItem.Click += new System.EventHandler(this.графикиРаботыToolStripMenuItem_Click);
            // 
            // отделыToolStripMenuItem
            // 
            this.отделыToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.типыОтделовToolStripMenuItem});
            this.отделыToolStripMenuItem.Name = "отделыToolStripMenuItem";
            this.отделыToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
            this.отделыToolStripMenuItem.Text = "Остальное";
            // 
            // типыОтделовToolStripMenuItem
            // 
            this.типыОтделовToolStripMenuItem.Name = "типыОтделовToolStripMenuItem";
            this.типыОтделовToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
            this.типыОтделовToolStripMenuItem.Text = "Типы отделов ";
            this.типыОтделовToolStripMenuItem.Click += new System.EventHandler(this.типыОтделовToolStripMenuItem_Click);
            // 
            // сервисToolStripMenuItem
            // 
            this.сервисToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.параметрыToolStripMenuItem,
            this.продлитьНадбавкуToolStripMenuItem,
            this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem,
            this.назначитьЧасыToolStripMenuItem});
            this.сервисToolStripMenuItem.Name = "сервисToolStripMenuItem";
            this.сервисToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
            this.сервисToolStripMenuItem.Text = "Се&рвис";
            // 
            // параметрыToolStripMenuItem
            // 
            this.параметрыToolStripMenuItem.Name = "параметрыToolStripMenuItem";
            this.параметрыToolStripMenuItem.Size = new System.Drawing.Size(309, 22);
            this.параметрыToolStripMenuItem.Text = "Назначить надбавки";
            this.параметрыToolStripMenuItem.Click += new System.EventHandler(this.назначитьНадбавкиToolStripMenuItem_Click);
            // 
            // продлитьНадбавкуToolStripMenuItem
            // 
            this.продлитьНадбавкуToolStripMenuItem.Name = "продлитьНадбавкуToolStripMenuItem";
            this.продлитьНадбавкуToolStripMenuItem.Size = new System.Drawing.Size(309, 22);
            this.продлитьНадбавкуToolStripMenuItem.Text = "Продлить надбавку";
            this.продлитьНадбавкуToolStripMenuItem.Click += new System.EventHandler(this.продлитьНадбавкуToolStripMenuItem_Click);
            // 
            // продлитьНадбавкурасширеннаяФормаToolStripMenuItem
            // 
            this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem.Name = "продлитьНадбавкурасширеннаяФормаToolStripMenuItem";
            this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem.Size = new System.Drawing.Size(309, 22);
            this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem.Text = "Продлить надбавку (расширенная форма)";
            this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem.Click += new System.EventHandler(this.продлитьНадбавкурасширеннаяФормаToolStripMenuItem_Click);
            // 
            // назначитьЧасыToolStripMenuItem
            // 
            this.назначитьЧасыToolStripMenuItem.Name = "назначитьЧасыToolStripMenuItem";
            this.назначитьЧасыToolStripMenuItem.Size = new System.Drawing.Size(309, 22);
            this.назначитьЧасыToolStripMenuItem.Text = "Назначить часы";
            this.назначитьЧасыToolStripMenuItem.Click += new System.EventHandler(this.назначитьЧасыToolStripMenuItem_Click);
            // 
            // отчётыToolStripMenuItem
            // 
            this.отчётыToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem2,
            this.графикБуренияToolStripMenuItem,
            this.надбавкиПоВидуРаботыToolStripMenuItem1,
            this.надбавкиПоОтделамToolStripMenuItem,
            this.надбавкиПоДолжностямToolStripMenuItem,
            this.надбавкиТ3ПоППСToolStripMenuItem,
            this.отчетТ3ПоППСToolStripMenuItem,
            this.комплексныйОтчетПоНадбавкамToolStripMenuItem,
            this.фОТПоКатегориямБезИсточниковToolStripMenuItem,
            this.поискНадбавокПоПриказуToolStripMenuItem,
            this.сеткаПоДолжностямИОкладамToolStripMenuItem,
            this.надбавкиToolStripMenuItem,
            this.НастройкиToolStripMenuItem});
            this.отчётыToolStripMenuItem.Name = "отчётыToolStripMenuItem";
            this.отчётыToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
            this.отчётыToolStripMenuItem.Text = "&Отчёты";
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(275, 6);
            // 
            // графикБуренияToolStripMenuItem
            // 
            this.графикБуренияToolStripMenuItem.Name = "графикБуренияToolStripMenuItem";
            this.графикБуренияToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.графикБуренияToolStripMenuItem.Text = "Отчет по виду надбавки";
            this.графикБуренияToolStripMenuItem.Click += new System.EventHandler(this.графикБуренияToolStripMenuItem_Click);
            // 
            // надбавкиПоВидуРаботыToolStripMenuItem1
            // 
            this.надбавкиПоВидуРаботыToolStripMenuItem1.Name = "надбавкиПоВидуРаботыToolStripMenuItem1";
            this.надбавкиПоВидуРаботыToolStripMenuItem1.Size = new System.Drawing.Size(278, 22);
            this.надбавкиПоВидуРаботыToolStripMenuItem1.Text = "Фонд по виду работы";
            this.надбавкиПоВидуРаботыToolStripMenuItem1.Click += new System.EventHandler(this.надбавкиПоВидуРаботыToolStripMenuItem_Click);
            // 
            // надбавкиПоОтделамToolStripMenuItem
            // 
            this.надбавкиПоОтделамToolStripMenuItem.Name = "надбавкиПоОтделамToolStripMenuItem";
            this.надбавкиПоОтделамToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.надбавкиПоОтделамToolStripMenuItem.Text = "Фонд по отделам";
            this.надбавкиПоОтделамToolStripMenuItem.Visible = false;
            this.надбавкиПоОтделамToolStripMenuItem.Click += new System.EventHandler(this.надбавкиПоОтделамToolStripMenuItem_Click);
            // 
            // надбавкиПоДолжностямToolStripMenuItem
            // 
            this.надбавкиПоДолжностямToolStripMenuItem.Name = "надбавкиПоДолжностямToolStripMenuItem";
            this.надбавкиПоДолжностямToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.надбавкиПоДолжностямToolStripMenuItem.Text = "Фонд по источникам с должностями";
            this.надбавкиПоДолжностямToolStripMenuItem.Visible = false;
            this.надбавкиПоДолжностямToolStripMenuItem.Click += new System.EventHandler(this.надбавкиПоДолжностямToolStripMenuItem_Click);
            // 
            // надбавкиТ3ПоППСToolStripMenuItem
            // 
            this.надбавкиТ3ПоППСToolStripMenuItem.Name = "надбавкиТ3ПоППСToolStripMenuItem";
            this.надбавкиТ3ПоППСToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.надбавкиТ3ПоППСToolStripMenuItem.Text = "Отчет Т3 по ППС (прежний)";
            this.надбавкиТ3ПоППСToolStripMenuItem.Visible = false;
            this.надбавкиТ3ПоППСToolStripMenuItem.Click += new System.EventHandler(this.надбавкиТ3ПоППСToolStripMenuItem_Click);
            // 
            // отчетТ3ПоППСToolStripMenuItem
            // 
            this.отчетТ3ПоППСToolStripMenuItem.Name = "отчетТ3ПоППСToolStripMenuItem";
            this.отчетТ3ПоППСToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.отчетТ3ПоППСToolStripMenuItem.Text = "Отчет Т3 по ППС";
            this.отчетТ3ПоППСToolStripMenuItem.Visible = false;
            this.отчетТ3ПоППСToolStripMenuItem.Click += new System.EventHandler(this.отчетТ3ПоППСToolStripMenuItem_Click);
            // 
            // комплексныйОтчетПоНадбавкамToolStripMenuItem
            // 
            this.комплексныйОтчетПоНадбавкамToolStripMenuItem.Name = "комплексныйОтчетПоНадбавкамToolStripMenuItem";
            this.комплексныйОтчетПоНадбавкамToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.комплексныйОтчетПоНадбавкамToolStripMenuItem.Text = "ФОТ по категориям c источниками";
            this.комплексныйОтчетПоНадбавкамToolStripMenuItem.Click += new System.EventHandler(this.комплексныйОтчетПоНадбавкамToolStripMenuItem_Click);
            // 
            // фОТПоКатегориямБезИсточниковToolStripMenuItem
            // 
            this.фОТПоКатегориямБезИсточниковToolStripMenuItem.Name = "фОТПоКатегориямБезИсточниковToolStripMenuItem";
            this.фОТПоКатегориямБезИсточниковToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.фОТПоКатегориямБезИсточниковToolStripMenuItem.Text = "ФОТ по категориям без источников";
            this.фОТПоКатегориямБезИсточниковToolStripMenuItem.Click += new System.EventHandler(this.фОТПоКатегориямБезИсточниковToolStripMenuItem_Click);
            // 
            // поискНадбавокПоПриказуToolStripMenuItem
            // 
            this.поискНадбавокПоПриказуToolStripMenuItem.Name = "поискНадбавокПоПриказуToolStripMenuItem";
            this.поискНадбавокПоПриказуToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.поискНадбавокПоПриказуToolStripMenuItem.Text = "Поиск надбавок по приказу";
            this.поискНадбавокПоПриказуToolStripMenuItem.Click += new System.EventHandler(this.поискНадбавокПоПриказуToolStripMenuItem_Click);
            // 
            // сеткаПоДолжностямИОкладамToolStripMenuItem
            // 
            this.сеткаПоДолжностямИОкладамToolStripMenuItem.Name = "сеткаПоДолжностямИОкладамToolStripMenuItem";
            this.сеткаПоДолжностямИОкладамToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.сеткаПоДолжностямИОкладамToolStripMenuItem.Text = "Сетка окладов";
            this.сеткаПоДолжностямИОкладамToolStripMenuItem.Click += new System.EventHandler(this.сеткаПоДолжностямИОкладамToolStripMenuItem_Click);
            // 
            // надбавкиToolStripMenuItem
            // 
            this.надбавкиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.назначитьНадбавкиToolStripMenuItem,
            this.продлитьНадбавкуToolStripMenuItem1});
            this.надбавкиToolStripMenuItem.Name = "надбавкиToolStripMenuItem";
            this.надбавкиToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.надбавкиToolStripMenuItem.Text = "Надбавки";
            this.надбавкиToolStripMenuItem.Visible = false;
            // 
            // назначитьНадбавкиToolStripMenuItem
            // 
            this.назначитьНадбавкиToolStripMenuItem.Name = "назначитьНадбавкиToolStripMenuItem";
            this.назначитьНадбавкиToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.назначитьНадбавкиToolStripMenuItem.Text = "Назначить надбавки";
            this.назначитьНадбавкиToolStripMenuItem.Click += new System.EventHandler(this.назначитьНадбавкиToolStripMenuItem_Click);
            // 
            // продлитьНадбавкуToolStripMenuItem1
            // 
            this.продлитьНадбавкуToolStripMenuItem1.Name = "продлитьНадбавкуToolStripMenuItem1";
            this.продлитьНадбавкуToolStripMenuItem1.Size = new System.Drawing.Size(186, 22);
            this.продлитьНадбавкуToolStripMenuItem1.Text = "Продлить надбавку";
            this.продлитьНадбавкуToolStripMenuItem1.Click += new System.EventHandler(this.продлитьНадбавкуToolStripMenuItem_Click);
            // 
            // НастройкиToolStripMenuItem
            // 
            this.НастройкиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.видыОтчетовToolStripMenuItem,
            this.последовательностьДанныхToolStripMenuItem});
            this.НастройкиToolStripMenuItem.Name = "НастройкиToolStripMenuItem";
            this.НастройкиToolStripMenuItem.Size = new System.Drawing.Size(278, 22);
            this.НастройкиToolStripMenuItem.Text = "Настройки (надбавки)";
            // 
            // видыОтчетовToolStripMenuItem
            // 
            this.видыОтчетовToolStripMenuItem.Name = "видыОтчетовToolStripMenuItem";
            this.видыОтчетовToolStripMenuItem.Size = new System.Drawing.Size(232, 22);
            this.видыОтчетовToolStripMenuItem.Text = "Виды отчетов";
            this.видыОтчетовToolStripMenuItem.Click += new System.EventHandler(this.видыОтчетовToolStripMenuItem_Click);
            // 
            // последовательностьДанныхToolStripMenuItem
            // 
            this.последовательностьДанныхToolStripMenuItem.Name = "последовательностьДанныхToolStripMenuItem";
            this.последовательностьДанныхToolStripMenuItem.Size = new System.Drawing.Size(232, 22);
            this.последовательностьДанныхToolStripMenuItem.Text = "Последовательность данных";
            this.последовательностьДанныхToolStripMenuItem.Click += new System.EventHandler(this.последовательностьДанныхToolStripMenuItem_Click);
            // 
            // правкаToolStripMenuItem
            // 
            this.правкаToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.отменитьToolStripMenuItem,
            this.повторитьToolStripMenuItem,
            this.toolStripMenuItem5,
            this.вырезатьToolStripMenuItem,
            this.копироватьToolStripMenuItem,
            this.вставитьToolStripMenuItem,
            this.toolStripMenuItem6,
            this.выделитьВсёToolStripMenuItem});
            this.правкаToolStripMenuItem.Name = "правкаToolStripMenuItem";
            this.правкаToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
            this.правкаToolStripMenuItem.Text = "&Правка";
            this.правкаToolStripMenuItem.Visible = false;
            // 
            // отменитьToolStripMenuItem
            // 
            this.отменитьToolStripMenuItem.Image = global::Kadr.Properties.Resources.Edit_Undo;
            this.отменитьToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.отменитьToolStripMenuItem.Name = "отменитьToolStripMenuItem";
            this.отменитьToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.отменитьToolStripMenuItem.Text = "Отменить";
            // 
            // повторитьToolStripMenuItem
            // 
            this.повторитьToolStripMenuItem.Image = global::Kadr.Properties.Resources.Edit_Redo;
            this.повторитьToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.повторитьToolStripMenuItem.Name = "повторитьToolStripMenuItem";
            this.повторитьToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.повторитьToolStripMenuItem.Text = "Повторить";
            // 
            // toolStripMenuItem5
            // 
            this.toolStripMenuItem5.Name = "toolStripMenuItem5";
            this.toolStripMenuItem5.Size = new System.Drawing.Size(145, 6);
            // 
            // вырезатьToolStripMenuItem
            // 
            this.вырезатьToolStripMenuItem.Image = global::Kadr.Properties.Resources.Edit_Cut;
            this.вырезатьToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.вырезатьToolStripMenuItem.Name = "вырезатьToolStripMenuItem";
            this.вырезатьToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.вырезатьToolStripMenuItem.Text = "Вырезать";
            // 
            // копироватьToolStripMenuItem
            // 
            this.копироватьToolStripMenuItem.Image = global::Kadr.Properties.Resources.CopyHS;
            this.копироватьToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Black;
            this.копироватьToolStripMenuItem.Name = "копироватьToolStripMenuItem";
            this.копироватьToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.копироватьToolStripMenuItem.Text = "Копировать";
            // 
            // вставитьToolStripMenuItem
            // 
            this.вставитьToolStripMenuItem.Image = global::Kadr.Properties.Resources.PasteHS;
            this.вставитьToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Black;
            this.вставитьToolStripMenuItem.Name = "вставитьToolStripMenuItem";
            this.вставитьToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.вставитьToolStripMenuItem.Text = "Вставить";
            // 
            // toolStripMenuItem6
            // 
            this.toolStripMenuItem6.Name = "toolStripMenuItem6";
            this.toolStripMenuItem6.Size = new System.Drawing.Size(145, 6);
            // 
            // выделитьВсёToolStripMenuItem
            // 
            this.выделитьВсёToolStripMenuItem.Name = "выделитьВсёToolStripMenuItem";
            this.выделитьВсёToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.выделитьВсёToolStripMenuItem.Text = "Выделить всё";
            // 
            // видToolStripMenuItem
            // 
            this.видToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.панельИнструментовToolStripMenuItem,
            this.строкаСтатусаToolStripMenuItem,
            this.деревоПромысловыхОбъектовToolStripMenuItem});
            this.видToolStripMenuItem.Name = "видToolStripMenuItem";
            this.видToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
            this.видToolStripMenuItem.Text = "&Вид";
            this.видToolStripMenuItem.Visible = false;
            // 
            // панельИнструментовToolStripMenuItem
            // 
            this.панельИнструментовToolStripMenuItem.Name = "панельИнструментовToolStripMenuItem";
            this.панельИнструментовToolStripMenuItem.Size = new System.Drawing.Size(250, 22);
            this.панельИнструментовToolStripMenuItem.Text = "Панель инструментов";
            // 
            // строкаСтатусаToolStripMenuItem
            // 
            this.строкаСтатусаToolStripMenuItem.Name = "строкаСтатусаToolStripMenuItem";
            this.строкаСтатусаToolStripMenuItem.Size = new System.Drawing.Size(250, 22);
            this.строкаСтатусаToolStripMenuItem.Text = "Строка статуса";
            // 
            // деревоПромысловыхОбъектовToolStripMenuItem
            // 
            this.деревоПромысловыхОбъектовToolStripMenuItem.Name = "деревоПромысловыхОбъектовToolStripMenuItem";
            this.деревоПромысловыхОбъектовToolStripMenuItem.Size = new System.Drawing.Size(250, 22);
            this.деревоПромысловыхОбъектовToolStripMenuItem.Text = "Дерево промысловых объектов";
            // 
            // справкаToolStripMenuItem
            // 
            this.справкаToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.оглавлениеToolStripMenuItem,
            this.toolStripSeparator1,
            this.ApplicationAboutStripMenuItem});
            this.справкаToolStripMenuItem.Name = "справкаToolStripMenuItem";
            this.справкаToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
            this.справкаToolStripMenuItem.Text = "Справ&ка";
            // 
            // оглавлениеToolStripMenuItem
            // 
            this.оглавлениеToolStripMenuItem.Name = "оглавлениеToolStripMenuItem";
            this.оглавлениеToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.оглавлениеToolStripMenuItem.Text = "&Содержание...";
            this.оглавлениеToolStripMenuItem.Click += new System.EventHandler(this.оглавлениеToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(155, 6);
            // 
            // ApplicationAboutStripMenuItem
            // 
            this.ApplicationAboutStripMenuItem.Name = "ApplicationAboutStripMenuItem";
            this.ApplicationAboutStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.ApplicationAboutStripMenuItem.Text = "О программе...";
            this.ApplicationAboutStripMenuItem.Click += new System.EventHandler(this.ApplicationAboutStripMenuItem_Click);
            // 
            // treeNodeContextMenu
            // 
            this.treeNodeContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem7,
            this.развернутьToolStripMenuItem,
            this.свернутьToolStripMenuItem,
            this.toolStripMenuItem8,
            this.показатьВсеToolStripMenuItem,
            this.свернутьВсеToolStripMenuItem,
            this.toolStripMenuItem9,
            this.обновитьToolStripMenuItem});
            this.treeNodeContextMenu.Name = "treeNodeContextMenu";
            this.treeNodeContextMenu.Size = new System.Drawing.Size(147, 132);
            // 
            // toolStripMenuItem7
            // 
            this.toolStripMenuItem7.Name = "toolStripMenuItem7";
            this.toolStripMenuItem7.Size = new System.Drawing.Size(143, 6);
            // 
            // развернутьToolStripMenuItem
            // 
            this.развернутьToolStripMenuItem.Name = "развернутьToolStripMenuItem";
            this.развернутьToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            this.развернутьToolStripMenuItem.Text = "Развернуть";
            this.развернутьToolStripMenuItem.DropDownOpening += new System.EventHandler(this.развернутьToolStripMenuItem_DropDownOpening);
            this.развернутьToolStripMenuItem.Click += new System.EventHandler(this.развернутьToolStripMenuItem_Click);
            // 
            // свернутьToolStripMenuItem
            // 
            this.свернутьToolStripMenuItem.Name = "свернутьToolStripMenuItem";
            this.свернутьToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            this.свернутьToolStripMenuItem.Text = "Свернуть";
            this.свернутьToolStripMenuItem.DropDownOpening += new System.EventHandler(this.свернутьToolStripMenuItem_DropDownOpening);
            this.свернутьToolStripMenuItem.Click += new System.EventHandler(this.свернутьToolStripMenuItem_Click);
            // 
            // toolStripMenuItem8
            // 
            this.toolStripMenuItem8.Name = "toolStripMenuItem8";
            this.toolStripMenuItem8.Size = new System.Drawing.Size(143, 6);
            // 
            // показатьВсеToolStripMenuItem
            // 
            this.показатьВсеToolStripMenuItem.Name = "показатьВсеToolStripMenuItem";
            this.показатьВсеToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            this.показатьВсеToolStripMenuItem.Text = "Показать все";
            this.показатьВсеToolStripMenuItem.Click += new System.EventHandler(this.показатьВсеToolStripMenuItem_Click);
            // 
            // свернутьВсеToolStripMenuItem
            // 
            this.свернутьВсеToolStripMenuItem.Name = "свернутьВсеToolStripMenuItem";
            this.свернутьВсеToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            this.свернутьВсеToolStripMenuItem.Text = "Свернуть все";
            this.свернутьВсеToolStripMenuItem.Click += new System.EventHandler(this.свернутьВсеToolStripMenuItem_Click);
            // 
            // toolStripMenuItem9
            // 
            this.toolStripMenuItem9.Name = "toolStripMenuItem9";
            this.toolStripMenuItem9.Size = new System.Drawing.Size(143, 6);
            // 
            // обновитьToolStripMenuItem
            // 
            this.обновитьToolStripMenuItem.Name = "обновитьToolStripMenuItem";
            this.обновитьToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
            this.обновитьToolStripMenuItem.Text = "Обновить";
            this.обновитьToolStripMenuItem.Click += new System.EventHandler(this.обновитьToolStripMenuItem_Click);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Checked = true;
            this.toolStripMenuItem1.CheckOnClick = true;
            this.toolStripMenuItem1.CheckState = System.Windows.Forms.CheckState.Checked;
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(205, 22);
            this.toolStripMenuItem1.Text = "Текущие сотрудники";
            // 
            // departmentBindingSource
            // 
            this.departmentBindingSource.DataSource = typeof(Kadr.Data.Department);
            // 
            // KadrBaseForm
            // 
            this.AllowDrop = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(841, 462);
            this.Controls.Add(this.toolStripContainer1);
            this.helpProvider1.SetHelpKeyword(this, "Главное окно программы");
            this.helpProvider1.SetHelpNavigator(this, System.Windows.Forms.HelpNavigator.TableOfContents);
            this.helpProvider1.SetHelpString(this, "");
            this.Name = "KadrBaseForm";
            this.helpProvider1.SetShowHelp(this, true);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "АИС \"Штатное расписание\"";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.KadrBaseForm_FormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.KadrBaseForm_FormClosed);
            this.Load += new System.EventHandler(this.KadrBaseForm_Load);
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.KadrBaseForm_DragDrop);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.KadrBaseForm_DragEnter);
            toolStrip1.ResumeLayout(false);
            toolStrip1.PerformLayout();
            this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
            this.toolStripContainer1.ContentPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.PerformLayout();
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.treeNodeContextMenu.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.departmentBindingSource)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinForm_Abstract));
     this.toolStripParent = new System.Windows.Forms.ToolStrip();
     this.CancelToolStrip = new System.Windows.Forms.ToolStripButton();
     this.SaveToolStrip = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStrip_Label = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripParent.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripParent
     //
     this.toolStripParent.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripParent.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CancelToolStrip,
     this.SaveToolStrip,
     this.toolStripSeparator1});
     this.toolStripParent.Location = new System.Drawing.Point(0, 0);
     this.toolStripParent.Name = "toolStripParent";
     this.toolStripParent.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.toolStripParent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.toolStripParent.Size = new System.Drawing.Size(590, 54);
     this.toolStripParent.TabIndex = 121;
     this.toolStripParent.Text = "toolStrip1";
     //
     // CancelToolStrip
     //
     this.CancelToolStrip.Image = ((System.Drawing.Image)(resources.GetObject("CancelToolStrip.Image")));
     this.CancelToolStrip.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.CancelToolStrip.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.CancelToolStrip.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.CancelToolStrip.Name = "CancelToolStrip";
     this.CancelToolStrip.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.CancelToolStrip.Size = new System.Drawing.Size(47, 51);
     this.CancelToolStrip.Text = "&Cancel";
     this.CancelToolStrip.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.CancelToolStrip.Click += new System.EventHandler(this.CancelToolStrip_Click);
     //
     // SaveToolStrip
     //
     this.SaveToolStrip.Image = ((System.Drawing.Image)(resources.GetObject("SaveToolStrip.Image")));
     this.SaveToolStrip.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.SaveToolStrip.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.SaveToolStrip.Name = "SaveToolStrip";
     this.SaveToolStrip.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.SaveToolStrip.Size = new System.Drawing.Size(36, 51);
     this.SaveToolStrip.Text = "&Save";
     this.SaveToolStrip.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.SaveToolStrip.ToolTipText = "Click to Save Customers";
     this.SaveToolStrip.Click += new System.EventHandler(this.SaveToolStrip_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 54);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStrip_Label,
     this.toolStripProgressBar1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 365);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(590, 22);
     this.statusStrip1.TabIndex = 122;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStrip_Label
     //
     this.toolStrip_Label.Name = "toolStrip_Label";
     this.toolStrip_Label.Size = new System.Drawing.Size(442, 17);
     this.toolStrip_Label.Spring = true;
     this.toolStrip_Label.Text = "Enter Details and Click Save.";
     this.toolStrip_Label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // toolStripProgressBar1
     //
     this.toolStripProgressBar1.Name = "toolStripProgressBar1";
     this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
     //
     // WinForm_Abstract
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(590, 387);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStripParent);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "WinForm_Abstract";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Load += new System.EventHandler(this.Winform_DetailsFormat_Load);
     this.toolStripParent.ResumeLayout(false);
     this.toolStripParent.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_cierre_perimes));
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.fech_ini = new System.Windows.Forms.TextBox();
     this.fech_fin = new System.Windows.Forms.TextBox();
     this.txtLocal = new System.Windows.Forms.TextBox();
     this.periodo = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_process = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label4 = new System.Windows.Forms.Label();
     this.Botonera.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(13, 70);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(94, 13);
     this.label1.TabIndex = 3;
     this.label1.Text = "Inicio del Proceso:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 95);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(83, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "Fin del Proceso:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 121);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(51, 13);
     this.label3.TabIndex = 5;
     this.label3.Text = "Almacén:";
     //
     // fech_ini
     //
     this.fech_ini.Enabled = false;
     this.fech_ini.Location = new System.Drawing.Point(123, 70);
     this.fech_ini.Name = "fech_ini";
     this.fech_ini.Size = new System.Drawing.Size(245, 21);
     this.fech_ini.TabIndex = 6;
     //
     // fech_fin
     //
     this.fech_fin.Enabled = false;
     this.fech_fin.Location = new System.Drawing.Point(123, 97);
     this.fech_fin.Name = "fech_fin";
     this.fech_fin.Size = new System.Drawing.Size(245, 21);
     this.fech_fin.TabIndex = 7;
     //
     // txtLocal
     //
     this.txtLocal.Enabled = false;
     this.txtLocal.Location = new System.Drawing.Point(123, 124);
     this.txtLocal.Name = "txtLocal";
     this.txtLocal.Size = new System.Drawing.Size(245, 21);
     this.txtLocal.TabIndex = 8;
     //
     // periodo
     //
     this.periodo.AutoSize = true;
     this.periodo.Font = new System.Drawing.Font("Impact", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.periodo.Location = new System.Drawing.Point(101, 150);
     this.periodo.Name = "periodo";
     this.periodo.Size = new System.Drawing.Size(65, 20);
     this.periodo.TabIndex = 9;
     this.periodo.Text = "PERIODO";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_process,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(380, 29);
     this.Botonera.TabIndex = 13;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_process
     //
     this.btn_process.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_process.Image = global::BapFormulariosNet.Properties.Resources.go_check;
     this.btn_process.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_process.Name = "btn_process";
     this.btn_process.Size = new System.Drawing.Size(26, 26);
     this.btn_process.Text = "Accept";
     this.btn_process.Click += new System.EventHandler(this.btn_process_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label4);
     this.panel1.Location = new System.Drawing.Point(-2, 26);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(382, 32);
     this.panel1.TabIndex = 14;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Arial Black", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(10, 4);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(120, 23);
     this.label4.TabIndex = 5;
     this.label4.Text = "CIERRE MES";
     //
     // Frm_cierre_perimes
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(380, 180);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.periodo);
     this.Controls.Add(this.txtLocal);
     this.Controls.Add(this.fech_fin);
     this.Controls.Add(this.fech_ini);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_cierre_perimes";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "*** Cierre Mes ***";
     this.Load += new System.EventHandler(this.Frm_reorganiza_perimes_Load);
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.toolStripRequest = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
     this.buttonAddToList = new System.Windows.Forms.Button();
     this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
     this.listViewRequestHeaders = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.buttonDeleteHeader = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.listViewResponseHeaders = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.webBrowserSource = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.toolStripRequest.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(912, 313);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(904, 287);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Request";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.toolStripRequest);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer2.Size = new System.Drawing.Size(898, 281);
     this.splitContainer2.SplitterDistance = 25;
     this.splitContainer2.TabIndex = 2;
     //
     // toolStripRequest
     //
     this.toolStripRequest.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel2,
     this.toolStripComboBoxProtocol,
     this.toolStripSeparator7,
     this.toolStripLabel1,
     this.toolStripComboBoxMethod,
     this.toolStripSeparator8,
     this.toolStripLabel3,
     this.toolStripTextBoxURL,
     this.toolStripSeparator3,
     this.toolStripButtonCookies,
     this.toolStripSeparator9,
     this.toolStripButtonAuthType,
     this.toolStripSeparator5,
     this.toolStripButtonSendRequest,
     this.toolStripSeparator6});
     this.toolStripRequest.Location = new System.Drawing.Point(0, 0);
     this.toolStripRequest.Name = "toolStripRequest";
     this.toolStripRequest.Size = new System.Drawing.Size(898, 25);
     this.toolStripRequest.TabIndex = 0;
     this.toolStripRequest.Text = "toolStrip1";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(46, 22);
     this.toolStripLabel2.Text = "Protocol";
     //
     // toolStripComboBoxProtocol
     //
     this.toolStripComboBoxProtocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxProtocol.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxProtocol.Items.AddRange(new object[] {
     "HTTP /1.0",
     "HTTP /1.1"});
     this.toolStripComboBoxProtocol.Name = "toolStripComboBoxProtocol";
     this.toolStripComboBoxProtocol.Size = new System.Drawing.Size(80, 25);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(43, 22);
     this.toolStripLabel1.Text = "Method";
     //
     // toolStripComboBoxMethod
     //
     this.toolStripComboBoxMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxMethod.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxMethod.Items.AddRange(new object[] {
     "GET",
     "POST"});
     this.toolStripComboBoxMethod.Name = "toolStripComboBoxMethod";
     this.toolStripComboBoxMethod.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel3.Text = "URL:";
     //
     // toolStripTextBoxURL
     //
     this.toolStripTextBoxURL.Name = "toolStripTextBoxURL";
     this.toolStripTextBoxURL.Size = new System.Drawing.Size(410, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonCookies
     //
     this.toolStripButtonCookies.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCookies.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.toolStripButtonCookies.Name = "toolStripButtonCookies";
     this.toolStripButtonCookies.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonCookies.Text = "Define Cokies";
     this.toolStripButtonCookies.Click += new System.EventHandler(this.toolStripButtonCookies_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonAuthType
     //
     this.toolStripButtonAuthType.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAuthType.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAuthType.Name = "toolStripButtonAuthType";
     this.toolStripButtonAuthType.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonAuthType.Text = "Define Authentication";
     this.toolStripButtonAuthType.Click += new System.EventHandler(this.toolStripButtonAuthType_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonSendRequest
     //
     this.toolStripButtonSendRequest.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonSendRequest.Name = "toolStripButtonSendRequest";
     this.toolStripButtonSendRequest.Size = new System.Drawing.Size(94, 22);
     this.toolStripButtonSendRequest.Text = "Send Request";
     this.toolStripButtonSendRequest.Click += new System.EventHandler(this.toolStripButtonSendRequest_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox2);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox3);
     this.splitContainer4.Size = new System.Drawing.Size(898, 252);
     this.splitContainer4.SplitterDistance = 546;
     this.splitContainer4.TabIndex = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.splitContainer1);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(546, 252);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Request Headers";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.comboBoxRequestHeaders);
     this.splitContainer1.Panel1.Controls.Add(this.buttonAddToList);
     this.splitContainer1.Panel1.Controls.Add(this.textBoxHeaderValue);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.listViewRequestHeaders);
     this.splitContainer1.Panel2.Controls.Add(this.buttonDeleteHeader);
     this.splitContainer1.Size = new System.Drawing.Size(540, 233);
     this.splitContainer1.SplitterDistance = 33;
     this.splitContainer1.TabIndex = 1;
     //
     // comboBoxRequestHeaders
     //
     this.comboBoxRequestHeaders.FormattingEnabled = true;
     this.comboBoxRequestHeaders.Location = new System.Drawing.Point(3, 5);
     this.comboBoxRequestHeaders.Name = "comboBoxRequestHeaders";
     this.comboBoxRequestHeaders.Size = new System.Drawing.Size(169, 21);
     this.comboBoxRequestHeaders.TabIndex = 3;
     //
     // buttonAddToList
     //
     this.buttonAddToList.Location = new System.Drawing.Point(450, 3);
     this.buttonAddToList.Name = "buttonAddToList";
     this.buttonAddToList.Size = new System.Drawing.Size(87, 23);
     this.buttonAddToList.TabIndex = 2;
     this.buttonAddToList.Text = "Add to List";
     this.buttonAddToList.UseVisualStyleBackColor = true;
     this.buttonAddToList.Click += new System.EventHandler(this.buttonAddToList_Click);
     //
     // textBoxHeaderValue
     //
     this.textBoxHeaderValue.Location = new System.Drawing.Point(178, 5);
     this.textBoxHeaderValue.Name = "textBoxHeaderValue";
     this.textBoxHeaderValue.Size = new System.Drawing.Size(266, 20);
     this.textBoxHeaderValue.TabIndex = 1;
     //
     // listViewRequestHeaders
     //
     this.listViewRequestHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.listViewRequestHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewRequestHeaders.FullRowSelect = true;
     this.listViewRequestHeaders.GridLines = true;
     this.listViewRequestHeaders.Location = new System.Drawing.Point(0, 0);
     this.listViewRequestHeaders.Name = "listViewRequestHeaders";
     this.listViewRequestHeaders.Size = new System.Drawing.Size(540, 173);
     this.listViewRequestHeaders.TabIndex = 0;
     this.listViewRequestHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewRequestHeaders.View = System.Windows.Forms.View.Details;
     this.listViewRequestHeaders.SelectedIndexChanged += new System.EventHandler(this.listViewRequestHeaders_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Header Name";
     this.columnHeader1.Width = 174;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Header Value";
     this.columnHeader2.Width = 333;
     //
     // buttonDeleteHeader
     //
     this.buttonDeleteHeader.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.buttonDeleteHeader.Enabled = false;
     this.buttonDeleteHeader.Location = new System.Drawing.Point(0, 173);
     this.buttonDeleteHeader.Name = "buttonDeleteHeader";
     this.buttonDeleteHeader.Size = new System.Drawing.Size(540, 23);
     this.buttonDeleteHeader.TabIndex = 1;
     this.buttonDeleteHeader.Text = "Delete Headers";
     this.buttonDeleteHeader.UseVisualStyleBackColor = true;
     this.buttonDeleteHeader.Click += new System.EventHandler(this.buttonDeleteHeader_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.richTextBoxPOST);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(348, 252);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "POST";
     //
     // richTextBoxPOST
     //
     this.richTextBoxPOST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxPOST.Location = new System.Drawing.Point(3, 16);
     this.richTextBoxPOST.Name = "richTextBoxPOST";
     this.richTextBoxPOST.Size = new System.Drawing.Size(342, 233);
     this.richTextBoxPOST.TabIndex = 0;
     this.richTextBoxPOST.Text = "";
     //
     // tabControl4
     //
     this.tabControl4.Controls.Add(this.tabPage5);
     this.tabControl4.Controls.Add(this.tabPage6);
     this.tabControl4.Controls.Add(this.tabPage7);
     this.tabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl4.Location = new System.Drawing.Point(0, 0);
     this.tabControl4.Name = "tabControl4";
     this.tabControl4.SelectedIndex = 0;
     this.tabControl4.Size = new System.Drawing.Size(912, 256);
     this.tabControl4.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.listViewResponseHeaders);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(904, 230);
     this.tabPage5.TabIndex = 0;
     this.tabPage5.Text = "Response Headers";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // listViewResponseHeaders
     //
     this.listViewResponseHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4});
     this.listViewResponseHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewResponseHeaders.Location = new System.Drawing.Point(3, 3);
     this.listViewResponseHeaders.Name = "listViewResponseHeaders";
     this.listViewResponseHeaders.Size = new System.Drawing.Size(898, 224);
     this.listViewResponseHeaders.TabIndex = 0;
     this.listViewResponseHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewResponseHeaders.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Header Name";
     this.columnHeader3.Width = 229;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Header Value";
     this.columnHeader4.Width = 458;
     //
     // tabPage6
     //
     this.tabPage6.Controls.Add(this.richTextBoxSource);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(904, 230);
     this.tabPage6.TabIndex = 1;
     this.tabPage6.Text = "Source Code";
     this.tabPage6.UseVisualStyleBackColor = true;
     //
     // richTextBoxSource
     //
     this.richTextBoxSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxSource.Location = new System.Drawing.Point(3, 3);
     this.richTextBoxSource.Name = "richTextBoxSource";
     this.richTextBoxSource.Size = new System.Drawing.Size(898, 224);
     this.richTextBoxSource.TabIndex = 0;
     this.richTextBoxSource.Text = "";
     //
     // tabPage7
     //
     this.tabPage7.Controls.Add(this.webBrowserSource);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(904, 230);
     this.tabPage7.TabIndex = 2;
     this.tabPage7.Text = "Browser";
     this.tabPage7.UseVisualStyleBackColor = true;
     //
     // webBrowserSource
     //
     this.webBrowserSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowserSource.Location = new System.Drawing.Point(0, 0);
     this.webBrowserSource.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserSource.Name = "webBrowserSource";
     this.webBrowserSource.Size = new System.Drawing.Size(904, 230);
     this.webBrowserSource.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tabControl1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.tabControl4);
     this.splitContainer3.Size = new System.Drawing.Size(912, 573);
     this.splitContainer3.SplitterDistance = 313;
     this.splitContainer3.TabIndex = 1;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 573);
     this.Controls.Add(this.splitContainer3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmMain";
     this.Text = "Custom Request";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.toolStripRequest.ResumeLayout(false);
     this.toolStripRequest.PerformLayout();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tabControl4.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.tabPage6.ResumeLayout(false);
     this.tabPage7.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.ResumeLayout(false);
 }