Beispiel #1
0
        private void AddControls()
        {
            ArrayList al = new ArrayList();

            DevComponents.DotNetBar.LabelItem li = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            DevComponents.DotNetBar.Controls.ReflectionImage ri;

            DevComponents.DotNetBar.Controls.ReflectionLabel rl = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text   = "<b><font size='+3'><font color='#B02B2C'>TCP:</font></font></b>";
            rl.Width  = 40;
            rl.Height = 30;
            DevComponents.DotNetBar.ControlContainerItem cci = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;

            al.Add(li);
            al.Add(cci);


            var tcp = from t in ExecServiceList.Lsm where t.SERVICETYPE == "TCP" select t;
            int i   = 0;

            foreach (var item in tcp)
            {
                i++;
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);



                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }

            rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text     = "<b><font size='+3'><font color='#B02B2C'>UDP:</font></font></b>";
            rl.Width    = 40;
            rl.Height   = 30;
            cci         = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;


            li      = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            al.Add(li);
            al.Add(cci);

            var udp = from t in ExecServiceList.Lsm where t.SERVICETYPE == "UDP" select t;

            i = 0;
            foreach (var item in udp)
            {
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);


                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }


            rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text     = "<b><font size='+3'><font color='#B02B2C'>GSM:</font></font></b>";
            rl.Width    = 40;
            rl.Height   = 30;
            cci         = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;

            li      = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            al.Add(li);
            al.Add(cci);


            var gsm = from t in ExecServiceList.Lsm where t.SERVICETYPE == "GSM" select t;

            i = 0;
            foreach (var item in gsm)
            {
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);


                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }

            rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
            rl.Text     = "<b><font size='+3'><font color='#B02B2C'>COM:</font></font></b>";
            rl.Width    = 40;
            rl.Height   = 30;
            cci         = new DevComponents.DotNetBar.ControlContainerItem();
            cci.Control = rl;

            li      = new DevComponents.DotNetBar.LabelItem();
            li.Text = "    ";
            al.Add(li);
            al.Add(cci);

            var com = from t in ExecServiceList.Lsm where t.SERVICETYPE == "COM" select t;

            if (com.Count() > 0)
            {
                toolTip1.SetToolTip(rl, "右击操作");
                rl.MouseClick += new MouseEventHandler(rl_MouseClick);
            }
            i = 0;
            foreach (var item in com)
            {
                rl          = new DevComponents.DotNetBar.Controls.ReflectionLabel();
                rl.Text     = "<b><font color='#B02B2C'><font size='+.5'><i>" + item.SERVICEID + "</i></font></font></b>";
                rl.Width    = item.SERVICEID.ToString().Length * 8;
                rl.Height   = 30;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = rl;
                al.Add(cci);


                ri = new DevComponents.DotNetBar.Controls.ReflectionImage();
                if (item.STATE == false)
                {
                    ri.Image = imageList1.Images[0];
                }
                else
                {
                    ri.Image = imageList1.Images[2];
                }
                ri.MouseDoubleClick += new MouseEventHandler(ri_MouseDoubleClick);
                ri.Tag      = item.SERVICETYPE + item.SERVICEID;
                ri.Width    = 20;
                ri.Height   = 25;
                cci         = new DevComponents.DotNetBar.ControlContainerItem();
                cci.Control = ri;
                al.Add(cci);
            }

            DevComponents.DotNetBar.BaseItem[] bi = new DevComponents.DotNetBar.BaseItem[al.Count];
            for (i = 0; i < al.Count; i++)
            {
                bi[i] = al[i] as DevComponents.DotNetBar.BaseItem;
            }

            itemPanel_top.Items.AddRange(bi);
        }
Beispiel #2
0
        private void UpdControls()
        {
            DevComponents.DotNetBar.Controls.ReflectionImage ri;
            foreach (var item in itemPanel_top.Items)
            {
                DevComponents.DotNetBar.ControlContainerItem cci = item as DevComponents.DotNetBar.ControlContainerItem;
                if (cci != null && cci.Control.Tag != null)
                {
                    ri = cci.Control as DevComponents.DotNetBar.Controls.ReflectionImage;
                    var ser = from s in ExecServiceList.Lsm where (s.SERVICETYPE + s.SERVICEID) == ri.Tag.ToString() select s;
                    if (ser.Count() > 0)
                    {
                        //在线绿色,不在线红色。
                        if (ser.First().STATE == false)
                        {
                            ri.Image = imageList1.Images[0];
                        }
                        else
                        {
                            ri.Image = imageList1.Images[2];
                        }
                    }

                    if (ser.First().LISTCOUNT != "" && ser.First().LISTCOUNT != null)
                    {
                        string[] strs = ser.First().LISTCOUNT.Split(new char[] { ',' });
                        if (strs.Length == 5)
                        {
                            toolTip1.SetToolTip(ri, ser.First().IP_PORTNAME + ":" + ser.First().PORT_BAUDRATE + "\n" + "客户端:" + strs[0] + " 接收数据:" + strs[1] + " 发送数据:" + strs[2] + " UI数据:" + strs[3] + " 透传数据:" + strs[4]);
                        }
                        if (strs.Length == 7)
                        {
                            //原版本卫星协议返回状态
                            #region
                            //string Toolstr =
                            //"通道1信号功率:" + strs[0] + "\n" +
                            //"通道2信号功率:" + strs[1] + "\n" +
                            //"通道1卫星波束:" + strs[2] + "\n" +
                            //"通道2卫星波束:" + strs[3] + "\n" +
                            //"响应波束:" + strs[4] + "\n" +
                            //"信号抑制:" + (strs[5] == "0" ? "有" : "无") + "\n" +
                            //"供电状态:" + (strs[6] == "0" ? "异常" : "正常");
                            //toolTip1.SetToolTip(ri, Toolstr);

                            ////卫星信号状态异常黄色
                            //if (strs[0] == "0" && strs[1] == "0")
                            //{
                            //    ri.Image = imageList1.Images[1];
                            //}
                            //else { ri.Image = imageList1.Images[2]; }
                            #endregion


                            //新版本卫星协议4.0返回状态
                            #region
                            string Toolstr = "";

                            //IC卡状态
                            if (strs[0] == "00")//正常
                            {
                                Toolstr += "IC卡状态:正常\n";
                            }
                            else //异常
                            {
                                Toolstr += "IC卡状态:异常\n";
                            }

                            //硬件状态
                            if (strs[1] == "00")//正常
                            {
                                Toolstr += "硬件状态:正常\n";
                            }
                            else //异常
                            {
                                Toolstr += "硬件状态:异常\n";
                            }

                            //电量百分比
                            Toolstr += "电量:" + strs[2] + "%\n";


                            string   Power = strs[3];
                            string[] bs    = new string[] { "<-158dBW", "-156~-157dBW", "-154~-155dBW", "-152~-153dBW", ">-152dBW" };
                            if (Power.Length == 12)
                            {
                                for (int i = 0; i < 6; i++)
                                {
                                    string s = Power.Substring(2 * i, 2);
                                    if (s == "00")
                                    {
                                        Toolstr += "波束" + (i + 1) + "#功率:" + bs[0] + "\n";
                                    }
                                    else if (s == "01")
                                    {
                                        Toolstr += "波束" + (i + 1) + "#功率:" + bs[1] + "\n";
                                    }
                                    else if (s == "02")
                                    {
                                        Toolstr += "波束" + (i + 1) + "#功率:" + bs[2] + "\n";
                                    }
                                    else if (s == "03")
                                    {
                                        Toolstr += "波束" + (i + 1) + "#功率:" + bs[3] + "\n";
                                    }
                                    else if (s == "04")
                                    {
                                        Toolstr += "波束" + (i + 1) + "#功率:" + bs[4] + "\n";
                                    }
                                }
                            }

                            toolTip1.SetToolTip(ri, Toolstr);


                            //卫星信号状态异常黄色
                            if (strs[0] == "00" && strs[1] == "00")
                            {
                                ri.Image = imageList1.Images[1];
                            }
                            else
                            {
                                ri.Image = imageList1.Images[2];
                            }
                            #endregion
                        }
                    }

                    //不在线红色
                    if (ser.First().STATE == false)
                    {
                        ri.Image = imageList1.Images[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(FormularioSeleccionDestinatarios));
     this.dataGridViewContactos = new System.Windows.Forms.DataGridView();
     this.icon = new System.Windows.Forms.DataGridViewImageColumn();
     this.nombreContactoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cargoContactoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.correoElectrónicoDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.carnetEmpresaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombreEmpresaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.contactoEmpresaBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.empresaDataSet = new Sistema_De_Administracion_De_Servicios.EmpresaDataSet();
     this.txtCco = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtCc = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtPara = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnAceptar = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnPara = new System.Windows.Forms.CheckBox();
     this.btnCc = new System.Windows.Forms.CheckBox();
     this.btnCco = new System.Windows.Forms.CheckBox();
     this.btnAgregar = new System.Windows.Forms.Button();
     this.ribbonBar1 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.sliderItem1 = new DevComponents.DotNetBar.SliderItem();
     this.ribbonBar2 = new DevComponents.DotNetBar.RibbonBar();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.ribbonBar3 = new DevComponents.DotNetBar.RibbonBar();
     this.controlContainerItem2 = new DevComponents.DotNetBar.ControlContainerItem();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.optPrincipal = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente1 = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente2 = new DevComponents.DotNetBar.ButtonItem();
     this.optSuplente3 = new DevComponents.DotNetBar.ButtonItem();
     this.btnFiltrar = new DevComponents.DotNetBar.ButtonItem();
     this.controlContainerItem7 = new DevComponents.DotNetBar.ControlContainerItem();
     this.controlContainerItem3 = new DevComponents.DotNetBar.ControlContainerItem();
     this.contactoEmpresaTableAdapter = new Sistema_De_Administracion_De_Servicios.EmpresaDataSetTableAdapters.ContactoEmpresaTableAdapter();
     this.ico = new System.Windows.Forms.DataGridViewImageColumn();
     this.nombreContactoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cargoContactoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.correoElectrónicoDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContactos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactoEmpresaBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.empresaDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewContactos
     //
     this.dataGridViewContactos.AllowUserToAddRows = false;
     this.dataGridViewContactos.AllowUserToDeleteRows = false;
     this.dataGridViewContactos.AllowUserToResizeRows = false;
     this.dataGridViewContactos.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.dataGridViewContactos.AutoGenerateColumns = false;
     this.dataGridViewContactos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewContactos.BackgroundColor = System.Drawing.Color.White;
     this.dataGridViewContactos.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridViewContactos.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.None;
     this.dataGridViewContactos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.dataGridViewContactos.ColumnHeadersHeight = 20;
     this.dataGridViewContactos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataGridViewContactos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.icon,
     this.nombreContactoDataGridViewTextBoxColumn,
     this.cargoContactoDataGridViewTextBoxColumn,
     this.correoElectrónicoDataGridViewTextBoxColumn,
     this.carnetEmpresaDataGridViewTextBoxColumn,
     this.nombreEmpresaDataGridViewTextBoxColumn});
     this.dataGridViewContactos.DataSource = this.contactoEmpresaBindingSource;
     this.dataGridViewContactos.EnableHeadersVisualStyles = false;
     this.dataGridViewContactos.GridColor = System.Drawing.Color.White;
     this.dataGridViewContactos.Location = new System.Drawing.Point(12, 67);
     this.dataGridViewContactos.Name = "dataGridViewContactos";
     this.dataGridViewContactos.ReadOnly = true;
     this.dataGridViewContactos.RowHeadersVisible = false;
     this.dataGridViewContactos.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dataGridViewContactos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewContactos.Size = new System.Drawing.Size(604, 137);
     this.dataGridViewContactos.TabIndex = 1;
     this.dataGridViewContactos.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewContactos_CellDoubleClick);
     this.dataGridViewContactos.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewContactos_CellFormatting);
     //
     // icon
     //
     this.icon.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.icon.HeaderText = "";
     this.icon.Image = ((System.Drawing.Image)(resources.GetObject("icon.Image")));
     this.icon.Name = "icon";
     this.icon.ReadOnly = true;
     this.icon.Width = 20;
     //
     // nombreContactoDataGridViewTextBoxColumn
     //
     this.nombreContactoDataGridViewTextBoxColumn.DataPropertyName = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn.HeaderText = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn.Name = "nombreContactoDataGridViewTextBoxColumn";
     this.nombreContactoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // cargoContactoDataGridViewTextBoxColumn
     //
     this.cargoContactoDataGridViewTextBoxColumn.DataPropertyName = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn.HeaderText = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn.Name = "cargoContactoDataGridViewTextBoxColumn";
     this.cargoContactoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // correoElectrónicoDataGridViewTextBoxColumn
     //
     this.correoElectrónicoDataGridViewTextBoxColumn.DataPropertyName = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn.HeaderText = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn.Name = "correoElectrónicoDataGridViewTextBoxColumn";
     this.correoElectrónicoDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // carnetEmpresaDataGridViewTextBoxColumn
     //
     this.carnetEmpresaDataGridViewTextBoxColumn.DataPropertyName = "Carnet Empresa";
     this.carnetEmpresaDataGridViewTextBoxColumn.HeaderText = "Carnet Empresa";
     this.carnetEmpresaDataGridViewTextBoxColumn.Name = "carnetEmpresaDataGridViewTextBoxColumn";
     this.carnetEmpresaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // nombreEmpresaDataGridViewTextBoxColumn
     //
     this.nombreEmpresaDataGridViewTextBoxColumn.DataPropertyName = "Nombre Empresa";
     this.nombreEmpresaDataGridViewTextBoxColumn.HeaderText = "Nombre Empresa";
     this.nombreEmpresaDataGridViewTextBoxColumn.Name = "nombreEmpresaDataGridViewTextBoxColumn";
     this.nombreEmpresaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // contactoEmpresaBindingSource
     //
     this.contactoEmpresaBindingSource.DataMember = "ContactoEmpresa";
     this.contactoEmpresaBindingSource.DataSource = this.empresaDataSet;
     //
     // empresaDataSet
     //
     this.empresaDataSet.DataSetName = "EmpresaDataSet";
     this.empresaDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtCco
     //
     this.txtCco.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCco.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCco.Border.Class = "TextBoxBorder";
     this.txtCco.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCco.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCco.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtCco.Location = new System.Drawing.Point(78, 348);
     this.txtCco.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtCco.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtCco.Multiline = true;
     this.txtCco.Name = "txtCco";
     this.txtCco.Size = new System.Drawing.Size(537, 40);
     this.txtCco.TabIndex = 13;
     //
     // txtCc
     //
     this.txtCc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCc.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCc.Border.Class = "TextBoxBorder";
     this.txtCc.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCc.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtCc.Location = new System.Drawing.Point(79, 302);
     this.txtCc.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtCc.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtCc.Multiline = true;
     this.txtCc.Name = "txtCc";
     this.txtCc.Size = new System.Drawing.Size(537, 40);
     this.txtCc.TabIndex = 12;
     //
     // txtPara
     //
     this.txtPara.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPara.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtPara.Border.Class = "TextBoxBorder";
     this.txtPara.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPara.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPara.ForeColor = System.Drawing.SystemColors.ControlText;
     this.txtPara.Location = new System.Drawing.Point(79, 256);
     this.txtPara.MaximumSize = new System.Drawing.Size(0, 60);
     this.txtPara.MinimumSize = new System.Drawing.Size(537, 20);
     this.txtPara.Multiline = true;
     this.txtPara.Name = "txtPara";
     this.txtPara.PreventEnterBeep = true;
     this.txtPara.Size = new System.Drawing.Size(537, 40);
     this.txtPara.TabIndex = 11;
     //
     // btnAceptar
     //
     this.btnAceptar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAceptar.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnAceptar.Location = new System.Drawing.Point(460, 403);
     this.btnAceptar.Name = "btnAceptar";
     this.btnAceptar.Size = new System.Drawing.Size(75, 23);
     this.btnAceptar.TabIndex = 17;
     this.btnAceptar.Text = "Aceptar";
     this.btnAceptar.UseVisualStyleBackColor = true;
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancelar.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancelar.Location = new System.Drawing.Point(541, 403);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 18;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnPara
     //
     this.btnPara.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPara.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnPara.Location = new System.Drawing.Point(13, 256);
     this.btnPara.Name = "btnPara";
     this.btnPara.Size = new System.Drawing.Size(60, 40);
     this.btnPara.TabIndex = 25;
     this.btnPara.Text = "Para";
     this.btnPara.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnPara.UseVisualStyleBackColor = true;
     //
     // btnCc
     //
     this.btnCc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCc.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnCc.Location = new System.Drawing.Point(13, 302);
     this.btnCc.Name = "btnCc";
     this.btnCc.Size = new System.Drawing.Size(60, 40);
     this.btnCc.TabIndex = 26;
     this.btnCc.Text = "Cc";
     this.btnCc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCc.UseVisualStyleBackColor = true;
     //
     // btnCco
     //
     this.btnCco.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCco.Appearance = System.Windows.Forms.Appearance.Button;
     this.btnCco.Location = new System.Drawing.Point(12, 349);
     this.btnCco.Name = "btnCco";
     this.btnCco.Size = new System.Drawing.Size(60, 40);
     this.btnCco.TabIndex = 27;
     this.btnCco.Text = "Cco";
     this.btnCco.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.btnCco.UseVisualStyleBackColor = true;
     //
     // btnAgregar
     //
     this.btnAgregar.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.btnAgregar.Location = new System.Drawing.Point(185, 210);
     this.btnAgregar.Name = "btnAgregar";
     this.btnAgregar.Size = new System.Drawing.Size(259, 40);
     this.btnAgregar.TabIndex = 31;
     this.btnAgregar.Text = "Agregar";
     this.btnAgregar.UseVisualStyleBackColor = true;
     this.btnAgregar.Click += new System.EventHandler(this.btnAgregar_Click);
     //
     // ribbonBar1
     //
     this.ribbonBar1.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar1.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar1.ContainerControlProcessDialogKey = true;
     this.ribbonBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1});
     this.ribbonBar1.Location = new System.Drawing.Point(65, 84);
     this.ribbonBar1.Name = "ribbonBar1";
     this.ribbonBar1.Size = new System.Drawing.Size(75, 78);
     this.ribbonBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar1.TabIndex = 0;
     this.ribbonBar1.Text = "ribbonBar1";
     //
     //
     //
     this.ribbonBar1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar1.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItemsExpandWidth = 14;
     this.buttonItem1.Text = "buttonItem1";
     //
     // sliderItem1
     //
     this.sliderItem1.Name = "sliderItem1";
     this.sliderItem1.Text = "sliderItem1";
     this.sliderItem1.Value = 0;
     //
     // ribbonBar2
     //
     this.ribbonBar2.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar2.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar2.ContainerControlProcessDialogKey = true;
     this.ribbonBar2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.controlContainerItem1});
     this.ribbonBar2.Location = new System.Drawing.Point(39, 79);
     this.ribbonBar2.Name = "ribbonBar2";
     this.ribbonBar2.Size = new System.Drawing.Size(136, 96);
     this.ribbonBar2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar2.TabIndex = 33;
     this.ribbonBar2.Text = "ribbonBar2";
     //
     //
     //
     this.ribbonBar2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar2.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.find48;
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItemsExpandWidth = 14;
     this.buttonItem2.Text = "buttonItem2";
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = true;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     //
     // ribbonBar3
     //
     this.ribbonBar3.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribbonBar3.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonBar3.ContainerControlProcessDialogKey = true;
     this.ribbonBar3.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem2});
     this.ribbonBar3.Location = new System.Drawing.Point(78, 32);
     this.ribbonBar3.Name = "ribbonBar3";
     this.ribbonBar3.Size = new System.Drawing.Size(75, 23);
     this.ribbonBar3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonBar3.TabIndex = 33;
     this.ribbonBar3.Text = "ribbonBar3";
     //
     //
     //
     this.ribbonBar3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribbonBar3.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // controlContainerItem2
     //
     this.controlContainerItem2.AllowItemResize = true;
     this.controlContainerItem2.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem2.Name = "controlContainerItem2";
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "bar1 (bar1)";
     this.bar1.AccessibleName = "bar1";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
     this.bar1.AntiAlias = true;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem2,
     this.optPrincipal,
     this.optSuplente1,
     this.optSuplente2,
     this.optSuplente3,
     this.btnFiltrar});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(628, 41);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 32;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // labelItem2
     //
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingLeft = 20;
     this.labelItem2.PaddingRight = 20;
     this.labelItem2.Text = "Mostrar Contactos";
     //
     // optPrincipal
     //
     this.optPrincipal.AutoCheckOnClick = true;
     this.optPrincipal.Image = ((System.Drawing.Image)(resources.GetObject("optPrincipal.Image")));
     this.optPrincipal.Name = "optPrincipal";
     this.optPrincipal.OptionGroup = "groupContactos";
     this.optPrincipal.Tooltip = "Contacto Principal";
     this.optPrincipal.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente1
     //
     this.optSuplente1.AutoCheckOnClick = true;
     this.optSuplente1.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente1.Image")));
     this.optSuplente1.Name = "optSuplente1";
     this.optSuplente1.OptionGroup = "groupContactos";
     this.optSuplente1.Tooltip = "Suplente 1";
     this.optSuplente1.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente2
     //
     this.optSuplente2.AutoCheckOnClick = true;
     this.optSuplente2.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente2.Image")));
     this.optSuplente2.Name = "optSuplente2";
     this.optSuplente2.OptionGroup = "groupContactos";
     this.optSuplente2.Tooltip = "Suplente 2";
     this.optSuplente2.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // optSuplente3
     //
     this.optSuplente3.AutoCheckOnClick = true;
     this.optSuplente3.Image = ((System.Drawing.Image)(resources.GetObject("optSuplente3.Image")));
     this.optSuplente3.Name = "optSuplente3";
     this.optSuplente3.OptionGroup = "groupContactos";
     this.optSuplente3.Tooltip = "Suplente 3";
     this.optSuplente3.CheckedChanged += new System.EventHandler(this.radioButtonMostrarContactos_CheckedChanged);
     //
     // btnFiltrar
     //
     this.btnFiltrar.BeginGroup = true;
     this.btnFiltrar.Image = ((System.Drawing.Image)(resources.GetObject("btnFiltrar.Image")));
     this.btnFiltrar.Name = "btnFiltrar";
     this.btnFiltrar.Tooltip = "Filtrar";
     this.btnFiltrar.Click += new System.EventHandler(this.btnFiltrar_Click);
     //
     // controlContainerItem7
     //
     this.controlContainerItem7.AllowItemResize = false;
     this.controlContainerItem7.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem7.Name = "controlContainerItem7";
     //
     // controlContainerItem3
     //
     this.controlContainerItem3.AllowItemResize = false;
     this.controlContainerItem3.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem3.Name = "controlContainerItem3";
     //
     // contactoEmpresaTableAdapter
     //
     this.contactoEmpresaTableAdapter.ClearBeforeFill = true;
     //
     // ico
     //
     this.ico.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.ico.FillWeight = 60.9137F;
     this.ico.HeaderText = "";
     this.ico.Image = ((System.Drawing.Image)(resources.GetObject("ico.Image")));
     this.ico.MinimumWidth = 20;
     this.ico.Name = "ico";
     this.ico.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.ico.Width = 20;
     //
     // nombreContactoDataGridViewTextBoxColumn1
     //
     this.nombreContactoDataGridViewTextBoxColumn1.DataPropertyName = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.nombreContactoDataGridViewTextBoxColumn1.HeaderText = "Nombre Contacto";
     this.nombreContactoDataGridViewTextBoxColumn1.Name = "nombreContactoDataGridViewTextBoxColumn1";
     this.nombreContactoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.nombreContactoDataGridViewTextBoxColumn1.Width = 116;
     //
     // cargoContactoDataGridViewTextBoxColumn1
     //
     this.cargoContactoDataGridViewTextBoxColumn1.DataPropertyName = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.cargoContactoDataGridViewTextBoxColumn1.HeaderText = "Cargo Contacto";
     this.cargoContactoDataGridViewTextBoxColumn1.Name = "cargoContactoDataGridViewTextBoxColumn1";
     this.cargoContactoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cargoContactoDataGridViewTextBoxColumn1.Width = 117;
     //
     // correoElectrónicoDataGridViewTextBoxColumn1
     //
     this.correoElectrónicoDataGridViewTextBoxColumn1.DataPropertyName = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn1.FillWeight = 107.8173F;
     this.correoElectrónicoDataGridViewTextBoxColumn1.HeaderText = "Correo Electrónico";
     this.correoElectrónicoDataGridViewTextBoxColumn1.Name = "correoElectrónicoDataGridViewTextBoxColumn1";
     this.correoElectrónicoDataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.correoElectrónicoDataGridViewTextBoxColumn1.Width = 116;
     //
     // FormularioSeleccionDestinatarios
     //
     this.AcceptButton = this.btnAceptar;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.InactiveBorder;
     this.CancelButton = this.btnCancelar;
     this.ClientSize = new System.Drawing.Size(628, 438);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.btnAgregar);
     this.Controls.Add(this.btnCco);
     this.Controls.Add(this.btnCc);
     this.Controls.Add(this.btnPara);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.btnAceptar);
     this.Controls.Add(this.txtCco);
     this.Controls.Add(this.txtCc);
     this.Controls.Add(this.txtPara);
     this.Controls.Add(this.dataGridViewContactos);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "FormularioSeleccionDestinatarios";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FormularioSeleccionDestinatarios";
     this.Load += new System.EventHandler(this.FormularioSeleccionDestinatarios_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContactos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactoEmpresaBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.empresaDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.txtContactPhone = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtEverPhone = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.txtMobile2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblSMS = new System.Windows.Forms.Label();
     this.txtMobile1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label1 = new System.Windows.Forms.Label();
     this.txtCompanyPhone = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label4 = new System.Windows.Forms.Label();
     this.txtOtherPhone = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label5 = new System.Windows.Forms.Label();
     this.txtContactRemark = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label6 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // txtContactPhone
     //
     //
     //
     //
     this.txtContactPhone.Border.Class = "TextBoxBorder";
     this.txtContactPhone.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtContactPhone.Location = new System.Drawing.Point(118, 45);
     this.txtContactPhone.Margin = new System.Windows.Forms.Padding(4);
     this.txtContactPhone.Name = "txtContactPhone";
     this.txtContactPhone.Size = new System.Drawing.Size(138, 25);
     this.txtContactPhone.TabIndex = 6;
     this.txtContactPhone.WordWrap = false;
     //
     // txtEverPhone
     //
     //
     //
     //
     this.txtEverPhone.Border.Class = "TextBoxBorder";
     this.txtEverPhone.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEverPhone.Location = new System.Drawing.Point(119, 78);
     this.txtEverPhone.Margin = new System.Windows.Forms.Padding(4);
     this.txtEverPhone.Name = "txtEverPhone";
     this.txtEverPhone.Size = new System.Drawing.Size(137, 25);
     this.txtEverPhone.TabIndex = 5;
     this.txtEverPhone.WordWrap = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(45, 80);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(60, 17);
     this.label3.TabIndex = 199;
     this.label3.Text = "住家電話";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(45, 47);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 17);
     this.label2.TabIndex = 198;
     this.label2.Text = "聯絡電話";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = true;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     this.controlContainerItem1.Text = "controlContainerItem1";
     //
     // txtMobile2
     //
     //
     //
     //
     this.txtMobile2.Border.Class = "TextBoxBorder";
     this.txtMobile2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMobile2.Location = new System.Drawing.Point(377, 12);
     this.txtMobile2.Margin = new System.Windows.Forms.Padding(4);
     this.txtMobile2.Name = "txtMobile2";
     this.txtMobile2.Size = new System.Drawing.Size(138, 25);
     this.txtMobile2.TabIndex = 2;
     this.txtMobile2.WordWrap = false;
     //
     // lblSMS
     //
     this.lblSMS.AutoSize = true;
     this.lblSMS.BackColor = System.Drawing.Color.Transparent;
     this.lblSMS.ForeColor = System.Drawing.Color.Black;
     this.lblSMS.Location = new System.Drawing.Point(296, 16);
     this.lblSMS.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblSMS.Name = "lblSMS";
     this.lblSMS.Size = new System.Drawing.Size(68, 17);
     this.lblSMS.TabIndex = 222;
     this.lblSMS.Text = "行動電話2";
     this.lblSMS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtMobile1
     //
     //
     //
     //
     this.txtMobile1.Border.Class = "TextBoxBorder";
     this.txtMobile1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMobile1.Location = new System.Drawing.Point(119, 14);
     this.txtMobile1.Margin = new System.Windows.Forms.Padding(4);
     this.txtMobile1.Name = "txtMobile1";
     this.txtMobile1.Size = new System.Drawing.Size(137, 25);
     this.txtMobile1.TabIndex = 1;
     this.txtMobile1.WordWrap = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(37, 16);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 17);
     this.label1.TabIndex = 224;
     this.label1.Text = "行動電話1";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtCompanyPhone
     //
     //
     //
     //
     this.txtCompanyPhone.Border.Class = "TextBoxBorder";
     this.txtCompanyPhone.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCompanyPhone.Location = new System.Drawing.Point(378, 45);
     this.txtCompanyPhone.Margin = new System.Windows.Forms.Padding(4);
     this.txtCompanyPhone.Name = "txtCompanyPhone";
     this.txtCompanyPhone.Size = new System.Drawing.Size(137, 25);
     this.txtCompanyPhone.TabIndex = 3;
     this.txtCompanyPhone.WordWrap = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(304, 47);
     this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(60, 17);
     this.label4.TabIndex = 228;
     this.label4.Text = "公司電話";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtOtherPhone
     //
     //
     //
     //
     this.txtOtherPhone.Border.Class = "TextBoxBorder";
     this.txtOtherPhone.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtOtherPhone.Location = new System.Drawing.Point(377, 78);
     this.txtOtherPhone.Margin = new System.Windows.Forms.Padding(4);
     this.txtOtherPhone.Name = "txtOtherPhone";
     this.txtOtherPhone.Size = new System.Drawing.Size(138, 25);
     this.txtOtherPhone.TabIndex = 4;
     this.txtOtherPhone.WordWrap = false;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(304, 82);
     this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(60, 17);
     this.label5.TabIndex = 226;
     this.label5.Text = "秘書電話";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtContactRemark
     //
     //
     //
     //
     this.txtContactRemark.Border.Class = "TextBoxBorder";
     this.txtContactRemark.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtContactRemark.Location = new System.Drawing.Point(119, 111);
     this.txtContactRemark.Margin = new System.Windows.Forms.Padding(4);
     this.txtContactRemark.Multiline = true;
     this.txtContactRemark.Name = "txtContactRemark";
     this.txtContactRemark.Size = new System.Drawing.Size(396, 53);
     this.txtContactRemark.TabIndex = 7;
     this.txtContactRemark.WordWrap = false;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(44, 113);
     this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 17);
     this.label6.TabIndex = 230;
     this.label6.Text = "備         註";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Student_Phone
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.txtContactRemark);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtCompanyPhone);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtOtherPhone);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtMobile1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtMobile2);
     this.Controls.Add(this.lblSMS);
     this.Controls.Add(this.txtContactPhone);
     this.Controls.Add(this.txtEverPhone);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.Name = "Student_Phone";
     this.Size = new System.Drawing.Size(550, 180);
     this.Load += new System.EventHandler(this.Student_Phone_Load);
     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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Menu_Principal));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.listaCatalogos = new DevComponents.DotNetBar.ItemPanel();
     this.listCatEmpresa = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatSectores = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAgrupaciones = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatTipoMembresia = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatTipoEmpresa = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatTarifas = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatCasos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatSolicitudApoyo = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listTipoActividad = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listaAdministrador = new DevComponents.DotNetBar.ItemPanel();
     this.listAdmControlUsuarios = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAdmComunicacion = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAdmPantallaGerencial = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.usuarioResumen = new DevComponents.DotNetBar.PanelEx();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.labelNombre = new System.Windows.Forms.Label();
     this.imagenUsuario = new System.Windows.Forms.PictureBox();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.btnAbrirServicio = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnAgregarEmpresa = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnReportes = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnComunicacion = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnCatalogos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnAdministrador = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem4 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel1.SuspendLayout();
     this.usuarioResumen.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenUsuario)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Controls.Add(this.listaCatalogos);
     this.itemPanel1.Controls.Add(this.listaAdministrador);
     this.itemPanel1.Controls.Add(this.usuarioResumen);
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6,
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.Location = new System.Drawing.Point(22, 25);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(735, 694);
     this.itemPanel1.TabIndex = 4;
     this.itemPanel1.Text = "itemPanel1";
     this.itemPanel1.ThemeAware = true;
     //
     // listaCatalogos
     //
     //
     //
     //
     this.listaCatalogos.BackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.listaCatalogos.BackgroundStyle.BackColorGradientAngle = 90;
     this.listaCatalogos.BackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.listaCatalogos.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderBottomWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.listaCatalogos.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderLeftWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderRightWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderTopWidth = 1;
     this.listaCatalogos.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaCatalogos.ContainerControlProcessDialogKey = true;
     this.listaCatalogos.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listCatEmpresa,
     this.listCatSectores,
     this.listAgrupaciones,
     this.listCatTipoMembresia,
     this.listCatTipoEmpresa,
     this.listCatTarifas,
     this.listCatCasos,
     this.listCatSolicitudApoyo,
     this.listTipoActividad});
     this.listaCatalogos.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaCatalogos.Location = new System.Drawing.Point(250, 448);
     this.listaCatalogos.Name = "listaCatalogos";
     this.listaCatalogos.Size = new System.Drawing.Size(230, 239);
     this.listaCatalogos.TabIndex = 8;
     this.listaCatalogos.Text = "itemPanel2";
     this.listaCatalogos.Visible = false;
     //
     // listCatEmpresa
     //
     this.listCatEmpresa.Name = "listCatEmpresa";
     this.listCatEmpresa.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatEmpresa.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatEmpresa.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatEmpresa.TileStyle.PaddingLeft = 50;
     this.listCatEmpresa.TitleText = "Empresas";
     this.listCatEmpresa.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatEmpresa.Click += new System.EventHandler(this.listCatEmpresa_Click);
     //
     // listCatSectores
     //
     this.listCatSectores.Name = "listCatSectores";
     this.listCatSectores.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatSectores.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatSectores.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatSectores.TileStyle.PaddingLeft = 50;
     this.listCatSectores.TitleText = "Sectores";
     this.listCatSectores.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatSectores.Click += new System.EventHandler(this.listCatSectores_Click);
     //
     // listAgrupaciones
     //
     this.listAgrupaciones.Name = "listAgrupaciones";
     this.listAgrupaciones.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listAgrupaciones.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAgrupaciones.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAgrupaciones.TileStyle.PaddingLeft = 50;
     this.listAgrupaciones.TitleText = "Agrupaciones";
     this.listAgrupaciones.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAgrupaciones.Click += new System.EventHandler(this.listAgrupaciones_Click);
     //
     // listCatTipoMembresia
     //
     this.listCatTipoMembresia.Name = "listCatTipoMembresia";
     this.listCatTipoMembresia.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatTipoMembresia.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatTipoMembresia.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatTipoMembresia.TileStyle.PaddingLeft = 50;
     this.listCatTipoMembresia.TitleText = "Tipo de Membresia";
     this.listCatTipoMembresia.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatTipoMembresia.Click += new System.EventHandler(this.listCatTipoMembresia_Click);
     //
     // listCatTipoEmpresa
     //
     this.listCatTipoEmpresa.Name = "listCatTipoEmpresa";
     this.listCatTipoEmpresa.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatTipoEmpresa.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatTipoEmpresa.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatTipoEmpresa.TileStyle.PaddingLeft = 50;
     this.listCatTipoEmpresa.TitleText = "Tipo de Empresa";
     this.listCatTipoEmpresa.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatTipoEmpresa.Click += new System.EventHandler(this.listCatTipoEmpresa_Click);
     //
     // listCatTarifas
     //
     this.listCatTarifas.Name = "listCatTarifas";
     this.listCatTarifas.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatTarifas.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatTarifas.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatTarifas.TileStyle.PaddingLeft = 50;
     this.listCatTarifas.TitleText = "Tarifas";
     this.listCatTarifas.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatTarifas.Click += new System.EventHandler(this.listCatTarifas_Click);
     //
     // listCatCasos
     //
     this.listCatCasos.Name = "listCatCasos";
     this.listCatCasos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatCasos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatCasos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatCasos.TileStyle.PaddingLeft = 50;
     this.listCatCasos.TitleText = "Casos";
     this.listCatCasos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatCasos.Click += new System.EventHandler(this.listCatCasos_Click);
     //
     // listCatSolicitudApoyo
     //
     this.listCatSolicitudApoyo.Name = "listCatSolicitudApoyo";
     this.listCatSolicitudApoyo.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatSolicitudApoyo.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatSolicitudApoyo.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatSolicitudApoyo.TileStyle.PaddingLeft = 50;
     this.listCatSolicitudApoyo.TitleText = "Solicitud de Apoyo";
     this.listCatSolicitudApoyo.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatSolicitudApoyo.Click += new System.EventHandler(this.listCatSolicitudApoyo_Click);
     //
     // listTipoActividad
     //
     this.listTipoActividad.Name = "listTipoActividad";
     this.listTipoActividad.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listTipoActividad.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listTipoActividad.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listTipoActividad.TileStyle.PaddingLeft = 50;
     this.listTipoActividad.TitleText = "Tipo de Actividad";
     this.listTipoActividad.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listTipoActividad.Click += new System.EventHandler(this.listTipoActividad_Click);
     //
     // listaAdministrador
     //
     this.listaAdministrador.BackColor = System.Drawing.Color.Maroon;
     //
     //
     //
     this.listaAdministrador.BackgroundStyle.Class = "ItemPanel";
     this.listaAdministrador.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaAdministrador.ContainerControlProcessDialogKey = true;
     this.listaAdministrador.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listAdmControlUsuarios,
     this.listAdmComunicacion,
     this.listAdmPantallaGerencial});
     this.listaAdministrador.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaAdministrador.Location = new System.Drawing.Point(500, 447);
     this.listaAdministrador.Name = "listaAdministrador";
     this.listaAdministrador.Size = new System.Drawing.Size(230, 82);
     this.listaAdministrador.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.listaAdministrador.TabIndex = 7;
     this.listaAdministrador.Text = "itemPanel2";
     this.listaAdministrador.Visible = false;
     //
     // listAdmControlUsuarios
     //
     this.listAdmControlUsuarios.Name = "listAdmControlUsuarios";
     this.listAdmControlUsuarios.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmControlUsuarios.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmControlUsuarios.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmControlUsuarios.TileStyle.PaddingLeft = 50;
     this.listAdmControlUsuarios.TitleText = "Control Usuarios";
     this.listAdmControlUsuarios.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmControlUsuarios.Click += new System.EventHandler(this.metroTileItem2_Click);
     //
     // listAdmComunicacion
     //
     this.listAdmComunicacion.Name = "listAdmComunicacion";
     this.listAdmComunicacion.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmComunicacion.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmComunicacion.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmComunicacion.TileStyle.PaddingLeft = 50;
     this.listAdmComunicacion.TitleText = "Comunicación";
     this.listAdmComunicacion.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // listAdmPantallaGerencial
     //
     this.listAdmPantallaGerencial.Name = "listAdmPantallaGerencial";
     this.listAdmPantallaGerencial.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmPantallaGerencial.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmPantallaGerencial.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmPantallaGerencial.TileStyle.PaddingLeft = 50;
     this.listAdmPantallaGerencial.TitleText = "Pantalla Gerencial";
     this.listAdmPantallaGerencial.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmPantallaGerencial.Click += new System.EventHandler(this.listAdmPantallaGerencial_Click);
     //
     // usuarioResumen
     //
     this.usuarioResumen.CanvasColor = System.Drawing.SystemColors.Control;
     this.usuarioResumen.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.usuarioResumen.Controls.Add(this.pictureBox1);
     this.usuarioResumen.Controls.Add(this.labelNombre);
     this.usuarioResumen.Controls.Add(this.imagenUsuario);
     this.usuarioResumen.Location = new System.Drawing.Point(2, 1);
     this.usuarioResumen.Name = "usuarioResumen";
     this.usuarioResumen.Size = new System.Drawing.Size(728, 210);
     this.usuarioResumen.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.usuarioResumen.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.usuarioResumen.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.usuarioResumen.Style.GradientAngle = 90;
     this.usuarioResumen.TabIndex = 5;
     this.usuarioResumen.Click += new System.EventHandler(this.usuarioResumen_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.cadin_png;
     this.pictureBox1.Location = new System.Drawing.Point(111, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(175, 170);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // labelNombre
     //
     this.labelNombre.AutoSize = true;
     this.labelNombre.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelNombre.ForeColor = System.Drawing.Color.Black;
     this.labelNombre.Location = new System.Drawing.Point(447, 3);
     this.labelNombre.Name = "labelNombre";
     this.labelNombre.Size = new System.Drawing.Size(104, 18);
     this.labelNombre.TabIndex = 1;
     this.labelNombre.Text = "Bienvenido";
     //
     // imagenUsuario
     //
     this.imagenUsuario.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.User_blue_icon;
     this.imagenUsuario.Location = new System.Drawing.Point(582, 35);
     this.imagenUsuario.Name = "imagenUsuario";
     this.imagenUsuario.Size = new System.Drawing.Size(96, 96);
     this.imagenUsuario.TabIndex = 0;
     this.imagenUsuario.TabStop = false;
     this.imagenUsuario.DoubleClick += new System.EventHandler(this.imagenUsuario_DoubleClick);
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem1});
     this.itemContainer6.ThemeAware = true;
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = false;
     this.controlContainerItem1.Control = this.usuarioResumen;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     this.controlContainerItem1.ThemeAware = true;
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderBottomColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.ItemSpacing = 20;
     this.itemContainer1.MinimumSize = new System.Drawing.Size(732, 240);
     this.itemContainer1.MultiLine = true;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.ResizeItemsToFit = false;
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAbrirServicio,
     this.btnAgregarEmpresa,
     this.btnReportes,
     this.btnComunicacion,
     this.btnCatalogos,
     this.btnAdministrador});
     this.itemContainer1.ThemeAware = true;
     //
     // btnAbrirServicio
     //
     this.btnAbrirServicio.DisabledBackColor = System.Drawing.Color.Transparent;
     this.btnAbrirServicio.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.invoice2;
     this.btnAbrirServicio.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnAbrirServicio.Name = "btnAbrirServicio";
     this.btnAbrirServicio.Text = "<font size=\"+7\"><br/>Servicio / Caso</font>";
     this.btnAbrirServicio.ThemeAware = true;
     this.btnAbrirServicio.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.btnAbrirServicio.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAbrirServicio.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.btnAbrirServicio.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.btnAbrirServicio.TileStyle.BackColorGradientAngle = 45;
     this.btnAbrirServicio.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAbrirServicio.TileStyle.PaddingBottom = 4;
     this.btnAbrirServicio.TileStyle.PaddingLeft = 4;
     this.btnAbrirServicio.TileStyle.PaddingRight = 4;
     this.btnAbrirServicio.TileStyle.PaddingTop = 4;
     this.btnAbrirServicio.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAbrirServicio.TitleText = "Abrir nuevo servicio/caso de una empresa";
     this.btnAbrirServicio.Click += new System.EventHandler(this.btnAbrirServicio_Click);
     //
     // btnAgregarEmpresa
     //
     this.btnAgregarEmpresa.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Building;
     this.btnAgregarEmpresa.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnAgregarEmpresa.Name = "btnAgregarEmpresa";
     this.btnAgregarEmpresa.Text = "<font size=\"+7\"><br/>Empresa</font>";
     this.btnAgregarEmpresa.ThemeAware = true;
     this.btnAgregarEmpresa.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.btnAgregarEmpresa.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAgregarEmpresa.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.btnAgregarEmpresa.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.btnAgregarEmpresa.TileStyle.BackColorGradientAngle = 45;
     this.btnAgregarEmpresa.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAgregarEmpresa.TileStyle.PaddingBottom = 4;
     this.btnAgregarEmpresa.TileStyle.PaddingLeft = 4;
     this.btnAgregarEmpresa.TileStyle.PaddingRight = 4;
     this.btnAgregarEmpresa.TileStyle.PaddingTop = 4;
     this.btnAgregarEmpresa.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAgregarEmpresa.TitleText = "Agregar nueva empresa";
     this.btnAgregarEmpresa.Click += new System.EventHandler(this.btnAgregarEmpresa_Click);
     //
     // btnReportes
     //
     this.btnReportes.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Report;
     this.btnReportes.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnReportes.Name = "btnReportes";
     this.btnReportes.Text = "<font size=\"+7\"><br/>Reportes </font>";
     this.btnReportes.ThemeAware = true;
     this.btnReportes.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.btnReportes.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnReportes.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColorGradientAngle = 45;
     this.btnReportes.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnReportes.TileStyle.PaddingBottom = 4;
     this.btnReportes.TileStyle.PaddingLeft = 4;
     this.btnReportes.TileStyle.PaddingRight = 4;
     this.btnReportes.TileStyle.PaddingTop = 4;
     this.btnReportes.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnReportes.TitleText = "Reportes Generales";
     //
     // btnComunicacion
     //
     this.btnComunicacion.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.mensaje2;
     this.btnComunicacion.ImageIndent = new System.Drawing.Point(5, 10);
     this.btnComunicacion.Name = "btnComunicacion";
     this.btnComunicacion.Text = "<font size=\"+7\"><br/>Comunicación</font>";
     this.btnComunicacion.ThemeAware = true;
     this.btnComunicacion.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.btnComunicacion.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnComunicacion.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.btnComunicacion.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.btnComunicacion.TileStyle.BackColorGradientAngle = 45;
     this.btnComunicacion.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnComunicacion.TileStyle.PaddingBottom = 4;
     this.btnComunicacion.TileStyle.PaddingLeft = 4;
     this.btnComunicacion.TileStyle.PaddingRight = 4;
     this.btnComunicacion.TileStyle.PaddingTop = 4;
     this.btnComunicacion.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnComunicacion.TitleText = "Enviar Comunicación";
     this.btnComunicacion.Click += new System.EventHandler(this.btnComunicacion_Click);
     //
     // btnCatalogos
     //
     this.btnCatalogos.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.catalogicon;
     this.btnCatalogos.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnCatalogos.Name = "btnCatalogos";
     this.btnCatalogos.Text = "<font size=\"+7\"><br/>Catálogos</font>";
     this.btnCatalogos.ThemeAware = true;
     this.btnCatalogos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.btnCatalogos.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnCatalogos.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(118)))), ((int)(((byte)(85)))), ((int)(((byte)(148)))));
     this.btnCatalogos.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(98)))), ((int)(((byte)(185)))));
     this.btnCatalogos.TileStyle.BackColorGradientAngle = 45;
     this.btnCatalogos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnCatalogos.TileStyle.PaddingBottom = 4;
     this.btnCatalogos.TileStyle.PaddingLeft = 4;
     this.btnCatalogos.TileStyle.PaddingRight = 4;
     this.btnCatalogos.TileStyle.PaddingTop = 4;
     this.btnCatalogos.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnCatalogos.TitleText = "Vista de lectura de catálogos";
     //
     // btnAdministrador
     //
     this.btnAdministrador.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Administrative;
     this.btnAdministrador.ImageIndent = new System.Drawing.Point(2, 10);
     this.btnAdministrador.Name = "btnAdministrador";
     this.btnAdministrador.Text = "<font size=\"+7\"><br/>Administración</font>";
     this.btnAdministrador.ThemeAware = true;
     this.btnAdministrador.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.btnAdministrador.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAdministrador.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(76)))), ((int)(((byte)(41)))));
     this.btnAdministrador.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(67)))), ((int)(((byte)(37)))));
     this.btnAdministrador.TileStyle.BackColorGradientAngle = 45;
     this.btnAdministrador.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAdministrador.TileStyle.PaddingBottom = 4;
     this.btnAdministrador.TileStyle.PaddingLeft = 4;
     this.btnAdministrador.TileStyle.PaddingRight = 4;
     this.btnAdministrador.TileStyle.PaddingTop = 4;
     this.btnAdministrador.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAdministrador.TileStyle.TextShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.btnAdministrador.TitleText = "Vista de Administrador";
     this.btnAdministrador.Visible = false;
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 1;
     this.labelItem1.PaddingTop = 1;
     this.labelItem1.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem1.Text = "Stock";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5});
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "Stock-Line";
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "Stock Line 2";
     //
     // buttonItem4
     //
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "Stock Line 3";
     //
     // buttonItem5
     //
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.Text = "Stock Line 4";
     //
     // labelItem2
     //
     this.labelItem2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingBottom = 1;
     this.labelItem2.PaddingTop = 1;
     this.labelItem2.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem2.Text = "Surface";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem6,
     this.buttonItem7,
     this.buttonItem8,
     this.buttonItem9});
     //
     // buttonItem6
     //
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.Text = "Surface Graph 1";
     //
     // buttonItem7
     //
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.Text = "Surface Graph 2";
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "Surface Graph 3";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "Surface Graph 4";
     //
     // labelItem3
     //
     this.labelItem3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem3.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem3.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem3.Name = "labelItem3";
     this.labelItem3.PaddingBottom = 1;
     this.labelItem3.PaddingTop = 1;
     this.labelItem3.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem3.Text = "Doughnut";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10,
     this.buttonItem11});
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "Doughnut Graph 1";
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "Doughnut Graph 2";
     //
     // labelItem4
     //
     this.labelItem4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem4.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem4.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem4.Name = "labelItem4";
     this.labelItem4.PaddingBottom = 1;
     this.labelItem4.PaddingTop = 1;
     this.labelItem4.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem4.Text = "Bubble";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.Text = "Bubble Graph 1";
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.Text = "Bubble Graph 2";
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.Text = "buttonItem14";
     //
     // buttonItem15
     //
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "buttonItem15";
     //
     // buttonItem16
     //
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.Text = "buttonItem16";
     //
     // buttonItem17
     //
     this.buttonItem17.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem17.Image")));
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.Text = "buttonItem17";
     //
     // buttonItem18
     //
     this.buttonItem18.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem18.Image")));
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "buttonItem18";
     //
     // buttonItem19
     //
     this.buttonItem19.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem19.Image")));
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "buttonItem19";
     //
     // buttonItem20
     //
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "buttonItem20";
     //
     // buttonItem21
     //
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "buttonItem21";
     //
     // buttonItem22
     //
     this.buttonItem22.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "buttonItem22";
     //
     // buttonItem23
     //
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "buttonItem23";
     //
     // buttonItem24
     //
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "buttonItem24";
     //
     // buttonItem25
     //
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "buttonItem25";
     //
     // metroTileItem1
     //
     this.metroTileItem1.Image = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.Building;
     this.metroTileItem1.ImageIndent = new System.Drawing.Point(2, 10);
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "<font size=\"+7\"><br/>Empresa</font>";
     this.metroTileItem1.ThemeAware = true;
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem1.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleText = "Agregar nueva empresa";
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem3.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingLeft = 50;
     this.metroTileItem3.TitleText = "Solicitud de Apoyo";
     this.metroTileItem3.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingLeft = 50;
     this.metroTileItem2.TitleText = "Tipo de Actividad";
     this.metroTileItem2.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // Menu_Principal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background2;
     this.Controls.Add(this.itemPanel1);
     this.Name = "Menu_Principal";
     this.Size = new System.Drawing.Size(770, 732);
     this.Load += new System.EventHandler(this.Menu_Principal_Load);
     this.itemPanel1.ResumeLayout(false);
     this.usuarioResumen.ResumeLayout(false);
     this.usuarioResumen.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenUsuario)).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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Menu_Principal));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.listaCatalogos = new DevComponents.DotNetBar.ItemPanel();
     this.listCatFacultad = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatEdificios = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatDocentes = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatPeriodos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAsignaturaCategorias = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAsignaturas = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulaEstados = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulaTipos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulaTipoUsos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAulas = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatAlertaEstados = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listCatEquipos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listaAdministrador = new DevComponents.DotNetBar.ItemPanel();
     this.listAdmControlUsuarios = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.listAdmSync = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.usuarioResumen = new DevComponents.DotNetBar.PanelEx();
     this.lbCantidadNotificaciones = new DevComponents.DotNetBar.PanelEx();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.labelNombre = new System.Windows.Forms.Label();
     this.itemContainer6 = new DevComponents.DotNetBar.ItemContainer();
     this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
     this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
     this.btnCrearSerie = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnVerCalendario = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnReportes = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnCatalogos = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.btnAdministrador = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer2 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem2 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer3 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem7 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem9 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer4 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem11 = new DevComponents.DotNetBar.ButtonItem();
     this.labelItem4 = new DevComponents.DotNetBar.LabelItem();
     this.itemContainer5 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem12 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem13 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem14 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem15 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem19 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.metroTileItem1 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem3 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem2 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem4 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem6 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem7 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem8 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.bubbleButton2 = new DevComponents.DotNetBar.BubbleButton();
     this.balloonTip1 = new DevComponents.DotNetBar.BalloonTip();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.metroTileItem5 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.metroTileItem9 = new DevComponents.DotNetBar.Metro.MetroTileItem();
     this.itemPanel1.SuspendLayout();
     this.usuarioResumen.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Controls.Add(this.listaCatalogos);
     this.itemPanel1.Controls.Add(this.listaAdministrador);
     this.itemPanel1.Controls.Add(this.usuarioResumen);
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer6,
     this.itemContainer1});
     this.itemPanel1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.itemPanel1.Location = new System.Drawing.Point(3, 3);
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(735, 768);
     this.itemPanel1.TabIndex = 4;
     this.itemPanel1.Text = "itemPanel1";
     this.itemPanel1.ThemeAware = true;
     //
     // listaCatalogos
     //
     //
     //
     //
     this.listaCatalogos.BackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.listaCatalogos.BackgroundStyle.BackColorGradientAngle = 90;
     this.listaCatalogos.BackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.listaCatalogos.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderBottomWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.listaCatalogos.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderLeftWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderRightWidth = 1;
     this.listaCatalogos.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.listaCatalogos.BackgroundStyle.BorderTopWidth = 1;
     this.listaCatalogos.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaCatalogos.ContainerControlProcessDialogKey = true;
     this.listaCatalogos.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listCatFacultad,
     this.listCatEdificios,
     this.listCatDocentes,
     this.listCatPeriodos,
     this.listCatAsignaturaCategorias,
     this.listCatAsignaturas,
     this.listCatAulaEstados,
     this.listCatAulaTipos,
     this.listCatAulaTipoUsos,
     this.listCatAulas,
     this.listCatAlertaEstados,
     this.listCatEquipos});
     this.listaCatalogos.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaCatalogos.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.listaCatalogos.Location = new System.Drawing.Point(0, 424);
     this.listaCatalogos.Name = "listaCatalogos";
     this.listaCatalogos.Size = new System.Drawing.Size(230, 315);
     this.listaCatalogos.TabIndex = 8;
     this.listaCatalogos.Text = "itemPanel2";
     this.listaCatalogos.Visible = false;
     //
     // listCatFacultad
     //
     this.listCatFacultad.Name = "listCatFacultad";
     this.listCatFacultad.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatFacultad.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatFacultad.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatFacultad.TileStyle.PaddingLeft = 50;
     this.listCatFacultad.TitleText = "Facultades";
     this.listCatFacultad.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatFacultad.Click += new System.EventHandler(this.listCatFacultad_Click);
     //
     // listCatEdificios
     //
     this.listCatEdificios.Name = "listCatEdificios";
     this.listCatEdificios.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatEdificios.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatEdificios.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatEdificios.TileStyle.PaddingLeft = 50;
     this.listCatEdificios.TitleText = "Edificios";
     this.listCatEdificios.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatEdificios.Click += new System.EventHandler(this.listCatEdificios_Click);
     //
     // listCatDocentes
     //
     this.listCatDocentes.Name = "listCatDocentes";
     this.listCatDocentes.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatDocentes.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatDocentes.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatDocentes.TileStyle.PaddingLeft = 50;
     this.listCatDocentes.TitleText = "Docentes";
     this.listCatDocentes.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatDocentes.Click += new System.EventHandler(this.listCatDocentes_Click);
     //
     // listCatPeriodos
     //
     this.listCatPeriodos.Name = "listCatPeriodos";
     this.listCatPeriodos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatPeriodos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatPeriodos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatPeriodos.TileStyle.PaddingLeft = 50;
     this.listCatPeriodos.TitleText = "Periodos";
     this.listCatPeriodos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatPeriodos.Click += new System.EventHandler(this.listCatPeriodos_Click);
     //
     // listCatAsignaturaCategorias
     //
     this.listCatAsignaturaCategorias.Name = "listCatAsignaturaCategorias";
     this.listCatAsignaturaCategorias.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAsignaturaCategorias.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAsignaturaCategorias.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAsignaturaCategorias.TileStyle.PaddingLeft = 50;
     this.listCatAsignaturaCategorias.TitleText = "Categorias Asignatura";
     this.listCatAsignaturaCategorias.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAsignaturaCategorias.Click += new System.EventHandler(this.listCatAsignaturaCategorias_Click);
     //
     // listCatAsignaturas
     //
     this.listCatAsignaturas.Name = "listCatAsignaturas";
     this.listCatAsignaturas.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAsignaturas.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAsignaturas.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAsignaturas.TileStyle.PaddingLeft = 50;
     this.listCatAsignaturas.TitleText = "Asignaturas";
     this.listCatAsignaturas.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAsignaturas.Click += new System.EventHandler(this.listCatAsignaturas_Click);
     //
     // listCatAulaEstados
     //
     this.listCatAulaEstados.Name = "listCatAulaEstados";
     this.listCatAulaEstados.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulaEstados.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulaEstados.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulaEstados.TileStyle.PaddingLeft = 50;
     this.listCatAulaEstados.TitleText = "Aula Estados";
     this.listCatAulaEstados.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulaEstados.Click += new System.EventHandler(this.listCatAulaEstados_Click);
     //
     // listCatAulaTipos
     //
     this.listCatAulaTipos.Name = "listCatAulaTipos";
     this.listCatAulaTipos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulaTipos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulaTipos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulaTipos.TileStyle.PaddingLeft = 50;
     this.listCatAulaTipos.TitleText = "Aula Tipos";
     this.listCatAulaTipos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulaTipos.Click += new System.EventHandler(this.listCatAulaTipos_Click);
     //
     // listCatAulaTipoUsos
     //
     this.listCatAulaTipoUsos.Name = "listCatAulaTipoUsos";
     this.listCatAulaTipoUsos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulaTipoUsos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulaTipoUsos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulaTipoUsos.TileStyle.PaddingLeft = 50;
     this.listCatAulaTipoUsos.TitleText = "Aula Usos";
     this.listCatAulaTipoUsos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulaTipoUsos.Click += new System.EventHandler(this.listTipoActividad_Click);
     //
     // listCatAulas
     //
     this.listCatAulas.Name = "listCatAulas";
     this.listCatAulas.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAulas.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAulas.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAulas.TileStyle.PaddingLeft = 50;
     this.listCatAulas.TitleText = "Aulas";
     this.listCatAulas.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAulas.Click += new System.EventHandler(this.listCatAulas_Click);
     //
     // listCatAlertaEstados
     //
     this.listCatAlertaEstados.Name = "listCatAlertaEstados";
     this.listCatAlertaEstados.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatAlertaEstados.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatAlertaEstados.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatAlertaEstados.TileStyle.PaddingLeft = 50;
     this.listCatAlertaEstados.TitleText = "Alerta Estados";
     this.listCatAlertaEstados.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatAlertaEstados.Click += new System.EventHandler(this.listCatAlertaEstados_Click);
     //
     // listCatEquipos
     //
     this.listCatEquipos.Name = "listCatEquipos";
     this.listCatEquipos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.listCatEquipos.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listCatEquipos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listCatEquipos.TileStyle.PaddingLeft = 50;
     this.listCatEquipos.TitleText = "Equipos";
     this.listCatEquipos.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listCatEquipos.Click += new System.EventHandler(this.listCatEquipos_Click);
     //
     // listaAdministrador
     //
     this.listaAdministrador.BackColor = System.Drawing.Color.Maroon;
     //
     //
     //
     this.listaAdministrador.BackgroundStyle.Class = "ItemPanel";
     this.listaAdministrador.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listaAdministrador.ContainerControlProcessDialogKey = true;
     this.listaAdministrador.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.listAdmControlUsuarios,
     this.listAdmSync});
     this.listaAdministrador.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.listaAdministrador.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.listaAdministrador.Location = new System.Drawing.Point(250, 506);
     this.listaAdministrador.Name = "listaAdministrador";
     this.listaAdministrador.Size = new System.Drawing.Size(230, 60);
     this.listaAdministrador.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.listaAdministrador.TabIndex = 7;
     this.listaAdministrador.Text = "itemPanel2";
     this.listaAdministrador.Visible = false;
     //
     // listAdmControlUsuarios
     //
     this.listAdmControlUsuarios.Name = "listAdmControlUsuarios";
     this.listAdmControlUsuarios.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmControlUsuarios.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmControlUsuarios.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmControlUsuarios.TileStyle.PaddingLeft = 50;
     this.listAdmControlUsuarios.TitleText = "Control Usuarios";
     this.listAdmControlUsuarios.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmControlUsuarios.Click += new System.EventHandler(this.metroTileItem2_Click);
     //
     // listAdmSync
     //
     this.listAdmSync.Name = "listAdmSync";
     this.listAdmSync.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.listAdmSync.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.listAdmSync.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listAdmSync.TileStyle.PaddingLeft = 50;
     this.listAdmSync.TitleText = "Sincronizar con Class";
     this.listAdmSync.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     this.listAdmSync.Click += new System.EventHandler(this.listAdmSync_Click);
     //
     // usuarioResumen
     //
     this.usuarioResumen.CanvasColor = System.Drawing.SystemColors.Control;
     this.usuarioResumen.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.usuarioResumen.Controls.Add(this.lbCantidadNotificaciones);
     this.usuarioResumen.Controls.Add(this.pictureBox1);
     this.usuarioResumen.Controls.Add(this.labelNombre);
     this.usuarioResumen.Location = new System.Drawing.Point(2, 1);
     this.usuarioResumen.Name = "usuarioResumen";
     this.usuarioResumen.Size = new System.Drawing.Size(728, 245);
     this.usuarioResumen.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.usuarioResumen.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.usuarioResumen.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.usuarioResumen.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.usuarioResumen.Style.GradientAngle = 90;
     this.usuarioResumen.Style.MarginBottom = 10;
     this.usuarioResumen.Style.MarginRight = 30;
     this.usuarioResumen.TabIndex = 5;
     this.usuarioResumen.Click += new System.EventHandler(this.usuarioResumen_Click);
     //
     // lbCantidadNotificaciones
     //
     this.balloonTip1.SetBalloonCaption(this.lbCantidadNotificaciones, "Notificaciones");
     this.lbCantidadNotificaciones.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.lbCantidadNotificaciones.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.lbCantidadNotificaciones.Cursor = System.Windows.Forms.Cursors.Hand;
     this.lbCantidadNotificaciones.Location = new System.Drawing.Point(577, 43);
     this.lbCantidadNotificaciones.Name = "lbCantidadNotificaciones";
     this.lbCantidadNotificaciones.Padding = new System.Windows.Forms.Padding(30, 0, 0, 0);
     this.lbCantidadNotificaciones.Size = new System.Drawing.Size(102, 71);
     this.lbCantidadNotificaciones.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.lbCantidadNotificaciones.Style.BackColor1.Color = System.Drawing.Color.White;
     this.lbCantidadNotificaciones.Style.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources._1356008196_communication;
     this.lbCantidadNotificaciones.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.TopLeft;
     this.lbCantidadNotificaciones.Style.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.lbCantidadNotificaciones.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.lbCantidadNotificaciones.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.lbCantidadNotificaciones.Style.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbCantidadNotificaciones.Style.ForeColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.lbCantidadNotificaciones.Style.GradientAngle = 90;
     this.lbCantidadNotificaciones.Style.LineAlignment = System.Drawing.StringAlignment.Far;
     this.lbCantidadNotificaciones.Style.MarginBottom = 10;
     this.lbCantidadNotificaciones.Style.MarginLeft = 40;
     this.lbCantidadNotificaciones.StyleMouseDown.Alignment = System.Drawing.StringAlignment.Center;
     this.lbCantidadNotificaciones.StyleMouseDown.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground;
     this.lbCantidadNotificaciones.StyleMouseDown.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBorder;
     this.lbCantidadNotificaciones.StyleMouseDown.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedText;
     this.lbCantidadNotificaciones.StyleMouseOver.Alignment = System.Drawing.StringAlignment.Center;
     this.lbCantidadNotificaciones.StyleMouseOver.BackColor1.Color = System.Drawing.Color.Transparent;
     this.lbCantidadNotificaciones.StyleMouseOver.BackColor2.Color = System.Drawing.Color.White;
     this.lbCantidadNotificaciones.StyleMouseOver.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources._1356008196_communication;
     this.lbCantidadNotificaciones.StyleMouseOver.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.TopLeft;
     this.lbCantidadNotificaciones.StyleMouseOver.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbCantidadNotificaciones.StyleMouseOver.BorderDashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
     this.lbCantidadNotificaciones.StyleMouseOver.BorderWidth = 3;
     this.lbCantidadNotificaciones.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Diagonal;
     this.lbCantidadNotificaciones.StyleMouseOver.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemHotText;
     this.lbCantidadNotificaciones.StyleMouseOver.MarginBottom = 10;
     this.lbCantidadNotificaciones.StyleMouseOver.MarginLeft = 40;
     this.lbCantidadNotificaciones.TabIndex = 5;
     this.lbCantidadNotificaciones.Text = "0";
     this.lbCantidadNotificaciones.Click += new System.EventHandler(this.lbCantidadNotificaciones_Click_1);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::Control_Aulas_UAM.Properties.Resources.UAM_logo;
     this.pictureBox1.Location = new System.Drawing.Point(275, 13);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(190, 178);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // labelNombre
     //
     this.labelNombre.AutoSize = true;
     this.labelNombre.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelNombre.ForeColor = System.Drawing.Color.Black;
     this.labelNombre.Location = new System.Drawing.Point(319, 213);
     this.labelNombre.Name = "labelNombre";
     this.labelNombre.Size = new System.Drawing.Size(104, 18);
     this.labelNombre.TabIndex = 1;
     this.labelNombre.Text = "Bienvenido";
     //
     // itemContainer6
     //
     //
     //
     //
     this.itemContainer6.BackgroundStyle.BackColor = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackColor2 = System.Drawing.Color.Transparent;
     this.itemContainer6.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer6.Name = "itemContainer6";
     this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.controlContainerItem1});
     this.itemContainer6.ThemeAware = true;
     //
     //
     //
     this.itemContainer6.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // controlContainerItem1
     //
     this.controlContainerItem1.AllowItemResize = false;
     this.controlContainerItem1.Control = this.usuarioResumen;
     this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.controlContainerItem1.Name = "controlContainerItem1";
     this.controlContainerItem1.ThemeAware = true;
     //
     // itemContainer1
     //
     //
     //
     //
     this.itemContainer1.BackgroundStyle.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.Tile;
     this.itemContainer1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderBottomColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderColor = System.Drawing.SystemColors.ActiveCaption;
     this.itemContainer1.BackgroundStyle.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.itemContainer1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1.ItemSpacing = 20;
     this.itemContainer1.MinimumSize = new System.Drawing.Size(732, 240);
     this.itemContainer1.MultiLine = true;
     this.itemContainer1.Name = "itemContainer1";
     this.itemContainer1.ResizeItemsToFit = false;
     this.itemContainer1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnCrearSerie,
     this.btnVerCalendario,
     this.btnReportes,
     this.btnCatalogos,
     this.btnAdministrador});
     this.itemContainer1.ThemeAware = true;
     //
     //
     //
     this.itemContainer1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnCrearSerie
     //
     this.btnCrearSerie.DisabledBackColor = System.Drawing.Color.Transparent;
     this.btnCrearSerie.Name = "btnCrearSerie";
     this.btnCrearSerie.Text = "<font size=\"+7\"><br/>Asignar Local</font>";
     this.btnCrearSerie.ThemeAware = true;
     this.btnCrearSerie.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     this.btnCrearSerie.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnCrearSerie.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(83)))), ((int)(((byte)(117)))));
     this.btnCrearSerie.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(103)))), ((int)(((byte)(155)))));
     this.btnCrearSerie.TileStyle.BackColorGradientAngle = 45;
     this.btnCrearSerie.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnCrearSerie.TileStyle.PaddingBottom = 4;
     this.btnCrearSerie.TileStyle.PaddingLeft = 4;
     this.btnCrearSerie.TileStyle.PaddingRight = 4;
     this.btnCrearSerie.TileStyle.PaddingTop = 4;
     this.btnCrearSerie.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnCrearSerie.TitleText = "Crear una asignación de Local";
     this.btnCrearSerie.Visible = false;
     this.btnCrearSerie.Click += new System.EventHandler(this.btnCrearSerie_Click);
     //
     // btnVerCalendario
     //
     this.btnVerCalendario.Name = "btnVerCalendario";
     this.btnVerCalendario.Text = "<font size=\"+7\"><br/>Horario por Aula</font>";
     this.btnVerCalendario.ThemeAware = true;
     this.btnVerCalendario.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.btnVerCalendario.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnVerCalendario.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.btnVerCalendario.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.btnVerCalendario.TileStyle.BackColorGradientAngle = 45;
     this.btnVerCalendario.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnVerCalendario.TileStyle.PaddingBottom = 4;
     this.btnVerCalendario.TileStyle.PaddingLeft = 4;
     this.btnVerCalendario.TileStyle.PaddingRight = 4;
     this.btnVerCalendario.TileStyle.PaddingTop = 4;
     this.btnVerCalendario.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnVerCalendario.TitleText = "Ver los horarios de las Aulas";
     this.btnVerCalendario.Click += new System.EventHandler(this.btnVerCalendario_Click);
     //
     // btnReportes
     //
     this.btnReportes.Name = "btnReportes";
     this.btnReportes.Text = "<font size=\"+7\"><br/>Reportes </font>";
     this.btnReportes.ThemeAware = true;
     this.btnReportes.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Orange;
     this.btnReportes.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnReportes.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(131)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(232)))), ((int)(((byte)(136)))), ((int)(((byte)(0)))));
     this.btnReportes.TileStyle.BackColorGradientAngle = 45;
     this.btnReportes.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnReportes.TileStyle.PaddingBottom = 4;
     this.btnReportes.TileStyle.PaddingLeft = 4;
     this.btnReportes.TileStyle.PaddingRight = 4;
     this.btnReportes.TileStyle.PaddingTop = 4;
     this.btnReportes.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnReportes.TitleText = "Reportes Generales";
     //
     // btnCatalogos
     //
     this.btnCatalogos.Name = "btnCatalogos";
     this.btnCatalogos.Text = "<font size=\"+7\">Catálogos</font>";
     this.btnCatalogos.ThemeAware = true;
     this.btnCatalogos.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.btnCatalogos.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnCatalogos.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(118)))), ((int)(((byte)(85)))), ((int)(((byte)(148)))));
     this.btnCatalogos.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(98)))), ((int)(((byte)(185)))));
     this.btnCatalogos.TileStyle.BackColorGradientAngle = 45;
     this.btnCatalogos.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnCatalogos.TileStyle.PaddingBottom = 4;
     this.btnCatalogos.TileStyle.PaddingLeft = 4;
     this.btnCatalogos.TileStyle.PaddingRight = 4;
     this.btnCatalogos.TileStyle.PaddingTop = 4;
     this.btnCatalogos.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnCatalogos.TitleText = "Vista de lectura de catálogos";
     this.btnCatalogos.Click += new System.EventHandler(this.btnCatalogos_Click);
     //
     // btnAdministrador
     //
     this.btnAdministrador.Name = "btnAdministrador";
     this.btnAdministrador.Text = "<font size=\"+7\"><br/>Administración</font>";
     this.btnAdministrador.ThemeAware = true;
     this.btnAdministrador.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.btnAdministrador.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.btnAdministrador.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(115)))), ((int)(((byte)(76)))), ((int)(((byte)(41)))));
     this.btnAdministrador.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(67)))), ((int)(((byte)(37)))));
     this.btnAdministrador.TileStyle.BackColorGradientAngle = 45;
     this.btnAdministrador.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.btnAdministrador.TileStyle.PaddingBottom = 4;
     this.btnAdministrador.TileStyle.PaddingLeft = 4;
     this.btnAdministrador.TileStyle.PaddingRight = 4;
     this.btnAdministrador.TileStyle.PaddingTop = 4;
     this.btnAdministrador.TileStyle.TextColor = System.Drawing.Color.White;
     this.btnAdministrador.TileStyle.TextShadowColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.btnAdministrador.TitleText = "Vista de Administrador";
     this.btnAdministrador.Visible = false;
     this.btnAdministrador.Click += new System.EventHandler(this.btnAdministrador_Click);
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 1;
     this.labelItem1.PaddingTop = 1;
     this.labelItem1.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem1.Text = "Stock";
     //
     // itemContainer2
     //
     //
     //
     //
     this.itemContainer2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer2.Name = "itemContainer2";
     this.itemContainer2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2,
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem5});
     //
     //
     //
     this.itemContainer2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem2
     //
     this.buttonItem2.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem2.Image")));
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "Stock-Line";
     //
     // buttonItem3
     //
     this.buttonItem3.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem3.Image")));
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "Stock Line 2";
     //
     // buttonItem4
     //
     this.buttonItem4.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem4.Image")));
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "Stock Line 3";
     //
     // buttonItem5
     //
     this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image")));
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.Text = "Stock Line 4";
     //
     // labelItem2
     //
     this.labelItem2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem2.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem2.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem2.Name = "labelItem2";
     this.labelItem2.PaddingBottom = 1;
     this.labelItem2.PaddingTop = 1;
     this.labelItem2.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem2.Text = "Surface";
     //
     // itemContainer3
     //
     //
     //
     //
     this.itemContainer3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer3.Name = "itemContainer3";
     this.itemContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem6,
     this.buttonItem7,
     this.buttonItem8,
     this.buttonItem9});
     //
     //
     //
     this.itemContainer3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem6
     //
     this.buttonItem6.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem6.Image")));
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.Text = "Surface Graph 1";
     //
     // buttonItem7
     //
     this.buttonItem7.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem7.Image")));
     this.buttonItem7.Name = "buttonItem7";
     this.buttonItem7.Text = "Surface Graph 2";
     //
     // buttonItem8
     //
     this.buttonItem8.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem8.Image")));
     this.buttonItem8.Name = "buttonItem8";
     this.buttonItem8.Text = "Surface Graph 3";
     //
     // buttonItem9
     //
     this.buttonItem9.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem9.Image")));
     this.buttonItem9.Name = "buttonItem9";
     this.buttonItem9.Text = "Surface Graph 4";
     //
     // labelItem3
     //
     this.labelItem3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem3.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem3.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem3.Name = "labelItem3";
     this.labelItem3.PaddingBottom = 1;
     this.labelItem3.PaddingTop = 1;
     this.labelItem3.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem3.Text = "Doughnut";
     //
     // itemContainer4
     //
     //
     //
     //
     this.itemContainer4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer4.Name = "itemContainer4";
     this.itemContainer4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem10,
     this.buttonItem11});
     //
     //
     //
     this.itemContainer4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem10
     //
     this.buttonItem10.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem10.Image")));
     this.buttonItem10.Name = "buttonItem10";
     this.buttonItem10.Text = "Doughnut Graph 1";
     //
     // buttonItem11
     //
     this.buttonItem11.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem11.Image")));
     this.buttonItem11.Name = "buttonItem11";
     this.buttonItem11.Text = "Doughnut Graph 2";
     //
     // labelItem4
     //
     this.labelItem4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(228)))), ((int)(((byte)(236)))));
     this.labelItem4.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem4.BorderType = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.labelItem4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(15)))), ((int)(((byte)(99)))));
     this.labelItem4.Name = "labelItem4";
     this.labelItem4.PaddingBottom = 1;
     this.labelItem4.PaddingTop = 1;
     this.labelItem4.SingleLineColor = System.Drawing.Color.DarkGray;
     this.labelItem4.Text = "Bubble";
     //
     // itemContainer5
     //
     //
     //
     //
     this.itemContainer5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer5.Name = "itemContainer5";
     this.itemContainer5.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem12,
     this.buttonItem13});
     //
     //
     //
     this.itemContainer5.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem12
     //
     this.buttonItem12.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem12.Image")));
     this.buttonItem12.Name = "buttonItem12";
     this.buttonItem12.Text = "Bubble Graph 1";
     //
     // buttonItem13
     //
     this.buttonItem13.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem13.Image")));
     this.buttonItem13.Name = "buttonItem13";
     this.buttonItem13.Text = "Bubble Graph 2";
     //
     // buttonItem14
     //
     this.buttonItem14.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem14.Image")));
     this.buttonItem14.Name = "buttonItem14";
     this.buttonItem14.Text = "buttonItem14";
     //
     // buttonItem15
     //
     this.buttonItem15.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem15.Image")));
     this.buttonItem15.Name = "buttonItem15";
     this.buttonItem15.Text = "buttonItem15";
     //
     // buttonItem16
     //
     this.buttonItem16.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem16.Image")));
     this.buttonItem16.Name = "buttonItem16";
     this.buttonItem16.Text = "buttonItem16";
     //
     // buttonItem17
     //
     this.buttonItem17.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem17.Image")));
     this.buttonItem17.Name = "buttonItem17";
     this.buttonItem17.Text = "buttonItem17";
     //
     // buttonItem18
     //
     this.buttonItem18.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem18.Image")));
     this.buttonItem18.Name = "buttonItem18";
     this.buttonItem18.Text = "buttonItem18";
     //
     // buttonItem19
     //
     this.buttonItem19.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem19.Image")));
     this.buttonItem19.Name = "buttonItem19";
     this.buttonItem19.Text = "buttonItem19";
     //
     // buttonItem20
     //
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.Text = "buttonItem20";
     //
     // buttonItem21
     //
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.Text = "buttonItem21";
     //
     // buttonItem22
     //
     this.buttonItem22.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem22.Image")));
     this.buttonItem22.Name = "buttonItem22";
     this.buttonItem22.Text = "buttonItem22";
     //
     // buttonItem23
     //
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.Text = "buttonItem23";
     //
     // buttonItem24
     //
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.Text = "buttonItem24";
     //
     // buttonItem25
     //
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.Text = "buttonItem25";
     //
     // metroTileItem1
     //
     this.metroTileItem1.Name = "metroTileItem1";
     this.metroTileItem1.Text = "<font size=\"+7\"><br/>Empresa</font>";
     this.metroTileItem1.ThemeAware = true;
     this.metroTileItem1.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Green;
     this.metroTileItem1.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.metroTileItem1.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(151)))), ((int)(((byte)(42)))));
     this.metroTileItem1.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(152)))), ((int)(((byte)(177)))), ((int)(((byte)(51)))));
     this.metroTileItem1.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem1.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem1.TileStyle.PaddingBottom = 4;
     this.metroTileItem1.TileStyle.PaddingLeft = 4;
     this.metroTileItem1.TileStyle.PaddingRight = 4;
     this.metroTileItem1.TileStyle.PaddingTop = 4;
     this.metroTileItem1.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem1.TitleText = "Agregar nueva empresa";
     //
     // metroTileItem3
     //
     this.metroTileItem3.Name = "metroTileItem3";
     this.metroTileItem3.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem3.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem3.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem3.TileStyle.PaddingLeft = 50;
     this.metroTileItem3.TitleText = "Solicitud de Apoyo";
     this.metroTileItem3.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem2
     //
     this.metroTileItem2.Name = "metroTileItem2";
     this.metroTileItem2.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem2.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem2.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem2.TileStyle.PaddingLeft = 50;
     this.metroTileItem2.TitleText = "Tipo de Actividad";
     this.metroTileItem2.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem4
     //
     this.metroTileItem4.Name = "metroTileItem4";
     this.metroTileItem4.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Magenta;
     this.metroTileItem4.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem4.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem4.TileStyle.PaddingLeft = 50;
     this.metroTileItem4.TitleText = "Aula Usos";
     this.metroTileItem4.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem6
     //
     this.metroTileItem6.Image = ((System.Drawing.Image)(resources.GetObject("metroTileItem6.Image")));
     this.metroTileItem6.Name = "metroTileItem6";
     this.metroTileItem6.Text = "<font size=\"+7\"><br/>5</font>";
     this.metroTileItem6.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem6.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // metroTileItem7
     //
     this.metroTileItem7.Image = ((System.Drawing.Image)(resources.GetObject("metroTileItem7.Image")));
     this.metroTileItem7.Name = "metroTileItem7";
     this.metroTileItem7.Text = "<font size=\"+7\"><br/>5</font>";
     this.metroTileItem7.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Default;
     //
     //
     //
     this.metroTileItem7.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // metroTileItem8
     //
     this.metroTileItem8.Name = "metroTileItem8";
     this.metroTileItem8.Text = "<font size=\"+7\">Buscar</font><br/>";
     this.metroTileItem8.ThemeAware = true;
     this.metroTileItem8.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.RedOrange;
     this.metroTileItem8.TileSize = new System.Drawing.Size(230, 120);
     //
     //
     //
     this.metroTileItem8.TileStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(60)))), ((int)(((byte)(0)))));
     this.metroTileItem8.TileStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(57)))), ((int)(((byte)(0)))));
     this.metroTileItem8.TileStyle.BackColorGradientAngle = 45;
     this.metroTileItem8.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem8.TileStyle.PaddingBottom = 4;
     this.metroTileItem8.TileStyle.PaddingLeft = 4;
     this.metroTileItem8.TileStyle.PaddingRight = 4;
     this.metroTileItem8.TileStyle.PaddingTop = 4;
     this.metroTileItem8.TileStyle.TextColor = System.Drawing.Color.White;
     this.metroTileItem8.TitleText = "Busquedas según criterios varios";
     //
     // bubbleButton2
     //
     this.bubbleButton2.Name = "bubbleButton2";
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Interval = 5000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // metroTileItem5
     //
     this.metroTileItem5.Name = "metroTileItem5";
     this.metroTileItem5.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.metroTileItem5.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem5.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem5.TileStyle.PaddingLeft = 50;
     this.metroTileItem5.TitleText = "Control Usuarios";
     this.metroTileItem5.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // metroTileItem9
     //
     this.metroTileItem9.Name = "metroTileItem9";
     this.metroTileItem9.TileColor = DevComponents.DotNetBar.Metro.eMetroTileColor.Coffee;
     this.metroTileItem9.TileSize = new System.Drawing.Size(180, 25);
     //
     //
     //
     this.metroTileItem9.TileStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.metroTileItem9.TileStyle.PaddingLeft = 50;
     this.metroTileItem9.TitleText = "Control Usuarios";
     this.metroTileItem9.TitleTextAlignment = System.Drawing.ContentAlignment.TopCenter;
     //
     // Menu_Principal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.BackgroundImage = global::Control_Aulas_UAM.Properties.Resources.form_background2;
     this.Controls.Add(this.itemPanel1);
     this.Name = "Menu_Principal";
     this.Size = new System.Drawing.Size(745, 807);
     this.Load += new System.EventHandler(this.Menu_Principal_Load);
     this.itemPanel1.ResumeLayout(false);
     this.usuarioResumen.ResumeLayout(false);
     this.usuarioResumen.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).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()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_RegistroVentas));
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.gpoReferencia = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.fechaRefer = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.labelX8 = new DevComponents.DotNetBar.LabelX();
            this.cboTipdocref = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem13 = new DevComponents.Editors.ComboItem();
            this.comboItem14 = new DevComponents.Editors.ComboItem();
            this.labelX7 = new DevComponents.DotNetBar.LabelX();
            this.labelX6 = new DevComponents.DotNetBar.LabelX();
            this.labelX5 = new DevComponents.DotNetBar.LabelX();
            this.txtSerieref = new System.Windows.Forms.TextBox();
            this.txtNumeroref = new System.Windows.Forms.TextBox();
            this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.btnDatadic = new DevComponents.DotNetBar.ButtonX();
            this.fecVenc = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.fRegistro = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.cboTipoexportacion = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem17 = new DevComponents.Editors.ComboItem();
            this.comboItem18 = new DevComponents.Editors.ComboItem();
            this.cboDestinoigv = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem11 = new DevComponents.Editors.ComboItem();
            this.comboItem12 = new DevComponents.Editors.ComboItem();
            this.cboMoneda = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem9 = new DevComponents.Editors.ComboItem();
            this.comboItem10 = new DevComponents.Editors.ComboItem();
            this.cboServicio = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem7 = new DevComponents.Editors.ComboItem();
            this.comboItem8 = new DevComponents.Editors.ComboItem();
            this.cboTipdoc = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem5 = new DevComponents.Editors.ComboItem();
            this.comboItem6 = new DevComponents.Editors.ComboItem();
            this.labelX23 = new DevComponents.DotNetBar.LabelX();
            this.labelX22 = new DevComponents.DotNetBar.LabelX();
            this.labelX21 = new DevComponents.DotNetBar.LabelX();
            this.labelX20 = new DevComponents.DotNetBar.LabelX();
            this.labelX19 = new DevComponents.DotNetBar.LabelX();
            this.labelX18 = new DevComponents.DotNetBar.LabelX();
            this.labelX17 = new DevComponents.DotNetBar.LabelX();
            this.labelX16 = new DevComponents.DotNetBar.LabelX();
            this.labelX15 = new DevComponents.DotNetBar.LabelX();
            this.labelX14 = new DevComponents.DotNetBar.LabelX();
            this.labelX13 = new DevComponents.DotNetBar.LabelX();
            this.labelX12 = new DevComponents.DotNetBar.LabelX();
            this.labelX11 = new DevComponents.DotNetBar.LabelX();
            this.labelX10 = new DevComponents.DotNetBar.LabelX();
            this.labelX9 = new DevComponents.DotNetBar.LabelX();
            this.grpdua = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.adufRegularizacion = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.adufEmbarque = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.cboAduana = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem15 = new DevComponents.Editors.ComboItem();
            this.comboItem16 = new DevComponents.Editors.ComboItem();
            this.labelX29 = new DevComponents.DotNetBar.LabelX();
            this.labelX28 = new DevComponents.DotNetBar.LabelX();
            this.labelX27 = new DevComponents.DotNetBar.LabelX();
            this.labelX26 = new DevComponents.DotNetBar.LabelX();
            this.labelX25 = new DevComponents.DotNetBar.LabelX();
            this.labelX24 = new DevComponents.DotNetBar.LabelX();
            this.aduValorfob = new System.Windows.Forms.TextBox();
            this.aduPeriodo = new System.Windows.Forms.TextBox();
            this.aduCorrelativo = new System.Windows.Forms.TextBox();
            this.txtNumFin = new System.Windows.Forms.TextBox();
            this.chkRetencion = new System.Windows.Forms.CheckBox();
            this.chkIncluye = new System.Windows.Forms.CheckBox();
            this.chkAfecto = new System.Windows.Forms.CheckBox();
            this.lblTipoventa = new System.Windows.Forms.TextBox();
            this.txtGlosa = new System.Windows.Forms.TextBox();
            this.txtCtadetrac = new System.Windows.Forms.TextBox();
            this.txtRuc = new System.Windows.Forms.TextBox();
            this.txtCtactename = new System.Windows.Forms.TextBox();
            this.txtPorcdet = new System.Windows.Forms.TextBox();
            this.txtSerie = new System.Windows.Forms.TextBox();
            this.txtTipoventa = new System.Windows.Forms.TextBox();
            this.txtNumero = new System.Windows.Forms.TextBox();
            this.Label29 = new System.Windows.Forms.Label();
            this.txtTipocambio = new System.Windows.Forms.TextBox();
            this.txtNumeroorden = new System.Windows.Forms.TextBox();
            this.chkDuplicar = new System.Windows.Forms.CheckBox();
            this.txtDescripcampo = new System.Windows.Forms.TextBox();
            this.GridExaminar = new System.Windows.Forms.DataGridView();
            this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.rubroid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.drubro = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.numpedido = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tallacolor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.unidmedidaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.afectoigvid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.bruto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.valorventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.igvo = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.COL_OBS = new System.Windows.Forms.DataGridViewButtonColumn();
            this.tipguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.serguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.numguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.lblAnulado = new System.Windows.Forms.Label();
            this.txtMes = new System.Windows.Forms.TextBox();
            this.txtAsiento = new System.Windows.Forms.TextBox();
            this.txtDctos = new System.Windows.Forms.TextBox();
            this.txtValor = new System.Windows.Forms.TextBox();
            this.txtPigv = new System.Windows.Forms.TextBox();
            this.txtTotal = new System.Windows.Forms.TextBox();
            this.txtIgv = new System.Windows.Forms.TextBox();
            this.txtVenta = new System.Windows.Forms.TextBox();
            this.lblMoneda = new System.Windows.Forms.Label();
            this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.cboSubdiario = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem3 = new DevComponents.Editors.ComboItem();
            this.comboItem4 = new DevComponents.Editors.ComboItem();
            this.labelX2 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX4 = new DevComponents.DotNetBar.LabelX();
            this.labelX3 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.chkActivo = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.cboOrigen = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem1 = new DevComponents.Editors.ComboItem();
            this.comboItem2 = new DevComponents.Editors.ComboItem();
            this.labelX1 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX35 = new DevComponents.DotNetBar.LabelX();
            this.labelX34 = new DevComponents.DotNetBar.LabelX();
            this.labelX33 = new DevComponents.DotNetBar.LabelX();
            this.labelX32 = new DevComponents.DotNetBar.LabelX();
            this.labelX31 = new DevComponents.DotNetBar.LabelX();
            this.labelX30 = new DevComponents.DotNetBar.LabelX();

            this.gbtnCompras = new DevComponents.DotNetBar.Bar();
            this.btnNew = new DevComponents.DotNetBar.ButtonItem();
            this.btnEdit = new DevComponents.DotNetBar.ButtonItem();
            this.btnSave = new DevComponents.DotNetBar.ButtonItem();
            this.btnRetro = new DevComponents.DotNetBar.ButtonItem();
            this.btnDelete = new DevComponents.DotNetBar.ButtonItem();
            this.btnPrint = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
            this.btnLog = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
            this.btnBusqueda = new DevComponents.DotNetBar.ButtonItem();
            this.btnSeekdoc = new DevComponents.DotNetBar.ButtonItem();
            this.btnAddfila = new DevComponents.DotNetBar.ButtonItem();
            this.btnDelfila = new DevComponents.DotNetBar.ButtonItem();
            this.btnActtipocambio = new DevComponents.DotNetBar.ButtonItem();
            this.btnProvfactura = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
            this.btnInicial = new DevComponents.DotNetBar.ButtonItem();
            this.btnAnterior = new DevComponents.DotNetBar.ButtonItem();
            this.btnSiguiente = new DevComponents.DotNetBar.ButtonItem();
            this.btnUltimo = new DevComponents.DotNetBar.ButtonItem();
            this.btnExit = new DevComponents.DotNetBar.ButtonItem();
            this.lblUsuar = new DevComponents.DotNetBar.LabelX();
            this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
            this.gpoReferencia.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fechaRefer)).BeginInit();
            this.groupPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fecVenc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fRegistro)).BeginInit();
            this.grpdua.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.adufRegularizacion)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adufEmbarque)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).BeginInit();
            this.groupPanel1.SuspendLayout();
            this.groupPanel2.SuspendLayout();
            this.groupPanel3.SuspendLayout();
            this.groupPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gbtnCompras)).BeginInit();
            this.SuspendLayout();
            //
            // gpoReferencia
            //
            this.gpoReferencia.CanvasColor = System.Drawing.SystemColors.Control;
            this.gpoReferencia.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.gpoReferencia.Controls.Add(this.fechaRefer);
            this.gpoReferencia.Controls.Add(this.labelX8);
            this.gpoReferencia.Controls.Add(this.cboTipdocref);
            this.gpoReferencia.Controls.Add(this.labelX7);
            this.gpoReferencia.Controls.Add(this.labelX6);
            this.gpoReferencia.Controls.Add(this.labelX5);
            this.gpoReferencia.Controls.Add(this.txtSerieref);
            this.gpoReferencia.Controls.Add(this.txtNumeroref);
            this.gpoReferencia.DisabledBackColor = System.Drawing.Color.Empty;
            this.gpoReferencia.Location = new System.Drawing.Point(629, 5);
            this.gpoReferencia.Name = "gpoReferencia";
            this.gpoReferencia.Size = new System.Drawing.Size(367, 43);
            //
            //
            //
            this.gpoReferencia.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.gpoReferencia.Style.BackColorGradientAngle = 90;
            this.gpoReferencia.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.gpoReferencia.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderBottomWidth = 1;
            this.gpoReferencia.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.gpoReferencia.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderLeftWidth = 1;
            this.gpoReferencia.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderRightWidth = 1;
            this.gpoReferencia.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderTopWidth = 1;
            this.gpoReferencia.Style.CornerDiameter = 4;
            this.gpoReferencia.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.gpoReferencia.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.gpoReferencia.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.gpoReferencia.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.gpoReferencia.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.gpoReferencia.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.gpoReferencia.TabIndex = 40;
            this.toolTip.SetToolTip(this.gpoReferencia, "Referencia");
            //
            //
            //
            this.fechaRefer.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fechaRefer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.ButtonClear.Tooltip = "";
            this.fechaRefer.ButtonCustom.Tooltip = "";
            this.fechaRefer.ButtonCustom2.Tooltip = "";
            this.fechaRefer.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fechaRefer.ButtonDropDown.Tooltip = "";
            this.fechaRefer.ButtonDropDown.Visible = true;
            this.fechaRefer.ButtonFreeText.Tooltip = "";
            this.fechaRefer.IsPopupCalendarOpen = false;
            this.fechaRefer.Location = new System.Drawing.Point(258, 15);
            //
            //
            //
            this.fechaRefer.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fechaRefer.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fechaRefer.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fechaRefer.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.TodayButtonVisible = true;
            this.fechaRefer.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fechaRefer.Name = "fechaRefer";
            this.fechaRefer.ShowCheckBox = true;
            this.fechaRefer.Size = new System.Drawing.Size(98, 20);
            this.fechaRefer.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fechaRefer.TabIndex = 62;
            this.fechaRefer.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            this.fechaRefer.ValueChanged += new System.EventHandler(this.fechaRefer_ValueChanged);
            //
            // labelX8
            //
            this.labelX8.AutoSize = true;
            this.labelX8.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX8.Location = new System.Drawing.Point(264, -1);
            this.labelX8.Name = "labelX8";
            this.labelX8.Size = new System.Drawing.Size(52, 15);
            this.labelX8.TabIndex = 46;
            this.labelX8.Text = "F.Emisión";
            //
            // cboTipdocref
            //
            this.cboTipdocref.DisplayMember = "Text";
            this.cboTipdocref.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipdocref.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipdocref.FormattingEnabled = true;
            this.cboTipdocref.ItemHeight = 14;
            this.cboTipdocref.Items.AddRange(new object[] {
            this.comboItem13,
            this.comboItem14});
            this.cboTipdocref.Location = new System.Drawing.Point(3, 15);
            this.cboTipdocref.Name = "cboTipdocref";
            this.cboTipdocref.Size = new System.Drawing.Size(141, 20);
            this.cboTipdocref.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipdocref.TabIndex = 48;
            //
            // comboItem13
            //
            this.comboItem13.Text = "01-Venta Interna";
            this.comboItem13.Value = "01";
            //
            // comboItem14
            //
            this.comboItem14.Text = "02-Venta Externa";
            this.comboItem14.Value = "02";
            //
            // labelX7
            //
            this.labelX7.AutoSize = true;
            this.labelX7.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX7.Location = new System.Drawing.Point(190, -1);
            this.labelX7.Name = "labelX7";
            this.labelX7.Size = new System.Drawing.Size(42, 15);
            this.labelX7.TabIndex = 45;
            this.labelX7.Text = "Número";
            //
            // labelX6
            //
            this.labelX6.AutoSize = true;
            this.labelX6.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX6.Location = new System.Drawing.Point(150, 0);
            this.labelX6.Name = "labelX6";
            this.labelX6.Size = new System.Drawing.Size(28, 15);
            this.labelX6.TabIndex = 44;
            this.labelX6.Text = "Serie";
            //
            // labelX5
            //
            this.labelX5.AutoSize = true;
            this.labelX5.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX5.Location = new System.Drawing.Point(4, 0);
            this.labelX5.Name = "labelX5";
            this.labelX5.Size = new System.Drawing.Size(59, 15);
            this.labelX5.TabIndex = 43;
            this.labelX5.Text = "Documento";
            //
            // txtSerieref
            //
            this.txtSerieref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtSerieref.Location = new System.Drawing.Point(146, 15);
            this.txtSerieref.MaxLength = 4;
            this.txtSerieref.Name = "txtSerieref";
            this.txtSerieref.Size = new System.Drawing.Size(38, 20);
            this.txtSerieref.TabIndex = 3;
            //
            // txtNumeroref
            //
            this.txtNumeroref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumeroref.Location = new System.Drawing.Point(185, 15);
            this.txtNumeroref.MaxLength = 10;
            this.txtNumeroref.Name = "txtNumeroref";
            this.txtNumeroref.Size = new System.Drawing.Size(71, 20);
            this.txtNumeroref.TabIndex = 5;
            //
            // groupPanel6
            //
            this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel6.Controls.Add(this.btnDatadic);
            this.groupPanel6.Controls.Add(this.fecVenc);
            this.groupPanel6.Controls.Add(this.fRegistro);
            this.groupPanel6.Controls.Add(this.cboTipoexportacion);
            this.groupPanel6.Controls.Add(this.cboDestinoigv);
            this.groupPanel6.Controls.Add(this.cboMoneda);
            this.groupPanel6.Controls.Add(this.cboServicio);
            this.groupPanel6.Controls.Add(this.cboTipdoc);
            this.groupPanel6.Controls.Add(this.labelX23);
            this.groupPanel6.Controls.Add(this.labelX22);
            this.groupPanel6.Controls.Add(this.labelX21);
            this.groupPanel6.Controls.Add(this.labelX20);
            this.groupPanel6.Controls.Add(this.labelX19);
            this.groupPanel6.Controls.Add(this.labelX18);
            this.groupPanel6.Controls.Add(this.labelX17);
            this.groupPanel6.Controls.Add(this.labelX16);
            this.groupPanel6.Controls.Add(this.labelX15);
            this.groupPanel6.Controls.Add(this.labelX14);
            this.groupPanel6.Controls.Add(this.labelX13);
            this.groupPanel6.Controls.Add(this.labelX12);
            this.groupPanel6.Controls.Add(this.labelX11);
            this.groupPanel6.Controls.Add(this.labelX10);
            this.groupPanel6.Controls.Add(this.labelX9);
            this.groupPanel6.Controls.Add(this.gpoReferencia);
            this.groupPanel6.Controls.Add(this.grpdua);
            this.groupPanel6.Controls.Add(this.txtNumFin);
            this.groupPanel6.Controls.Add(this.chkRetencion);
            this.groupPanel6.Controls.Add(this.chkIncluye);
            this.groupPanel6.Controls.Add(this.chkAfecto);
            this.groupPanel6.Controls.Add(this.lblTipoventa);
            this.groupPanel6.Controls.Add(this.txtGlosa);
            this.groupPanel6.Controls.Add(this.txtCtadetrac);
            this.groupPanel6.Controls.Add(this.txtRuc);
            this.groupPanel6.Controls.Add(this.txtCtactename);
            this.groupPanel6.Controls.Add(this.txtPorcdet);
            this.groupPanel6.Controls.Add(this.txtSerie);
            this.groupPanel6.Controls.Add(this.txtTipoventa);
            this.groupPanel6.Controls.Add(this.txtNumero);
            this.groupPanel6.Controls.Add(this.Label29);
            this.groupPanel6.Controls.Add(this.txtTipocambio);
            this.groupPanel6.Controls.Add(this.txtNumeroorden);
            this.groupPanel6.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel6.Location = new System.Drawing.Point(6, 78);
            this.groupPanel6.Name = "groupPanel6";
            this.groupPanel6.Size = new System.Drawing.Size(1005, 178);
            //
            //
            //
            this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel6.Style.BackColorGradientAngle = 90;
            this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderBottomWidth = 1;
            this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderLeftWidth = 1;
            this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderRightWidth = 1;
            this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderTopWidth = 1;
            this.groupPanel6.Style.CornerDiameter = 4;
            this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel6.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel6.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel6.TabIndex = 47;
            this.toolTip.SetToolTip(this.groupPanel6, "Referencia");
            //
            // btnDatadic
            //
            this.btnDatadic.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.btnDatadic.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.btnDatadic.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnDatadic.Location = new System.Drawing.Point(879, 146);
            this.btnDatadic.Name = "btnDatadic";
            this.btnDatadic.Size = new System.Drawing.Size(98, 23);
            this.btnDatadic.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.btnDatadic.TabIndex = 59;
            this.btnDatadic.Text = "Datos Adicionales";
            this.btnDatadic.Click += new System.EventHandler(this.btnDatadic_Click);
            //
            // fecVenc
            //
            this.fecVenc.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fecVenc.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.ButtonClear.Tooltip = "";
            this.fecVenc.ButtonCustom.Tooltip = "";
            this.fecVenc.ButtonCustom2.Tooltip = "";
            this.fecVenc.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fecVenc.ButtonDropDown.Tooltip = "";
            this.fecVenc.ButtonDropDown.Visible = true;
            this.fecVenc.ButtonFreeText.Tooltip = "";
            this.fecVenc.IsPopupCalendarOpen = false;
            this.fecVenc.Location = new System.Drawing.Point(523, 50);
            //
            //
            //
            this.fecVenc.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fecVenc.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fecVenc.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fecVenc.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.TodayButtonVisible = true;
            this.fecVenc.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fecVenc.Name = "fecVenc";
            this.fecVenc.ShowCheckBox = true;
            this.fecVenc.Size = new System.Drawing.Size(101, 20);
            this.fecVenc.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fecVenc.TabIndex = 58;
            this.fecVenc.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // fRegistro
            //
            this.fRegistro.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fRegistro.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.ButtonClear.Tooltip = "";
            this.fRegistro.ButtonCustom.Tooltip = "";
            this.fRegistro.ButtonCustom2.Tooltip = "";
            this.fRegistro.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fRegistro.ButtonDropDown.Tooltip = "";
            this.fRegistro.ButtonDropDown.Visible = true;
            this.fRegistro.ButtonFreeText.Tooltip = "";
            this.fRegistro.IsPopupCalendarOpen = false;
            this.fRegistro.Location = new System.Drawing.Point(88, 50);
            //
            //
            //
            this.fRegistro.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fRegistro.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fRegistro.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fRegistro.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.TodayButtonVisible = true;
            this.fRegistro.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fRegistro.Name = "fRegistro";
            this.fRegistro.Size = new System.Drawing.Size(91, 20);
            this.fRegistro.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fRegistro.TabIndex = 57;
            this.fRegistro.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // cboTipoexportacion
            //
            this.cboTipoexportacion.DisplayMember = "Text";
            this.cboTipoexportacion.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipoexportacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipoexportacion.FormattingEnabled = true;
            this.cboTipoexportacion.ItemHeight = 14;
            this.cboTipoexportacion.Items.AddRange(new object[] {
            this.comboItem17,
            this.comboItem18});
            this.cboTipoexportacion.Location = new System.Drawing.Point(636, 116);
            this.cboTipoexportacion.Name = "cboTipoexportacion";
            this.cboTipoexportacion.Size = new System.Drawing.Size(358, 20);
            this.cboTipoexportacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipoexportacion.TabIndex = 54;
            //
            // comboItem17
            //
            this.comboItem17.Text = "01-Venta Interna";
            this.comboItem17.Value = "01";
            //
            // comboItem18
            //
            this.comboItem18.Text = "02-Venta Externa";
            this.comboItem18.Value = "02";
            //
            // cboDestinoigv
            //
            this.cboDestinoigv.DisplayMember = "Text";
            this.cboDestinoigv.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboDestinoigv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDestinoigv.FormattingEnabled = true;
            this.cboDestinoigv.ItemHeight = 14;
            this.cboDestinoigv.Items.AddRange(new object[] {
            this.comboItem11,
            this.comboItem12});
            this.cboDestinoigv.Location = new System.Drawing.Point(196, 147);
            this.cboDestinoigv.Name = "cboDestinoigv";
            this.cboDestinoigv.Size = new System.Drawing.Size(233, 20);
            this.cboDestinoigv.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboDestinoigv.TabIndex = 48;
            this.cboDestinoigv.SelectedIndexChanged += new System.EventHandler(this.cboDestinoigv_SelectedIndexChanged);
            //
            // comboItem11
            //
            this.comboItem11.Text = "01-Venta Interna";
            this.comboItem11.Value = "01";
            //
            // comboItem12
            //
            this.comboItem12.Text = "02-Venta Externa";
            this.comboItem12.Value = "02";
            //
            // cboMoneda
            //
            this.cboMoneda.DisplayMember = "Text";
            this.cboMoneda.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboMoneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboMoneda.FormattingEnabled = true;
            this.cboMoneda.ItemHeight = 14;
            this.cboMoneda.Items.AddRange(new object[] {
            this.comboItem9,
            this.comboItem10});
            this.cboMoneda.Location = new System.Drawing.Point(557, 119);
            this.cboMoneda.Name = "cboMoneda";
            this.cboMoneda.Size = new System.Drawing.Size(67, 20);
            this.cboMoneda.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboMoneda.TabIndex = 48;
            this.cboMoneda.SelectedIndexChanged += new System.EventHandler(this.cboMoneda_SelectedIndexChanged);
            this.cboMoneda.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboMoneda_KeyDown);
            //
            // comboItem9
            //
            this.comboItem9.Text = "01-Venta Interna";
            this.comboItem9.Value = "01";
            //
            // comboItem10
            //
            this.comboItem10.Text = "02-Venta Externa";
            this.comboItem10.Value = "02";
            //
            // cboServicio
            //
            this.cboServicio.DisplayMember = "Text";
            this.cboServicio.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboServicio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboServicio.FormattingEnabled = true;
            this.cboServicio.ItemHeight = 14;
            this.cboServicio.Items.AddRange(new object[] {
            this.comboItem7,
            this.comboItem8});
            this.cboServicio.Location = new System.Drawing.Point(240, 73);
            this.cboServicio.Name = "cboServicio";
            this.cboServicio.Size = new System.Drawing.Size(321, 20);
            this.cboServicio.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboServicio.TabIndex = 56;
            this.cboServicio.SelectedIndexChanged += new System.EventHandler(this.cboServicio_SelectedIndexChanged);
            //
            // comboItem7
            //
            this.comboItem7.Text = "01-Venta Interna";
            this.comboItem7.Value = "01";
            //
            // comboItem8
            //
            this.comboItem8.Text = "02-Venta Externa";
            this.comboItem8.Value = "02";
            //
            // cboTipdoc
            //
            this.cboTipdoc.DisplayMember = "Text";
            this.cboTipdoc.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipdoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipdoc.FormattingEnabled = true;
            this.cboTipdoc.ItemHeight = 14;
            this.cboTipdoc.Items.AddRange(new object[] {
            this.comboItem5,
            this.comboItem6});
            this.cboTipdoc.Location = new System.Drawing.Point(88, 4);
            this.cboTipdoc.Name = "cboTipdoc";
            this.cboTipdoc.Size = new System.Drawing.Size(262, 20);
            this.cboTipdoc.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipdoc.TabIndex = 48;
            this.cboTipdoc.SelectedIndexChanged += new System.EventHandler(this.cboTipdoc_SelectedIndexChanged);
            this.cboTipdoc.SelectedValueChanged += new System.EventHandler(this.cboTipdoc_SelectedValueChanged);
            this.cboTipdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboTipdoc_KeyDown);
            //
            // comboItem5
            //
            this.comboItem5.Text = "01-Venta Interna";
            this.comboItem5.Value = "01";
            //
            // comboItem6
            //
            this.comboItem6.Text = "02-Venta Externa";
            this.comboItem6.Value = "02";
            //
            // labelX23
            //
            this.labelX23.AutoSize = true;
            this.labelX23.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX23.Location = new System.Drawing.Point(513, 122);
            this.labelX23.Name = "labelX23";
            this.labelX23.Size = new System.Drawing.Size(42, 15);
            this.labelX23.TabIndex = 55;
            this.labelX23.Text = "Moneda";
            //
            // labelX22
            //
            this.labelX22.AutoSize = true;
            this.labelX22.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX22.Location = new System.Drawing.Point(460, 100);
            this.labelX22.Name = "labelX22";
            this.labelX22.Size = new System.Drawing.Size(43, 15);
            this.labelX22.TabIndex = 54;
            this.labelX22.Text = "Cta.Det.";
            //
            // labelX21
            //
            this.labelX21.AutoSize = true;
            this.labelX21.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX21.Location = new System.Drawing.Point(184, 77);
            this.labelX21.Name = "labelX21";
            this.labelX21.Size = new System.Drawing.Size(55, 15);
            this.labelX21.TabIndex = 53;
            this.labelX21.Text = "Detracción";
            //
            // labelX20
            //
            this.labelX20.AutoSize = true;
            this.labelX20.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX20.Location = new System.Drawing.Point(444, 52);
            this.labelX20.Name = "labelX20";
            this.labelX20.Size = new System.Drawing.Size(73, 15);
            this.labelX20.TabIndex = 52;
            this.labelX20.Text = "F.Vencimiento";
            //
            // labelX19
            //
            this.labelX19.AutoSize = true;
            this.labelX19.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX19.Location = new System.Drawing.Point(189, 53);
            this.labelX19.Name = "labelX19";
            this.labelX19.Size = new System.Drawing.Size(50, 15);
            this.labelX19.TabIndex = 51;
            this.labelX19.Text = "T.Cambio";
            //
            // labelX18
            //
            this.labelX18.AutoSize = true;
            this.labelX18.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX18.Location = new System.Drawing.Point(535, 8);
            this.labelX18.Name = "labelX18";
            this.labelX18.Size = new System.Drawing.Size(12, 15);
            this.labelX18.TabIndex = 50;
            this.labelX18.Text = "Al";
            //
            // labelX17
            //
            this.labelX17.AutoSize = true;
            this.labelX17.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX17.Location = new System.Drawing.Point(434, 7);
            this.labelX17.Name = "labelX17";
            this.labelX17.Size = new System.Drawing.Size(15, 15);
            this.labelX17.TabIndex = 49;
            this.labelX17.Text = "N°";
            //
            // labelX16
            //
            this.labelX16.AutoSize = true;
            this.labelX16.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX16.Location = new System.Drawing.Point(357, 7);
            this.labelX16.Name = "labelX16";
            this.labelX16.Size = new System.Drawing.Size(28, 15);
            this.labelX16.TabIndex = 42;
            this.labelX16.Text = "Serie";
            //
            // labelX15
            //
            this.labelX15.AutoSize = true;
            this.labelX15.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX15.Location = new System.Drawing.Point(2, 150);
            this.labelX15.Name = "labelX15";
            this.labelX15.Size = new System.Drawing.Size(188, 15);
            this.labelX15.TabIndex = 48;
            this.labelX15.Text = "La Operación es Gravada con el IGV?";
            //
            // labelX14
            //
            this.labelX14.AutoSize = true;
            this.labelX14.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX14.Location = new System.Drawing.Point(27, 122);
            this.labelX14.Name = "labelX14";
            this.labelX14.Size = new System.Drawing.Size(56, 15);
            this.labelX14.TabIndex = 47;
            this.labelX14.Text = "Tipo Venta";
            //
            // labelX13
            //
            this.labelX13.AutoSize = true;
            this.labelX13.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX13.Location = new System.Drawing.Point(52, 98);
            this.labelX13.Name = "labelX13";
            this.labelX13.Size = new System.Drawing.Size(31, 15);
            this.labelX13.TabIndex = 46;
            this.labelX13.Text = "Glosa";
            //
            // labelX12
            //
            this.labelX12.AutoSize = true;
            this.labelX12.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX12.Location = new System.Drawing.Point(1, 76);
            this.labelX12.Name = "labelX12";
            this.labelX12.Size = new System.Drawing.Size(82, 15);
            this.labelX12.TabIndex = 45;
            this.labelX12.Text = "O/Compra -Serv";
            //
            // labelX11
            //
            this.labelX11.AutoSize = true;
            this.labelX11.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX11.Location = new System.Drawing.Point(30, 53);
            this.labelX11.Name = "labelX11";
            this.labelX11.Size = new System.Drawing.Size(53, 15);
            this.labelX11.TabIndex = 44;
            this.labelX11.Text = "F.Registro";
            //
            // labelX10
            //
            this.labelX10.AutoSize = true;
            this.labelX10.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX10.Location = new System.Drawing.Point(31, 31);
            this.labelX10.Name = "labelX10";
            this.labelX10.Size = new System.Drawing.Size(52, 15);
            this.labelX10.TabIndex = 43;
            this.labelX10.Text = "Ruc - Cód";
            //
            // labelX9
            //
            this.labelX9.AutoSize = true;
            this.labelX9.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX9.Location = new System.Drawing.Point(14, 7);
            this.labelX9.Name = "labelX9";
            this.labelX9.Size = new System.Drawing.Size(69, 15);
            this.labelX9.TabIndex = 42;
            this.labelX9.Text = "Comprobante";
            //
            // grpdua
            //
            this.grpdua.CanvasColor = System.Drawing.SystemColors.Control;
            this.grpdua.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.grpdua.Controls.Add(this.adufRegularizacion);
            this.grpdua.Controls.Add(this.adufEmbarque);
            this.grpdua.Controls.Add(this.cboAduana);
            this.grpdua.Controls.Add(this.labelX29);
            this.grpdua.Controls.Add(this.labelX28);
            this.grpdua.Controls.Add(this.labelX27);
            this.grpdua.Controls.Add(this.labelX26);
            this.grpdua.Controls.Add(this.labelX25);
            this.grpdua.Controls.Add(this.labelX24);
            this.grpdua.Controls.Add(this.aduValorfob);
            this.grpdua.Controls.Add(this.aduPeriodo);
            this.grpdua.Controls.Add(this.aduCorrelativo);
            this.grpdua.DisabledBackColor = System.Drawing.Color.Empty;
            this.grpdua.Location = new System.Drawing.Point(630, 51);
            this.grpdua.Name = "grpdua";
            this.grpdua.Size = new System.Drawing.Size(367, 90);
            //
            //
            //
            this.grpdua.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.grpdua.Style.BackColorGradientAngle = 90;
            this.grpdua.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.grpdua.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderBottomWidth = 1;
            this.grpdua.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.grpdua.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderLeftWidth = 1;
            this.grpdua.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderRightWidth = 1;
            this.grpdua.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderTopWidth = 1;
            this.grpdua.Style.CornerDiameter = 4;
            this.grpdua.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.grpdua.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.grpdua.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.grpdua.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.grpdua.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.grpdua.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.grpdua.TabIndex = 41;
            //
            // adufRegularizacion
            //
            this.adufRegularizacion.BackgroundStyle.Class = "DateTimeInputBackground";
            this.adufRegularizacion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.ButtonClear.Tooltip = "";
            this.adufRegularizacion.ButtonCustom.Tooltip = "";
            this.adufRegularizacion.ButtonCustom2.Tooltip = "";
            this.adufRegularizacion.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.adufRegularizacion.ButtonDropDown.Tooltip = "";
            this.adufRegularizacion.ButtonDropDown.Visible = true;
            this.adufRegularizacion.ButtonFreeText.Tooltip = "";
            this.adufRegularizacion.IsPopupCalendarOpen = false;
            this.adufRegularizacion.Location = new System.Drawing.Point(145, 38);
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.adufRegularizacion.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.adufRegularizacion.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.TodayButtonVisible = true;
            this.adufRegularizacion.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.adufRegularizacion.Name = "adufRegularizacion";
            this.adufRegularizacion.ShowCheckBox = true;
            this.adufRegularizacion.Size = new System.Drawing.Size(98, 20);
            this.adufRegularizacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.adufRegularizacion.TabIndex = 61;
            this.adufRegularizacion.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // adufEmbarque
            //
            this.adufEmbarque.BackgroundStyle.Class = "DateTimeInputBackground";
            this.adufEmbarque.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.ButtonClear.Tooltip = "";
            this.adufEmbarque.ButtonCustom.Tooltip = "";
            this.adufEmbarque.ButtonCustom2.Tooltip = "";
            this.adufEmbarque.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.adufEmbarque.ButtonDropDown.Tooltip = "";
            this.adufEmbarque.ButtonDropDown.Visible = true;
            this.adufEmbarque.ButtonFreeText.Tooltip = "";
            this.adufEmbarque.IsPopupCalendarOpen = false;
            this.adufEmbarque.Location = new System.Drawing.Point(24, 38);
            //
            //
            //
            this.adufEmbarque.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufEmbarque.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.adufEmbarque.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.adufEmbarque.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.TodayButtonVisible = true;
            this.adufEmbarque.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.adufEmbarque.Name = "adufEmbarque";
            this.adufEmbarque.ShowCheckBox = true;
            this.adufEmbarque.Size = new System.Drawing.Size(98, 20);
            this.adufEmbarque.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.adufEmbarque.TabIndex = 60;
            this.adufEmbarque.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // cboAduana
            //
            this.cboAduana.DisplayMember = "Text";
            this.cboAduana.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboAduana.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboAduana.FormattingEnabled = true;
            this.cboAduana.ItemHeight = 14;
            this.cboAduana.Items.AddRange(new object[] {
            this.comboItem15,
            this.comboItem16});
            this.cboAduana.Location = new System.Drawing.Point(2, 16);
            this.cboAduana.Name = "cboAduana";
            this.cboAduana.Size = new System.Drawing.Size(251, 20);
            this.cboAduana.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboAduana.TabIndex = 53;
            //
            // comboItem15
            //
            this.comboItem15.Text = "01-Venta Interna";
            this.comboItem15.Value = "01";
            //
            // comboItem16
            //
            this.comboItem16.Text = "02-Venta Externa";
            this.comboItem16.Value = "02";
            //
            // labelX29
            //
            this.labelX29.AutoSize = true;
            this.labelX29.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX29.Location = new System.Drawing.Point(243, 41);
            this.labelX29.Name = "labelX29";
            this.labelX29.Size = new System.Drawing.Size(31, 15);
            this.labelX29.TabIndex = 52;
            this.labelX29.Text = "FOB$";
            //
            // labelX28
            //
            this.labelX28.AutoSize = true;
            this.labelX28.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX28.Location = new System.Drawing.Point(122, 41);
            this.labelX28.Name = "labelX28";
            this.labelX28.Size = new System.Drawing.Size(23, 15);
            this.labelX28.TabIndex = 51;
            this.labelX28.Text = "F.R.";
            //
            // labelX27
            //
            this.labelX27.AutoSize = true;
            this.labelX27.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX27.Location = new System.Drawing.Point(0, 41);
            this.labelX27.Name = "labelX27";
            this.labelX27.Size = new System.Drawing.Size(23, 15);
            this.labelX27.TabIndex = 50;
            this.labelX27.Text = "F.E.";
            //
            // labelX26
            //
            this.labelX26.AutoSize = true;
            this.labelX26.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX26.Location = new System.Drawing.Point(300, 0);
            this.labelX26.Name = "labelX26";
            this.labelX26.Size = new System.Drawing.Size(56, 15);
            this.labelX26.TabIndex = 49;
            this.labelX26.Text = "Correlativo";
            //
            // labelX25
            //
            this.labelX25.AutoSize = true;
            this.labelX25.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX25.Location = new System.Drawing.Point(257, 1);
            this.labelX25.Name = "labelX25";
            this.labelX25.Size = new System.Drawing.Size(22, 15);
            this.labelX25.TabIndex = 48;
            this.labelX25.Text = "Año";
            //
            // labelX24
            //
            this.labelX24.AutoSize = true;
            this.labelX24.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX24.Location = new System.Drawing.Point(4, 1);
            this.labelX24.Name = "labelX24";
            this.labelX24.Size = new System.Drawing.Size(40, 15);
            this.labelX24.TabIndex = 47;
            this.labelX24.Text = "Aduana";
            //
            // aduValorfob
            //
            this.aduValorfob.Enabled = false;
            this.aduValorfob.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.aduValorfob.Location = new System.Drawing.Point(274, 38);
            this.aduValorfob.Name = "aduValorfob";
            this.aduValorfob.Size = new System.Drawing.Size(87, 20);
            this.aduValorfob.TabIndex = 11;
            this.aduValorfob.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // aduPeriodo
            //
            this.aduPeriodo.Location = new System.Drawing.Point(255, 16);
            this.aduPeriodo.MaxLength = 4;
            this.aduPeriodo.Name = "aduPeriodo";
            this.aduPeriodo.Size = new System.Drawing.Size(42, 20);
            this.aduPeriodo.TabIndex = 3;
            //
            // aduCorrelativo
            //
            this.aduCorrelativo.Location = new System.Drawing.Point(299, 16);
            this.aduCorrelativo.MaxLength = 6;
            this.aduCorrelativo.Name = "aduCorrelativo";
            this.aduCorrelativo.Size = new System.Drawing.Size(62, 20);
            this.aduCorrelativo.TabIndex = 5;
            //
            // txtNumFin
            //
            this.txtNumFin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumFin.Location = new System.Drawing.Point(549, 5);
            this.txtNumFin.MaxLength = 10;
            this.txtNumFin.Name = "txtNumFin";
            this.txtNumFin.Size = new System.Drawing.Size(75, 20);
            this.txtNumFin.TabIndex = 7;
            this.txtNumFin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumFin_KeyDown);
            this.txtNumFin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNumFin_KeyPress);
            //
            // chkRetencion
            //
            this.chkRetencion.AutoSize = true;
            this.chkRetencion.BackColor = System.Drawing.Color.Transparent;
            this.chkRetencion.ForeColor = System.Drawing.Color.Blue;
            this.chkRetencion.Location = new System.Drawing.Point(710, 150);
            this.chkRetencion.Name = "chkRetencion";
            this.chkRetencion.Size = new System.Drawing.Size(123, 17);
            this.chkRetencion.TabIndex = 36;
            this.chkRetencion.TabStop = false;
            this.chkRetencion.Text = "Sujeto a Retención?";
            this.chkRetencion.UseVisualStyleBackColor = false;
            //
            // chkIncluye
            //
            this.chkIncluye.AutoSize = true;
            this.chkIncluye.BackColor = System.Drawing.Color.Transparent;
            this.chkIncluye.ForeColor = System.Drawing.Color.Green;
            this.chkIncluye.Location = new System.Drawing.Point(575, 150);
            this.chkIncluye.Name = "chkIncluye";
            this.chkIncluye.Size = new System.Drawing.Size(120, 17);
            this.chkIncluye.TabIndex = 35;
            this.chkIncluye.TabStop = false;
            this.chkIncluye.Text = "Precio Incluye IGV?";
            this.chkIncluye.UseVisualStyleBackColor = false;
            this.chkIncluye.CheckedChanged += new System.EventHandler(this.chkIncluye_CheckedChanged);
            //
            // chkAfecto
            //
            this.chkAfecto.AutoSize = true;
            this.chkAfecto.BackColor = System.Drawing.Color.Transparent;
            this.chkAfecto.ForeColor = System.Drawing.Color.Blue;
            this.chkAfecto.Location = new System.Drawing.Point(468, 150);
            this.chkAfecto.Name = "chkAfecto";
            this.chkAfecto.Size = new System.Drawing.Size(95, 17);
            this.chkAfecto.TabIndex = 34;
            this.chkAfecto.TabStop = false;
            this.chkAfecto.Text = "Afecto al IGV?";
            this.chkAfecto.UseVisualStyleBackColor = false;
            this.chkAfecto.CheckedChanged += new System.EventHandler(this.chkAfecto_CheckedChanged);
            //
            // lblTipoventa
            //
            this.lblTipoventa.Enabled = false;
            this.lblTipoventa.Location = new System.Drawing.Point(126, 119);
            this.lblTipoventa.Name = "lblTipoventa";
            this.lblTipoventa.Size = new System.Drawing.Size(382, 20);
            this.lblTipoventa.TabIndex = 29;
            //
            // txtGlosa
            //
            this.txtGlosa.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtGlosa.Enabled = false;
            this.txtGlosa.Location = new System.Drawing.Point(88, 96);
            this.txtGlosa.MaxLength = 100;
            this.txtGlosa.Name = "txtGlosa";
            this.txtGlosa.Size = new System.Drawing.Size(371, 20);
            this.txtGlosa.TabIndex = 24;
            this.txtGlosa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtGlosa_KeyDown);
            //
            // txtCtadetrac
            //
            this.txtCtadetrac.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtCtadetrac.Enabled = false;
            this.txtCtadetrac.Location = new System.Drawing.Point(504, 96);
            this.txtCtadetrac.MaxLength = 40;
            this.txtCtadetrac.Name = "txtCtadetrac";
            this.txtCtadetrac.Size = new System.Drawing.Size(120, 20);
            this.txtCtadetrac.TabIndex = 26;
            //
            // txtRuc
            //
            this.txtRuc.Enabled = false;
            this.txtRuc.Location = new System.Drawing.Point(88, 28);
            this.txtRuc.MaxLength = 11;
            this.txtRuc.Name = "txtRuc";
            this.txtRuc.Size = new System.Drawing.Size(91, 20);
            this.txtRuc.TabIndex = 9;
            this.txtRuc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRuc_KeyDown);
            this.txtRuc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRuc_KeyPress);
            //
            // txtCtactename
            //
            this.txtCtactename.Enabled = false;
            this.txtCtactename.Location = new System.Drawing.Point(181, 28);
            this.txtCtactename.Name = "txtCtactename";
            this.txtCtactename.Size = new System.Drawing.Size(443, 20);
            this.txtCtactename.TabIndex = 10;
            //
            // txtPorcdet
            //
            this.txtPorcdet.Enabled = false;
            this.txtPorcdet.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPorcdet.Location = new System.Drawing.Point(581, 73);
            this.txtPorcdet.Name = "txtPorcdet";
            this.txtPorcdet.Size = new System.Drawing.Size(43, 20);
            this.txtPorcdet.TabIndex = 22;
            this.txtPorcdet.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtSerie
            //
            this.txtSerie.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtSerie.Location = new System.Drawing.Point(386, 5);
            this.txtSerie.MaxLength = 4;
            this.txtSerie.Name = "txtSerie";
            this.txtSerie.Size = new System.Drawing.Size(39, 20);
            this.txtSerie.TabIndex = 3;
            this.txtSerie.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSerie_KeyDown);
            //
            // txtTipoventa
            //
            this.txtTipoventa.Location = new System.Drawing.Point(88, 119);
            this.txtTipoventa.MaxLength = 2;
            this.txtTipoventa.Name = "txtTipoventa";
            this.txtTipoventa.Size = new System.Drawing.Size(36, 20);
            this.txtTipoventa.TabIndex = 28;
            this.txtTipoventa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtTipoventa_KeyDown);
            //
            // txtNumero
            //
            this.txtNumero.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumero.Location = new System.Drawing.Point(451, 5);
            this.txtNumero.MaxLength = 10;
            this.txtNumero.Name = "txtNumero";
            this.txtNumero.Size = new System.Drawing.Size(75, 20);
            this.txtNumero.TabIndex = 5;
            this.txtNumero.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumero_KeyDown);
            this.txtNumero.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNumero_KeyPress);
            //
            // Label29
            //
            this.Label29.AutoSize = true;
            this.Label29.ForeColor = System.Drawing.Color.RoyalBlue;
            this.Label29.Location = new System.Drawing.Point(563, 76);
            this.Label29.Name = "Label29";
            this.Label29.Size = new System.Drawing.Size(15, 13);
            this.Label29.TabIndex = 21;
            this.Label29.Text = "%";
            //
            // txtTipocambio
            //
            this.txtTipocambio.Enabled = false;
            this.txtTipocambio.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTipocambio.Location = new System.Drawing.Point(240, 50);
            this.txtTipocambio.Name = "txtTipocambio";
            this.txtTipocambio.Size = new System.Drawing.Size(69, 20);
            this.txtTipocambio.TabIndex = 14;
            this.txtTipocambio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtNumeroorden
            //
            this.txtNumeroorden.Location = new System.Drawing.Point(88, 73);
            this.txtNumeroorden.MaxLength = 10;
            this.txtNumeroorden.Name = "txtNumeroorden";
            this.txtNumeroorden.Size = new System.Drawing.Size(91, 20);
            this.txtNumeroorden.TabIndex = 18;
            //
            // chkDuplicar
            //
            this.chkDuplicar.AutoSize = true;
            this.chkDuplicar.BackColor = System.Drawing.Color.Transparent;
            this.chkDuplicar.ForeColor = System.Drawing.Color.Blue;
            this.chkDuplicar.Location = new System.Drawing.Point(434, 512);
            this.chkDuplicar.Name = "chkDuplicar";
            this.chkDuplicar.Size = new System.Drawing.Size(96, 17);
            this.chkDuplicar.TabIndex = 8;
            this.chkDuplicar.Text = "Duplicar Línea";
            this.chkDuplicar.UseVisualStyleBackColor = false;
            //
            // txtDescripcampo
            //
            this.txtDescripcampo.BackColor = System.Drawing.Color.White;
            this.txtDescripcampo.Enabled = false;
            this.txtDescripcampo.ForeColor = System.Drawing.SystemColors.WindowFrame;
            this.txtDescripcampo.Location = new System.Drawing.Point(8, 510);
            this.txtDescripcampo.Name = "txtDescripcampo";
            this.txtDescripcampo.Size = new System.Drawing.Size(419, 20);
            this.txtDescripcampo.TabIndex = 7;
            //
            // GridExaminar
            //
            this.GridExaminar.AllowUserToAddRows = false;
            this.GridExaminar.AllowUserToDeleteRows = false;
            this.GridExaminar.AllowUserToResizeColumns = false;
            this.GridExaminar.AllowUserToResizeRows = false;
            this.GridExaminar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.GridExaminar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            this.GridExaminar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.GridExaminar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.asientoitems,
            this.rubroid,
            this.drubro,
            this.numpedido,
            this.num_op,
            this.productid,
            this.tallacolor,
            this.productname,
            this.unidmedidaid,
            this.cantidad,
            this.afectoigvid,
            this.precunit,
            this.bruto,
            this.pdscto,
            this.valorventa,
            this.igvo,
            this.total,
            this.cencosid,
            this.COL_OBS,
            this.tipguia,
            this.serguia,
            this.numguia});
            this.GridExaminar.Location = new System.Drawing.Point(6, 262);
            this.GridExaminar.MultiSelect = false;
            this.GridExaminar.Name = "GridExaminar";
            this.GridExaminar.RowHeadersWidth = 10;
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.GridExaminar.RowsDefaultCellStyle = dataGridViewCellStyle10;
            this.GridExaminar.RowTemplate.Height = 20;
            this.GridExaminar.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
            this.GridExaminar.Size = new System.Drawing.Size(1005, 240);
            this.GridExaminar.TabIndex = 6;
            this.GridExaminar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.GridExaminar_CellBeginEdit);
            this.GridExaminar.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellContentClick);
            this.GridExaminar.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellEndEdit);
            this.GridExaminar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellValueChanged);
            this.GridExaminar.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.GridExaminar_EditingControlShowing);
            this.GridExaminar.SelectionChanged += new System.EventHandler(this.GridExaminar_SelectionChanged);
            this.GridExaminar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GridExaminar_KeyDown);
            //
            // asientoitems
            //
            this.asientoitems.DataPropertyName = "asientoitems";
            this.asientoitems.HeaderText = "Nro";
            this.asientoitems.Name = "asientoitems";
            this.asientoitems.ReadOnly = true;
            this.asientoitems.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.asientoitems.Visible = false;
            this.asientoitems.Width = 45;
            //
            // rubroid
            //
            this.rubroid.DataPropertyName = "rubroid";
            this.rubroid.HeaderText = "Rubro";
            this.rubroid.Name = "rubroid";
            this.rubroid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.rubroid.Width = 42;
            //
            // drubro
            //
            this.drubro.DataPropertyName = "drubro";
            this.drubro.HeaderText = "Descripción Rubro";
            this.drubro.Name = "drubro";
            this.drubro.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.drubro.Visible = false;
            this.drubro.Width = 300;
            //
            // numpedido
            //
            this.numpedido.DataPropertyName = "numpedido";
            this.numpedido.HeaderText = "Pedido";
            this.numpedido.Name = "numpedido";
            this.numpedido.Visible = false;
            this.numpedido.Width = 70;
            //
            // num_op
            //
            this.num_op.DataPropertyName = "num_op";
            this.num_op.HeaderText = "OP";
            this.num_op.Name = "num_op";
            this.num_op.Visible = false;
            this.num_op.Width = 75;
            //
            // productid
            //
            this.productid.DataPropertyName = "productid";
            this.productid.HeaderText = "Código Artículo";
            this.productid.MaxInputLength = 10;
            this.productid.Name = "productid";
            this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.productid.Width = 110;
            //
            // tallacolor
            //
            this.tallacolor.DataPropertyName = "tallacolor";
            this.tallacolor.HeaderText = "Talla/Color";
            this.tallacolor.Name = "tallacolor";
            this.tallacolor.Visible = false;
            this.tallacolor.Width = 65;
            //
            // productname
            //
            this.productname.DataPropertyName = "productname";
            this.productname.HeaderText = "Descripción";
            this.productname.Name = "productname";
            this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.productname.Width = 300;
            //
            // unidmedidaid
            //
            this.unidmedidaid.DataPropertyName = "unidmedidaid";
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.unidmedidaid.DefaultCellStyle = dataGridViewCellStyle1;
            this.unidmedidaid.HeaderText = "UMD";
            this.unidmedidaid.Name = "unidmedidaid";
            this.unidmedidaid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.unidmedidaid.Visible = false;
            this.unidmedidaid.Width = 35;
            //
            // cantidad
            //
            this.cantidad.DataPropertyName = "cantidad";
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle2.Format = "N3";
            dataGridViewCellStyle2.NullValue = "0";
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.cantidad.DefaultCellStyle = dataGridViewCellStyle2;
            this.cantidad.HeaderText = "Cantidad";
            this.cantidad.Name = "cantidad";
            this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.cantidad.Width = 70;
            //
            // afectoigvid
            //
            this.afectoigvid.DataPropertyName = "afectoigvid";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopCenter;
            this.afectoigvid.DefaultCellStyle = dataGridViewCellStyle3;
            this.afectoigvid.HeaderText = "Des";
            this.afectoigvid.Name = "afectoigvid";
            this.afectoigvid.Width = 30;
            //
            // precunit
            //
            this.precunit.DataPropertyName = "precunit";
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle4.Format = "N5";
            dataGridViewCellStyle4.NullValue = "0";
            this.precunit.DefaultCellStyle = dataGridViewCellStyle4;
            this.precunit.HeaderText = "Unitario";
            this.precunit.Name = "precunit";
            this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.precunit.Width = 85;
            //
            // bruto
            //
            this.bruto.DataPropertyName = "bruto";
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle5.Format = "N2";
            dataGridViewCellStyle5.NullValue = "0";
            this.bruto.DefaultCellStyle = dataGridViewCellStyle5;
            this.bruto.HeaderText = "Valor";
            this.bruto.Name = "bruto";
            this.bruto.Width = 85;
            //
            // pdscto
            //
            this.pdscto.DataPropertyName = "pdscto";
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle6.Format = "N2";
            dataGridViewCellStyle6.NullValue = "0";
            this.pdscto.DefaultCellStyle = dataGridViewCellStyle6;
            this.pdscto.HeaderText = "%Dcto.";
            this.pdscto.Name = "pdscto";
            this.pdscto.Width = 55;
            //
            // valorventa
            //
            this.valorventa.DataPropertyName = "valorventa";
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle7.Format = "N2";
            dataGridViewCellStyle7.NullValue = "0";
            this.valorventa.DefaultCellStyle = dataGridViewCellStyle7;
            this.valorventa.HeaderText = "V.Venta";
            this.valorventa.Name = "valorventa";
            this.valorventa.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.valorventa.Width = 85;
            //
            // igvo
            //
            this.igvo.DataPropertyName = "igvo";
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle8.Format = "N2";
            dataGridViewCellStyle8.NullValue = "0";
            this.igvo.DefaultCellStyle = dataGridViewCellStyle8;
            this.igvo.HeaderText = "IGV";
            this.igvo.Name = "igvo";
            this.igvo.ReadOnly = true;
            this.igvo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.igvo.Width = 70;
            //
            // total
            //
            this.total.DataPropertyName = "total";
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle9.Format = "N2";
            dataGridViewCellStyle9.NullValue = "0";
            this.total.DefaultCellStyle = dataGridViewCellStyle9;
            this.total.HeaderText = "P.Venta";
            this.total.Name = "total";
            this.total.ReadOnly = true;
            this.total.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.total.Width = 85;
            //
            // cencosid
            //
            this.cencosid.DataPropertyName = "cencosid";
            this.cencosid.HeaderText = "C.Costo";
            this.cencosid.Name = "cencosid";
            this.cencosid.Width = 54;
            //
            // COL_OBS
            //
            this.COL_OBS.HeaderText = "Obs.";
            this.COL_OBS.Name = "COL_OBS";
            this.COL_OBS.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.COL_OBS.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.COL_OBS.Width = 65;
            //
            // tipguia
            //
            this.tipguia.DataPropertyName = "tipguia";
            this.tipguia.HeaderText = "TG";
            this.tipguia.Name = "tipguia";
            this.tipguia.Width = 34;
            //
            // serguia
            //
            this.serguia.DataPropertyName = "serguia";
            this.serguia.HeaderText = "SerGuia";
            this.serguia.Name = "serguia";
            this.serguia.Width = 50;
            //
            // numguia
            //
            this.numguia.DataPropertyName = "numguia";
            this.numguia.HeaderText = "NumGuia";
            this.numguia.Name = "numguia";
            this.numguia.Width = 80;
            //
            // lblAnulado
            //
            this.lblAnulado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblAnulado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAnulado.ForeColor = System.Drawing.Color.Red;
            this.lblAnulado.Location = new System.Drawing.Point(269, 2);
            this.lblAnulado.Name = "lblAnulado";
            this.lblAnulado.Size = new System.Drawing.Size(145, 20);
            this.lblAnulado.TabIndex = 3;
            this.lblAnulado.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtMes
            //
            this.txtMes.Location = new System.Drawing.Point(37, 3);
            this.txtMes.MaxLength = 2;
            this.txtMes.Name = "txtMes";
            this.txtMes.Size = new System.Drawing.Size(30, 20);
            this.txtMes.TabIndex = 1;
            this.txtMes.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMes_KeyDown);
            this.txtMes.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMes_KeyPress);
            //
            // txtAsiento
            //
            this.txtAsiento.Location = new System.Drawing.Point(132, 3);
            this.txtAsiento.MaxLength = 6;
            this.txtAsiento.Name = "txtAsiento";
            this.txtAsiento.Size = new System.Drawing.Size(68, 20);
            this.txtAsiento.TabIndex = 3;
            this.txtAsiento.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAsiento_KeyDown);
            this.txtAsiento.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAsiento_KeyPress);
            //
            // txtDctos
            //
            this.txtDctos.Enabled = false;
            this.txtDctos.Location = new System.Drawing.Point(78, 14);
            this.txtDctos.Name = "txtDctos";
            this.txtDctos.Size = new System.Drawing.Size(70, 20);
            this.txtDctos.TabIndex = 3;
            this.txtDctos.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtValor
            //
            this.txtValor.Enabled = false;
            this.txtValor.Location = new System.Drawing.Point(4, 14);
            this.txtValor.Name = "txtValor";
            this.txtValor.Size = new System.Drawing.Size(70, 20);
            this.txtValor.TabIndex = 1;
            this.txtValor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtPigv
            //
            this.txtPigv.Enabled = false;
            this.txtPigv.Location = new System.Drawing.Point(226, 14);
            this.txtPigv.Name = "txtPigv";
            this.txtPigv.Size = new System.Drawing.Size(39, 20);
            this.txtPigv.TabIndex = 8;
            this.txtPigv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtPigv.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPigv_KeyDown);
            //
            // txtTotal
            //
            this.txtTotal.Enabled = false;
            this.txtTotal.Location = new System.Drawing.Point(341, 14);
            this.txtTotal.Name = "txtTotal";
            this.txtTotal.Size = new System.Drawing.Size(70, 20);
            this.txtTotal.TabIndex = 0;
            this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtIgv
            //
            this.txtIgv.Enabled = false;
            this.txtIgv.Location = new System.Drawing.Point(269, 14);
            this.txtIgv.Name = "txtIgv";
            this.txtIgv.Size = new System.Drawing.Size(68, 20);
            this.txtIgv.TabIndex = 10;
            this.txtIgv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtIgv.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtIgv_KeyPress);
            //
            // txtVenta
            //
            this.txtVenta.Enabled = false;
            this.txtVenta.Location = new System.Drawing.Point(152, 14);
            this.txtVenta.Name = "txtVenta";
            this.txtVenta.Size = new System.Drawing.Size(70, 20);
            this.txtVenta.TabIndex = 7;
            this.txtVenta.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // lblMoneda
            //
            this.lblMoneda.AutoSize = true;
            this.lblMoneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMoneda.ForeColor = System.Drawing.Color.Blue;
            this.lblMoneda.Location = new System.Drawing.Point(553, 526);
            this.lblMoneda.Name = "lblMoneda";
            this.lblMoneda.Size = new System.Drawing.Size(37, 16);
            this.lblMoneda.TabIndex = 9;
            this.lblMoneda.Text = "Mon";
            this.lblMoneda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            //
            // groupPanel1
            //
            this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel1.Controls.Add(this.cboSubdiario);
            this.groupPanel1.Controls.Add(this.labelX2);
            this.groupPanel1.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel1.Location = new System.Drawing.Point(8, 42);
            this.groupPanel1.Name = "groupPanel1";
            this.groupPanel1.Size = new System.Drawing.Size(349, 30);
            //
            //
            //
            this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel1.Style.BackColorGradientAngle = 90;
            this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderBottomWidth = 1;
            this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderLeftWidth = 1;
            this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderRightWidth = 1;
            this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel1.Style.BorderTopWidth = 1;
            this.groupPanel1.Style.CornerDiameter = 4;
            this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel1.TabIndex = 40;
            //
            // cboSubdiario
            //
            this.cboSubdiario.DisplayMember = "Text";
            this.cboSubdiario.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboSubdiario.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSubdiario.FormattingEnabled = true;
            this.cboSubdiario.ItemHeight = 14;
            this.cboSubdiario.Items.AddRange(new object[] {
            this.comboItem3,
            this.comboItem4});
            this.cboSubdiario.Location = new System.Drawing.Point(61, 3);
            this.cboSubdiario.Name = "cboSubdiario";
            this.cboSubdiario.Size = new System.Drawing.Size(274, 20);
            this.cboSubdiario.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboSubdiario.TabIndex = 48;
            //
            // comboItem3
            //
            this.comboItem3.Text = "01-Venta Interna";
            this.comboItem3.Value = "01";
            //
            // comboItem4
            //
            this.comboItem4.Text = "02-Venta Externa";
            this.comboItem4.Value = "02";
            //
            // labelX2
            //
            this.labelX2.AutoSize = true;
            this.labelX2.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX2.Location = new System.Drawing.Point(5, 5);
            this.labelX2.Name = "labelX2";
            this.labelX2.Size = new System.Drawing.Size(51, 15);
            this.labelX2.TabIndex = 0;
            this.labelX2.Text = "SubDiario";
            //
            // groupPanel2
            //
            this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel2.Controls.Add(this.labelX4);
            this.groupPanel2.Controls.Add(this.labelX3);
            this.groupPanel2.Controls.Add(this.txtMes);
            this.groupPanel2.Controls.Add(this.txtAsiento);
            this.groupPanel2.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel2.Location = new System.Drawing.Point(363, 42);
            this.groupPanel2.Name = "groupPanel2";
            this.groupPanel2.Size = new System.Drawing.Size(214, 30);
            //
            //
            //
            this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel2.Style.BackColorGradientAngle = 90;
            this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderBottomWidth = 1;
            this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderLeftWidth = 1;
            this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderRightWidth = 1;
            this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel2.Style.BorderTopWidth = 1;
            this.groupPanel2.Style.CornerDiameter = 4;
            this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel2.TabIndex = 41;
            //
            // labelX4
            //
            this.labelX4.AutoSize = true;
            this.labelX4.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX4.Location = new System.Drawing.Point(79, 5);
            this.labelX4.Name = "labelX4";
            this.labelX4.Size = new System.Drawing.Size(49, 15);
            this.labelX4.TabIndex = 41;
            this.labelX4.Text = "Vouchers";
            //
            // labelX3
            //
            this.labelX3.AutoSize = true;
            this.labelX3.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX3.Location = new System.Drawing.Point(10, 5);
            this.labelX3.Name = "labelX3";
            this.labelX3.Size = new System.Drawing.Size(23, 15);
            this.labelX3.TabIndex = 40;
            this.labelX3.Text = "Mes";
            //
            // groupPanel3
            //
            this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel3.Controls.Add(this.chkActivo);
            this.groupPanel3.Controls.Add(this.cboOrigen);
            this.groupPanel3.Controls.Add(this.labelX1);
            this.groupPanel3.Controls.Add(this.lblAnulado);
            this.groupPanel3.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel3.Location = new System.Drawing.Point(583, 42);
            this.groupPanel3.Name = "groupPanel3";
            this.groupPanel3.Size = new System.Drawing.Size(428, 30);
            //
            //
            //
            this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel3.Style.BackColorGradientAngle = 90;
            this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderBottomWidth = 1;
            this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderLeftWidth = 1;
            this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderRightWidth = 1;
            this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderTopWidth = 1;
            this.groupPanel3.Style.CornerDiameter = 4;
            this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel3.TabIndex = 40;
            //
            // chkActivo
            //
            this.chkActivo.AutoSize = true;
            this.chkActivo.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.chkActivo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.chkActivo.Location = new System.Drawing.Point(210, 5);
            this.chkActivo.Name = "chkActivo";
            this.chkActivo.Size = new System.Drawing.Size(53, 15);
            this.chkActivo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.chkActivo.TabIndex = 47;
            this.chkActivo.Text = "Activo";
            this.chkActivo.CheckedChanged += new System.EventHandler(this.chkActivo_CheckedChanged);
            //
            // cboOrigen
            //
            this.cboOrigen.DisplayMember = "Text";
            this.cboOrigen.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboOrigen.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboOrigen.FormattingEnabled = true;
            this.cboOrigen.ItemHeight = 14;
            this.cboOrigen.Items.AddRange(new object[] {
            this.comboItem1,
            this.comboItem2});
            this.cboOrigen.Location = new System.Drawing.Point(48, 3);
            this.cboOrigen.Name = "cboOrigen";
            this.cboOrigen.Size = new System.Drawing.Size(125, 20);
            this.cboOrigen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboOrigen.TabIndex = 47;
            this.cboOrigen.SelectedIndexChanged += new System.EventHandler(this.cboOrigen_SelectedIndexChanged);
            //
            // comboItem1
            //
            this.comboItem1.Text = "01-Venta Interna";
            this.comboItem1.Value = "01";
            //
            // comboItem2
            //
            this.comboItem2.Text = "02-Venta Externa";
            this.comboItem2.Value = "02";
            //
            // labelX1
            //
            this.labelX1.AutoSize = true;
            this.labelX1.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX1.Location = new System.Drawing.Point(6, 5);
            this.labelX1.Name = "labelX1";
            this.labelX1.Size = new System.Drawing.Size(36, 15);
            this.labelX1.TabIndex = 42;
            this.labelX1.Text = "Origen";
            //
            // groupPanel4
            //
            this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel4.Controls.Add(this.labelX35);
            this.groupPanel4.Controls.Add(this.labelX34);
            this.groupPanel4.Controls.Add(this.labelX33);
            this.groupPanel4.Controls.Add(this.labelX32);
            this.groupPanel4.Controls.Add(this.labelX31);
            this.groupPanel4.Controls.Add(this.labelX30);
            this.groupPanel4.Controls.Add(this.txtDctos);
            this.groupPanel4.Controls.Add(this.txtTotal);
            this.groupPanel4.Controls.Add(this.txtVenta);
            this.groupPanel4.Controls.Add(this.txtIgv);
            this.groupPanel4.Controls.Add(this.txtValor);
            this.groupPanel4.Controls.Add(this.txtPigv);
            this.groupPanel4.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel4.Location = new System.Drawing.Point(592, 508);
            this.groupPanel4.Name = "groupPanel4";
            this.groupPanel4.Size = new System.Drawing.Size(419, 41);
            //
            //
            //
            this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel4.Style.BackColorGradientAngle = 90;
            this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderBottomWidth = 1;
            this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderLeftWidth = 1;
            this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderRightWidth = 1;
            this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderTopWidth = 1;
            this.groupPanel4.Style.CornerDiameter = 4;
            this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel4.TabIndex = 42;
            //
            // labelX35
            //
            this.labelX35.AutoSize = true;
            this.labelX35.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX35.Location = new System.Drawing.Point(349, -1);
            this.labelX35.Name = "labelX35";
            this.labelX35.Size = new System.Drawing.Size(42, 15);
            this.labelX35.TabIndex = 53;
            this.labelX35.Text = "P.Venta";
            //
            // labelX34
            //
            this.labelX34.AutoSize = true;
            this.labelX34.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX34.Location = new System.Drawing.Point(290, -1);
            this.labelX34.Name = "labelX34";
            this.labelX34.Size = new System.Drawing.Size(21, 15);
            this.labelX34.TabIndex = 52;
            this.labelX34.Text = "IGV";
            //
            // labelX33
            //
            this.labelX33.AutoSize = true;
            this.labelX33.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX33.Location = new System.Drawing.Point(226, -1);
            this.labelX33.Name = "labelX33";
            this.labelX33.Size = new System.Drawing.Size(34, 15);
            this.labelX33.TabIndex = 51;
            this.labelX33.Text = "% IGV";
            //
            // labelX32
            //
            this.labelX32.AutoSize = true;
            this.labelX32.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX32.Location = new System.Drawing.Point(165, -1);
            this.labelX32.Name = "labelX32";
            this.labelX32.Size = new System.Drawing.Size(42, 15);
            this.labelX32.TabIndex = 50;
            this.labelX32.Text = "V.Venta";
            //
            // labelX31
            //
            this.labelX31.AutoSize = true;
            this.labelX31.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX31.Location = new System.Drawing.Point(93, -1);
            this.labelX31.Name = "labelX31";
            this.labelX31.Size = new System.Drawing.Size(34, 15);
            this.labelX31.TabIndex = 49;
            this.labelX31.Text = "Dctos.";
            //
            // labelX30
            //
            this.labelX30.AutoSize = true;
            this.labelX30.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX30.Location = new System.Drawing.Point(23, -1);
            this.labelX30.Name = "labelX30";
            this.labelX30.Size = new System.Drawing.Size(28, 15);
            this.labelX30.TabIndex = 48;
            this.labelX30.Text = "Valor";
            //
            // gbtnCompras
            //
            this.gbtnCompras.AccessibleDescription = "bar1 (bar1)";
            this.gbtnCompras.AccessibleName = "bar1";
            this.gbtnCompras.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.gbtnCompras.AntiAlias = true;
            this.gbtnCompras.Dock = System.Windows.Forms.DockStyle.Top;
            this.gbtnCompras.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.gbtnCompras.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.btnNew,
            this.btnEdit,
            this.btnSave,
            this.btnRetro,
            this.btnDelete,
            this.btnPrint,
            this.buttonItem8,
            this.btnLog,
            this.buttonItem10,
            this.btnBusqueda,
            this.btnSeekdoc,
            this.btnAddfila,
            this.btnDelfila,
            this.btnActtipocambio,
            this.btnProvfactura,
            this.buttonItem18,
            this.btnInicial,
            this.btnAnterior,
            this.btnSiguiente,
            this.btnUltimo,
            this.buttonItem22,
            this.btnExit});
            this.gbtnCompras.Location = new System.Drawing.Point(0, 0);
            this.gbtnCompras.Name = "gbtnCompras";
            this.gbtnCompras.Size = new System.Drawing.Size(1013, 29);
            this.gbtnCompras.Stretch = true;
            this.gbtnCompras.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.gbtnCompras.TabIndex = 0;
            this.gbtnCompras.TabStop = false;
            this.gbtnCompras.Text = "bar1";
            //
            // btnNew
            //
            this.btnNew.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
            this.btnNew.Name = "btnNew";
            this.btnNew.Text = "Nuevo [F2]";
            this.btnNew.Tooltip = "Nuevo [F2]";
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            //
            // btnEdit
            //
            this.btnEdit.Image = global::BapFormulariosNet.Properties.Resources.go_edit20;
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Text = "buttonItem2";
            this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
            //
            // btnSave
            //
            this.btnSave.Image = global::BapFormulariosNet.Properties.Resources.btn_grabar20;
            this.btnSave.Name = "btnSave";
            this.btnSave.Text = "buttonItem3";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            //
            // btnRetro
            //
            this.btnRetro.Image = global::BapFormulariosNet.Properties.Resources.btn_cancel;
            this.btnRetro.Name = "btnRetro";
            this.btnRetro.Text = "buttonItem4";
            this.btnRetro.Click += new System.EventHandler(this.btnRetro_Click);
            //
            // btnDelete
            //
            this.btnDelete.Image = global::BapFormulariosNet.Properties.Resources.btn_delete20;
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Text = "buttonItem5";
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            //
            // btnPrint
            //
            this.btnPrint.Image = global::BapFormulariosNet.Properties.Resources.btn_imprimir20;
            this.btnPrint.Name = "btnPrint";
            this.btnPrint.Text = "buttonItem6";
            this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
            //
            // buttonItem8
            //
            this.buttonItem8.Name = "buttonItem8";
            this.buttonItem8.Text = "|";
            //
            // btnLog
            //
            this.btnLog.Image = global::BapFormulariosNet.Properties.Resources.ojo20;
            this.btnLog.Name = "btnLog";
            this.btnLog.Text = "buttonItem9";
            this.btnLog.Click += new System.EventHandler(this.btnLog_Click);
            //
            // buttonItem10
            //
            this.buttonItem10.Name = "buttonItem10";
            this.buttonItem10.Text = "|";
            //
            // btnBusqueda
            //
            this.btnBusqueda.Image = global::BapFormulariosNet.Properties.Resources.btn_listado20;
            this.btnBusqueda.Name = "btnBusqueda";
            this.btnBusqueda.Text = "buttonItem11";
            this.btnBusqueda.Click += new System.EventHandler(this.btnBusqueda_Click);
            //
            // btnSeekdoc
            //
            this.btnSeekdoc.Image = global::BapFormulariosNet.Properties.Resources.btn_search20;
            this.btnSeekdoc.Name = "btnSeekdoc";
            this.btnSeekdoc.Text = "buttonItem11";
            this.btnSeekdoc.Click += new System.EventHandler(this.btnSeekdoc_Click);
            //
            // btnAddfila
            //
            this.btnAddfila.Image = global::BapFormulariosNet.Properties.Resources.go_add;
            this.btnAddfila.Name = "btnAddfila";
            this.btnAddfila.Text = "buttonItem13";
            this.btnAddfila.Click += new System.EventHandler(this.btnAddfila_Click);
            //
            // btnDelfila
            //
            this.btnDelfila.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
            this.btnDelfila.Name = "btnDelfila";
            this.btnDelfila.Text = "buttonItem14";
            this.btnDelfila.Click += new System.EventHandler(this.btnDelfila_Click);
            //
            // btnActtipocambio
            //
            this.btnActtipocambio.Image = global::BapFormulariosNet.Properties.Resources.dolares20;
            this.btnActtipocambio.Name = "btnActtipocambio";
            this.btnActtipocambio.Text = "buttonItem15";
            this.btnActtipocambio.Click += new System.EventHandler(this.btnActtipocambio_Click);
            //
            // btnProvfactura
            //
            this.btnProvfactura.Image = global::BapFormulariosNet.Properties.Resources.notepad20x20;
            this.btnProvfactura.Name = "btnProvfactura";
            this.btnProvfactura.Text = "buttonItem16";
            this.btnProvfactura.Click += new System.EventHandler(this.btnProvfactura_Click);
            //
            // buttonItem18
            //
            this.buttonItem18.Name = "buttonItem18";
            this.buttonItem18.Text = "|";
            //
            // btnInicio
            //
            this.btnInicial.Image = global::BapFormulariosNet.Properties.Resources.go_inicio20;
            this.btnInicial.Name = "btnInicio";
            this.btnInicial.Text = "buttonItem23";
            this.btnInicial.Click += new System.EventHandler(this.btnInicial_Click);
            //
            // btnAnterior
            //
            this.btnAnterior.Image = global::BapFormulariosNet.Properties.Resources.go_anterior20;
            this.btnAnterior.Name = "btnAnterior";
            this.btnAnterior.Text = "Anterior";
            this.btnAnterior.Tooltip = "Anterior";
            this.btnAnterior.Click += new System.EventHandler(this.btnAnterior_Click);
            //
            // btnSiguiente
            //
            this.btnSiguiente.Image = global::BapFormulariosNet.Properties.Resources.go_siguiente20;
            this.btnSiguiente.Name = "btnSiguiente";
            this.btnSiguiente.Text = "buttonItem25";
            this.btnSiguiente.Click += new System.EventHandler(this.btnSiguiente_Click);
            //
            // btnUltimo
            //
            this.btnUltimo.Image = global::BapFormulariosNet.Properties.Resources.go_final20;
            this.btnUltimo.Name = "btnUltimo";
            this.btnUltimo.Text = "buttonItem26";
            this.btnUltimo.Click += new System.EventHandler(this.btnUltimo_Click);
            //
            // buttonItem22
            //
            this.buttonItem22.Name = "buttonItem22";
            this.buttonItem22.Text = "|";
            //
            // btnExit
            //
            this.btnExit.Image = global::BapFormulariosNet.Properties.Resources.Exit16x16;
            this.btnExit.Name = "btnExit";
            this.btnExit.Text = "buttonItem27";
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);

            //
            // lblUsuar
            //
            this.lblUsuar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.lblUsuar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblUsuar.Location = new System.Drawing.Point(716, 0);
            this.lblUsuar.Name = "lblUsuar";
            this.lblUsuar.Size = new System.Drawing.Size(251, 23);
            this.lblUsuar.TabIndex = 0;
            this.lblUsuar.Text = "Usuario";
            this.lblUsuar.TextAlignment = System.Drawing.StringAlignment.Center;
            this.lblUsuar.Visible = false;
            //
            // controlContainerItem1
            //
            this.controlContainerItem1.AllowItemResize = false;
            this.controlContainerItem1.Control = this.lblUsuar;
            this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
            this.controlContainerItem1.Name = "controlContainerItem1";
            //
            // Frm_RegistroVentas
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1013, 555);
            this.Controls.Add(this.gbtnCompras);
            this.Controls.Add(this.groupPanel4);
            this.Controls.Add(this.groupPanel6);
            this.Controls.Add(this.groupPanel3);
            this.Controls.Add(this.groupPanel2);
            this.Controls.Add(this.groupPanel1);
            this.Controls.Add(this.chkDuplicar);
            this.Controls.Add(this.txtDescripcampo);
            this.Controls.Add(this.GridExaminar);
            this.Controls.Add(this.lblMoneda);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.Name = "Frm_RegistroVentas";
            this.Text = "Registro de Ventas";
            this.Activated += new System.EventHandler(this.Frm_RegistroVentas_Activated);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_RegistroVentas_FormClosing);
            this.Load += new System.EventHandler(this.Frm_RegistroVentas_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_RegistroVentas_KeyDown);
            this.gpoReferencia.ResumeLayout(false);
            this.gpoReferencia.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fechaRefer)).EndInit();
            this.groupPanel6.ResumeLayout(false);
            this.groupPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fecVenc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fRegistro)).EndInit();
            this.grpdua.ResumeLayout(false);
            this.grpdua.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.adufRegularizacion)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.adufEmbarque)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).EndInit();
            this.groupPanel1.ResumeLayout(false);
            this.groupPanel1.PerformLayout();
            this.groupPanel2.ResumeLayout(false);
            this.groupPanel2.PerformLayout();
            this.groupPanel3.ResumeLayout(false);
            this.groupPanel3.PerformLayout();
            this.groupPanel4.ResumeLayout(false);
            this.groupPanel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gbtnCompras)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }