示例#1
0
        private void FillGrid(C1.Win.C1TrueDBGrid.C1TrueDBGrid grid)
        {
            for (int i = 0; i < 10; i++)
            {
                grid.Columns.Add(new C1.Win.C1TrueDBGrid.C1DataColumn("", typeof(string)));
            }

            grid.SetDataBinding();
            grid.AddRows(30);
        }
示例#2
0
        public bool DG_ExporExcel_2(C1.Win.C1TrueDBGrid.C1TrueDBGrid xDg
                                    , System.Windows.Forms.SaveFileDialog objCuadroDialogo)
        {
            bool boolExporto = false;

            //objCuadroDialogo.Filter = "MS Excel (*.xls) |*.xls;*.xls|(*.xls) |*.xls|(*.*) |*.*";
            objCuadroDialogo.Filter = "MS Excel (*.xlsx) |*.xlsx;*.xlsx|(*.xlsx) |*.xlsx|(*.*) |*.*";

            DataTable tCxC = (DataTable)xDg.DataSource;

            DataView  dtView = new DataView(tCxC);
            DataTable dtTableWithOneColumn = dtView.ToTable("Hoja 1", true
                                                            , "n_id"
                                                            , "d_fchdoc"
                                                            , "c_tipdocdes"
                                                            , "c_numdocvis"
                                                            , "c_nompro"
                                                            , "d_fching"
                                                            , "c_almacendes"
                                                            , "c_desdocref"
                                                            , "c_numdocref");

            dtTableWithOneColumn.Columns[0].ColumnName = "Corr.";
            dtTableWithOneColumn.Columns[1].ColumnName = "Fch.Doc.";
            dtTableWithOneColumn.Columns[2].ColumnName = "Tip.Doc.";
            dtTableWithOneColumn.Columns[3].ColumnName = "N° Documento";
            dtTableWithOneColumn.Columns[4].ColumnName = "Proveedor";
            dtTableWithOneColumn.Columns[5].ColumnName = "Fch.Ingreso";
            dtTableWithOneColumn.Columns[6].ColumnName = "Almacén";
            dtTableWithOneColumn.Columns[7].ColumnName = "Tip.Doc.Ref.";
            dtTableWithOneColumn.Columns[8].ColumnName = "N° Doc.Ref.";


            if (objCuadroDialogo.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                DataTable_To_Excel(dtTableWithOneColumn, objCuadroDialogo.FileName);
                //xDg.ExportToExcel(objCuadroDialogo.FileName);
                boolExporto = true;
            }

            string filename = "Excel.exe";

            Process proc = new Process();

            proc.EnableRaisingEvents = false;
            proc.StartInfo.FileName  = filename;
            proc.StartInfo.Arguments = objCuadroDialogo.FileName;
            proc.Start();

            return(boolExporto);
        }
示例#3
0
        private void c1TrueDBGrid1_FetchCellTips(object sender, C1.Win.C1TrueDBGrid.FetchCellTipsEventArgs e)
        {
            // setting e.CellTip to an empty string disables the built-in celltip
            e.CellTip = string.Empty;

            // now use supertooltip
            C1.Win.C1TrueDBGrid.C1TrueDBGrid tdbgrid = sender as C1.Win.C1TrueDBGrid.C1TrueDBGrid;

            // save the current row and column index, we'll use this in MouseMove
            this._rowcol = new Point(e.ColIndex, e.Row);
            string tip = _tip.Replace("(row,col)", string.Format("<b>({0},{1})</b>", e.Row, e.ColIndex));

            this.c1SuperTooltip1.SetToolTip(tdbgrid, tip);
        }
示例#4
0
        private void c1TrueDBGrid1_MouseMove(object sender, MouseEventArgs e)
        {
            C1.Win.C1TrueDBGrid.C1TrueDBGrid tdbgrid = sender as C1.Win.C1TrueDBGrid.C1TrueDBGrid;

            // get the row and column index where the mouse is positioned
            Point p         = tdbgrid.PointToClient(Control.MousePosition);
            Point curRowCol = new Point(tdbgrid.ColContaining(p.X), tdbgrid.RowContaining(p.Y));

            // if we've moved to another row/column then hide the supertooltip
            if (!this._rowcol.Equals(curRowCol))
            {
                this.c1SuperTooltip1.Hide(tdbgrid);
            }
        }
示例#5
0
        public DataTable DG_Filtrar(DataTable DtTabla, string c_CadFiltro, C1.Win.C1TrueDBGrid.C1TrueDBGrid xDg)
        {
            DataTable xDtTemp;

            xDtTemp = DtTabla;

            if (c_CadFiltro != "")
            {
                Genericas funDatos = new Genericas();
                xDtTemp = funDatos.DataTableFiltrar(DtTabla, c_CadFiltro);
            }

            xDg.DataSource = xDtTemp;
            return(xDtTemp);
        }
示例#6
0
        public string DG_LeerCondicionesFiltro(C1.Win.C1TrueDBGrid.C1TrueDBGrid xDg)
        {
            C1.Win.C1TrueDBGrid.C1DataColumnCollection t_Cols;
            string strtmp;
            int    intCol = 0;

            t_Cols = xDg.Columns;
            strtmp = "";
            int n_numcri = 0;

            for (intCol = 0; intCol <= t_Cols.Count - 1; intCol++)
            {
                if (xDg.Columns[intCol].FilterText != "")
                {
                    if (n_numcri == 1)
                    {
                        strtmp = strtmp + " AND ";
                    }

                    if (xDg.Columns[intCol].DataType.Name == "String")
                    {
                        strtmp   = strtmp + xDg.Columns[intCol].DataField.ToString() + " LIKE '%" + xDg.Columns[intCol].FilterText + "%'";
                        n_numcri = n_numcri + 1;
                    }
                    if (xDg.Columns[intCol].DataType.Name == "Double")
                    {
                        strtmp   = strtmp + xDg.Columns[intCol].DataField.ToString() + " = " + xDg.Columns[intCol].FilterText + "";
                        n_numcri = n_numcri + 1;
                    }
                    if (xDg.Columns[intCol].DataType.Name == "DateTime")
                    {
                        strtmp   = strtmp + xDg.Columns[intCol].DataField.ToString() + " = '" + xDg.Columns[intCol].FilterText + "'";
                        n_numcri = n_numcri + 1;
                        //if (IsDate(xDg.Columns[intCol].FilterText) = False)
                        //{
                        //    //MessageBox.Show("Formato no valido para fecha, procure ingresar dd/MM/yyyy ", "Error del usuario", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1)
                        //    //Exit For
                        //}
                        //else
                        //{
                        //    strtmp = strtmp + xDg.Columns[intCol].DataField.ToString() + " = '" + xDg.Columns[intCol].FilterText + "'";
                        //}
                    }
                }
            }

            return(strtmp);
        }
示例#7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.button1       = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location                         = new System.Drawing.Point(16, 24);
     this.c1TrueDBGrid1.Name                             = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location             = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size                 = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor           = 75D;
     this.c1TrueDBGrid1.PrintInfo.MeasurementDevice      = C1.Win.C1TrueDBGrid.PrintInfo.MeasurementDeviceEnum.Screen;
     this.c1TrueDBGrid1.PrintInfo.MeasurementPrinterName = null;
     this.c1TrueDBGrid1.PrintInfo.PageSettings           = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                             = new System.Drawing.Size(261, 195);
     this.c1TrueDBGrid1.TabIndex                         = 0;
     this.c1TrueDBGrid1.Text                             = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                          = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(312, 24);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "Add";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(408, 266);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     this.ResumeLayout(false);
 }
示例#8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.checkBox1     = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.AllowRowSelect = false;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(16, 24);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(460, 178);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // checkBox1
     //
     this.checkBox1.Location        = new System.Drawing.Point(496, 24);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(120, 24);
     this.checkBox1.TabIndex        = 2;
     this.checkBox1.Text            = "Show CheckBoxes";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(624, 214);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     this.ResumeLayout(false);
 }
示例#9
0
        public bool DG_ExporExcel(C1.Win.C1TrueDBGrid.C1TrueDBGrid xDg
                                  , System.Windows.Forms.SaveFileDialog objCuadroDialogo
                                  , string[] columnGridNames
                                  , string[] columnHeaderNames)
        {
            bool boolExporto = false;

            //objCuadroDialogo.Filter = "MS Excel (*.xls) |*.xls;*.xls|(*.xls) |*.xls|(*.*) |*.*";
            objCuadroDialogo.Filter = "MS Excel (*.xlsx) |*.xlsx;*.xlsx|(*.xlsx) |*.xlsx|(*.*) |*.*";

            DataTable tCxC = (DataTable)xDg.DataSource;

            DataView  dtView = new DataView(tCxC);
            DataTable dtTableWithOneColumn = dtView.ToTable("Hoja 1", true, columnGridNames);

            int index = 0;

            foreach (var columnHeaderName in columnHeaderNames)
            {
                dtTableWithOneColumn.Columns[index].ColumnName = columnHeaderName;
                index += 1;
            }

            if (objCuadroDialogo.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                DataTable_To_Excel(dtTableWithOneColumn, objCuadroDialogo.FileName);
                //xDg.ExportToExcel(objCuadroDialogo.FileName);
                boolExporto = true;
            }

            string filename = "Excel.exe";

            Process proc = new Process();

            proc.EnableRaisingEvents = false;
            proc.StartInfo.FileName  = filename;
            proc.StartInfo.Arguments = objCuadroDialogo.FileName;
            proc.Start();

            return(boolExporto);
        }
示例#10
0
        public bool DG_ExporExcel(C1.Win.C1TrueDBGrid.C1TrueDBGrid xDg
                                  , System.Windows.Forms.SaveFileDialog objCuadroDialogo)
        {
            bool boolExporto = false;

            objCuadroDialogo.Filter = "MS Excel (*.xls) |*.xls;*.xls|(*.xls) |*.xls|(*.*) |*.*";

            if (objCuadroDialogo.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                xDg.ExportToExcel(objCuadroDialogo.FileName);
                boolExporto = true;
            }

            string filename = "Excel.exe";

            Process proc = new Process();

            proc.EnableRaisingEvents = false;
            proc.StartInfo.FileName  = filename;
            proc.StartInfo.Arguments = objCuadroDialogo.FileName;
            proc.Start();

            return(boolExporto);
        }
示例#11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(480, 294);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.MouseDown             += new System.Windows.Forms.MouseEventHandler(this.c1TrueDBGrid1_MouseDown);
     this.c1TrueDBGrid1.FetchCellStyle        += new C1.Win.C1TrueDBGrid.FetchCellStyleEventHandler(this.c1TrueDBGrid1_FetchCellStyle);
     this.c1TrueDBGrid1.MouseMove             += new System.Windows.Forms.MouseEventHandler(this.c1TrueDBGrid1_MouseMove);
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(480, 294);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     this.ResumeLayout(false);
 }
示例#12
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();

            this.dsComposer1         = new Tutorial_2.DsComposer();
            this.button1             = new System.Windows.Forms.Button();
            this.textBox1            = new System.Windows.Forms.TextBox();
            this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
            this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
            this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsComposer1)).BeginInit();
            this.SuspendLayout();
            //
            // c1TrueDBGrid1
            //
            this.c1TrueDBGrid1.Caption       = "C1TrueDBGrid.Net";
            this.c1TrueDBGrid1.CaptionHeight = 17;
            this.c1TrueDBGrid1.DataMember    = "Composer";
            this.c1TrueDBGrid1.DataSource    = this.dsComposer1;
            this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
            this.c1TrueDBGrid1.Location               = new System.Drawing.Point(0, 0);
            this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
            this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
            this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
            this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
            this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
            this.c1TrueDBGrid1.RowHeight              = 15;
            this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(360, 178);
            this.c1TrueDBGrid1.TabIndex               = 0;
            this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
            //
            // dsComposer1
            //
            this.dsComposer1.DataSetName = "DsComposer";
            this.dsComposer1.Locale      = new System.Globalization.CultureInfo("en-US");
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(8, 184);
            this.button1.Name     = "button1";
            this.button1.Size     = new System.Drawing.Size(88, 23);
            this.button1.TabIndex = 1;
            this.button1.Text     = "Execute SQL";
            this.button1.Click   += new System.EventHandler(this.button1_Click);
            //
            // textBox1
            //
            this.textBox1.Location  = new System.Drawing.Point(0, 216);
            this.textBox1.Multiline = true;
            this.textBox1.Name      = "textBox1";
            this.textBox1.Size      = new System.Drawing.Size(472, 80);
            this.textBox1.TabIndex  = 2;
            this.textBox1.Text      = "Enter SQL statement here";
            //
            // oleDbDataAdapter1
            //
            this.oleDbDataAdapter1.DeleteCommand = this.oleDbDeleteCommand1;
            this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
            this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
            this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "Composer", new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("First", "First"),
                    new System.Data.Common.DataColumnMapping("Last", "Last"),
                    new System.Data.Common.DataColumnMapping("Country", "Country"),
                    new System.Data.Common.DataColumnMapping("Birth", "Birth"),
                    new System.Data.Common.DataColumnMapping("Death", "Death")
                })
            });
            this.oleDbDataAdapter1.UpdateCommand = this.oleDbUpdateCommand1;
            //
            // oleDbDeleteCommand1
            //
            this.oleDbDeleteCommand1.CommandText = resources.GetString("oleDbDeleteCommand1.CommandText");
            this.oleDbDeleteCommand1.Connection  = this.oleDbConnection1;
            this.oleDbDeleteCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
                new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Last", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Birth", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Birth1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Country", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Country1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Death", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Death1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_First", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_First1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null)
            });
            //
            // oleDbConnection1
            //
            this.oleDbConnection1.ConnectionString = resources.GetString("oleDbConnection1.ConnectionString");
            //
            // oleDbInsertCommand1
            //
            this.oleDbInsertCommand1.CommandText = "INSERT INTO Composer(Birth, Country, Death, First, Last) VALUES (?, ?, ?, ?, ?)";
            this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
            this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
                new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"),
                new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"),
                new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"),
                new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"),
                new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last")
            });
            //
            // oleDbSelectCommand1
            //
            this.oleDbSelectCommand1.CommandText = "SELECT Birth, Country, Death, First, Last FROM Composer";
            this.oleDbSelectCommand1.Connection  = this.oleDbConnection1;
            //
            // oleDbUpdateCommand1
            //
            this.oleDbUpdateCommand1.CommandText = resources.GetString("oleDbUpdateCommand1.CommandText");
            this.oleDbUpdateCommand1.Connection  = this.oleDbConnection1;
            this.oleDbUpdateCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
                new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"),
                new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"),
                new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"),
                new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"),
                new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"),
                new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Last", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Birth", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Birth1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Birth", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Country", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Country1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Country", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Death", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_Death1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "Death", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_First", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null),
                new System.Data.OleDb.OleDbParameter("Original_First1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "First", System.Data.DataRowVersion.Original, null)
            });
            //
            // Form1
            //
            this.ClientSize = new System.Drawing.Size(360, 286);
            this.Controls.Add(this.textBox1);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.c1TrueDBGrid1);
            this.Name  = "Form1";
            this.Text  = "Tutorial 02";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsComposer1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
示例#13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dataSet11           = new SettingCellToNull.DataSet1();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.DataSource = this.dataSet11.Orders;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(16, 24);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(528, 216);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.BeforeColUpdate       += new C1.Win.C1TrueDBGrid.BeforeColUpdateEventHandler(this.c1TrueDBGrid1_BeforeColUpdate);
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Orders", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("OrderID", "OrderID"),
             new System.Data.Common.DataColumnMapping("CustomerID", "CustomerID"),
             new System.Data.Common.DataColumnMapping("EmployeeID", "EmployeeID"),
             new System.Data.Common.DataColumnMapping("OrderDate", "OrderDate"),
             new System.Data.Common.DataColumnMapping("RequiredDate", "RequiredDate"),
             new System.Data.Common.DataColumnMapping("ShippedDate", "ShippedDate"),
             new System.Data.Common.DataColumnMapping("ShipVia", "ShipVia"),
             new System.Data.Common.DataColumnMapping("Freight", "Freight"),
             new System.Data.Common.DataColumnMapping("ShipName", "ShipName"),
             new System.Data.Common.DataColumnMapping("ShipAddress", "ShipAddress"),
             new System.Data.Common.DataColumnMapping("ShipCity", "ShipCity"),
             new System.Data.Common.DataColumnMapping("ShipRegion", "ShipRegion"),
             new System.Data.Common.DataColumnMapping("ShipPostalCode", "ShipPostalCode"),
             new System.Data.Common.DataColumnMapping("ShipCountry", "ShipCountry")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = resources.GetString("oleDbInsertCommand1.CommandText");
     this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("CustomerID", System.Data.OleDb.OleDbType.VarWChar, 5, "CustomerID"),
         new System.Data.OleDb.OleDbParameter("EmployeeID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "EmployeeID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("Freight", System.Data.OleDb.OleDbType.Currency, 0, System.Data.ParameterDirection.Input, false, ((byte)(19)), ((byte)(0)), "Freight", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("OrderDate", System.Data.OleDb.OleDbType.DBDate, 0, "OrderDate"),
         new System.Data.OleDb.OleDbParameter("OrderID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "OrderID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("RequiredDate", System.Data.OleDb.OleDbType.DBDate, 0, "RequiredDate"),
         new System.Data.OleDb.OleDbParameter("ShipAddress", System.Data.OleDb.OleDbType.VarWChar, 60, "ShipAddress"),
         new System.Data.OleDb.OleDbParameter("ShipCity", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipCity"),
         new System.Data.OleDb.OleDbParameter("ShipCountry", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipCountry"),
         new System.Data.OleDb.OleDbParameter("ShipName", System.Data.OleDb.OleDbType.VarWChar, 40, "ShipName"),
         new System.Data.OleDb.OleDbParameter("ShippedDate", System.Data.OleDb.OleDbType.DBDate, 0, "ShippedDate"),
         new System.Data.OleDb.OleDbParameter("ShipPostalCode", System.Data.OleDb.OleDbType.VarWChar, 10, "ShipPostalCode"),
         new System.Data.OleDb.OleDbParameter("ShipRegion", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipRegion"),
         new System.Data.OleDb.OleDbParameter("ShipVia", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "ShipVia", System.Data.DataRowVersion.Current, null)
     });
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\ComponentOne Studi" +
                                              @"o.NET 2.0\Common\C1Nwind.mdb;";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT CustomerID, EmployeeID, Freight, OrderDate, OrderID, RequiredDate, ShipAdd" +
                                            "ress, ShipCity, ShipCountry, ShipName, ShippedDate, ShipPostalCode, ShipRegion, " +
                                            "ShipVia FROM Orders";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(568, 266);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     this.ResumeLayout(false);
 }
示例#14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAgreements));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnDocFinder = new DevExpress.XtraEditors.SimpleButton();
     this.cmbFY = new DevExpress.XtraEditors.ComboBoxEdit();
     this.mskEndDate = new System.Windows.Forms.MaskedTextBox();
     this.mskPostingDate = new System.Windows.Forms.MaskedTextBox();
     this.mskDocDate = new System.Windows.Forms.MaskedTextBox();
     this.cmbStatus = new DevExpress.XtraEditors.ComboBoxEdit();
     this.grpCustomer = new DevExpress.XtraEditors.GroupControl();
     this.txtCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.txtCustomerID = new DevExpress.XtraEditors.TextEdit();
     this.btnCustomerPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.chkOneTime = new System.Windows.Forms.CheckBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.mskStartDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks = new DevExpress.XtraEditors.TextEdit();
     this.Deatils = new DevExpress.XtraTab.XtraTabControl();
     this.grdProductDetail = new DevExpress.XtraTab.XtraTabPage();
     this.grdAgreementDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
     this.txtSupplierName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txtDocNo = new DevExpress.XtraEditors.TextEdit();
     this.txtSupplierID = new DevExpress.XtraEditors.TextEdit();
     this.btnPurchaseOrderPickList = new DevExpress.XtraEditors.SimpleButton();
     this.btnSupplierPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.mskCompanyDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnSelectFrom = new DevExpress.XtraEditors.SimpleButton();
     this.btnSelectTo = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbFY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCustomer)).BeginInit();
     this.grpCustomer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Deatils)).BeginInit();
     this.Deatils.SuspendLayout();
     this.grdProductDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAgreementDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // labelControl2
     //
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(490, 26);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(86, 18);
     this.labelControl2.TabIndex = 59;
     this.labelControl2.Text = "Doc No.";
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl1.AppearanceCaption.Options.UseFont = true;
     this.groupControl1.Controls.Add(this.btnDocFinder);
     this.groupControl1.Controls.Add(this.cmbFY);
     this.groupControl1.Controls.Add(this.mskEndDate);
     this.groupControl1.Controls.Add(this.mskPostingDate);
     this.groupControl1.Controls.Add(this.mskDocDate);
     this.groupControl1.Controls.Add(this.cmbStatus);
     this.groupControl1.Controls.Add(this.grpCustomer);
     this.groupControl1.Controls.Add(this.chkOneTime);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.mskStartDate);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.groupControl4);
     this.groupControl1.Controls.Add(this.Deatils);
     this.groupControl1.Controls.Add(this.txtRefNo);
     this.groupControl1.Controls.Add(this.txtSupplierName);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.txtDocNo);
     this.groupControl1.Controls.Add(this.txtSupplierID);
     this.groupControl1.Controls.Add(this.btnPurchaseOrderPickList);
     this.groupControl1.Controls.Add(this.btnSupplierPickList);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.mskCompanyDate);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(754, 460);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Agreement Information";
     //
     // btnDocFinder
     //
     this.btnDocFinder.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnDocFinder.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnDocFinder.Appearance.Options.UseFont = true;
     this.btnDocFinder.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnDocFinder.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnDocFinder.Image = global::ERPGUI.Properties.Resources.new_12_x_12;
     this.btnDocFinder.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnDocFinder.Location = new System.Drawing.Point(723, 22);
     this.btnDocFinder.Name = "btnDocFinder";
     this.btnDocFinder.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnDocFinder.Size = new System.Drawing.Size(25, 20);
     this.btnDocFinder.TabIndex = 85;
     this.btnDocFinder.TabStop = false;
     this.btnDocFinder.Click += new System.EventHandler(this.btnDocFinder_Click);
     //
     // cmbFY
     //
     this.cmbFY.Location = new System.Drawing.Point(536, 23);
     this.cmbFY.Name = "cmbFY";
     this.cmbFY.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbFY.Properties.Items.AddRange(new object[] {
     "0910",
     "1011",
     "1112",
     "1213",
     "1314",
     "1415",
     "1516",
     "1617",
     "1718",
     "1819",
     "1920",
     "2021",
     "2122"});
     this.cmbFY.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbFY.Size = new System.Drawing.Size(53, 20);
     this.cmbFY.TabIndex = 83;
     //
     // mskEndDate
     //
     this.mskEndDate.Location = new System.Drawing.Point(590, 102);
     this.mskEndDate.Mask = "00/00/0000";
     this.mskEndDate.Name = "mskEndDate";
     this.mskEndDate.Size = new System.Drawing.Size(130, 21);
     this.mskEndDate.TabIndex = 76;
     this.mskEndDate.TabStop = false;
     this.mskEndDate.ValidatingType = typeof(System.DateTime);
     this.mskEndDate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.mskEndDate_KeyPress);
     //
     // mskPostingDate
     //
     this.mskPostingDate.Location = new System.Drawing.Point(590, 81);
     this.mskPostingDate.Mask = "00/00/0000";
     this.mskPostingDate.Name = "mskPostingDate";
     this.mskPostingDate.Size = new System.Drawing.Size(130, 21);
     this.mskPostingDate.TabIndex = 68;
     this.mskPostingDate.TabStop = false;
     this.mskPostingDate.ValidatingType = typeof(System.DateTime);
     this.mskPostingDate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.mskPostingDate_KeyPress);
     //
     // mskDocDate
     //
     this.mskDocDate.Location = new System.Drawing.Point(590, 63);
     this.mskDocDate.Mask = "00/00/0000";
     this.mskDocDate.Name = "mskDocDate";
     this.mskDocDate.Size = new System.Drawing.Size(130, 21);
     this.mskDocDate.TabIndex = 65;
     this.mskDocDate.TabStop = false;
     this.mskDocDate.ValidatingType = typeof(System.DateTime);
     this.mskDocDate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.mskDocDate_KeyPress);
     //
     // cmbStatus
     //
     this.cmbStatus.Location = new System.Drawing.Point(590, 43);
     this.cmbStatus.Name = "cmbStatus";
     this.cmbStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbStatus.Properties.Items.AddRange(new object[] {
     "Open",
     "Closed",
     "Draft"});
     this.cmbStatus.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbStatus.Size = new System.Drawing.Size(130, 20);
     this.cmbStatus.TabIndex = 84;
     //
     // grpCustomer
     //
     this.grpCustomer.Controls.Add(this.txtCustomerName);
     this.grpCustomer.Controls.Add(this.txtCustomerID);
     this.grpCustomer.Controls.Add(this.btnCustomerPickList);
     this.grpCustomer.Controls.Add(this.labelControl11);
     this.grpCustomer.Location = new System.Drawing.Point(394, 389);
     this.grpCustomer.Name = "grpCustomer";
     this.grpCustomer.Size = new System.Drawing.Size(349, 66);
     this.grpCustomer.TabIndex = 79;
     this.grpCustomer.Text = "Customer";
     this.grpCustomer.Visible = false;
     //
     // txtCustomerName
     //
     this.txtCustomerName.Enabled = false;
     this.txtCustomerName.EnterMoveNextControl = true;
     this.txtCustomerName.Location = new System.Drawing.Point(169, 34);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Properties.MaxLength = 3;
     this.txtCustomerName.Size = new System.Drawing.Size(175, 20);
     this.txtCustomerName.TabIndex = 62;
     //
     // txtCustomerID
     //
     this.txtCustomerID.EnterMoveNextControl = true;
     this.txtCustomerID.Location = new System.Drawing.Point(58, 33);
     this.txtCustomerID.Name = "txtCustomerID";
     this.txtCustomerID.Properties.MaxLength = 3;
     this.txtCustomerID.Size = new System.Drawing.Size(77, 20);
     this.txtCustomerID.TabIndex = 59;
     //
     // btnCustomerPickList
     //
     this.btnCustomerPickList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnCustomerPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnCustomerPickList.Appearance.Options.UseFont = true;
     this.btnCustomerPickList.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnCustomerPickList.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnCustomerPickList.Image = global::ERPGUI.Properties.Resources.new_12_x_12;
     this.btnCustomerPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnCustomerPickList.Location = new System.Drawing.Point(138, 34);
     this.btnCustomerPickList.Name = "btnCustomerPickList";
     this.btnCustomerPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnCustomerPickList.Size = new System.Drawing.Size(25, 20);
     this.btnCustomerPickList.TabIndex = 60;
     this.btnCustomerPickList.TabStop = false;
     this.btnCustomerPickList.Click += new System.EventHandler(this.btnCustomerPickList_Click);
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineStyle = System.Drawing.Drawing2D.DashStyle.Dot;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(5, 35);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(120, 20);
     this.labelControl11.TabIndex = 61;
     this.labelControl11.Text = "Customer";
     //
     // chkOneTime
     //
     this.chkOneTime.AutoSize = true;
     this.chkOneTime.Location = new System.Drawing.Point(317, 389);
     this.chkOneTime.Name = "chkOneTime";
     this.chkOneTime.Size = new System.Drawing.Size(71, 17);
     this.chkOneTime.TabIndex = 78;
     this.chkOneTime.Text = "One Time";
     this.chkOneTime.UseVisualStyleBackColor = true;
     this.chkOneTime.CheckedChanged += new System.EventHandler(this.chkOneTime_CheckedChanged);
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(490, 103);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(118, 22);
     this.labelControl10.TabIndex = 75;
     this.labelControl10.Text = "End Date";
     //
     // mskStartDate
     //
     this.mskStartDate.Location = new System.Drawing.Point(59, 103);
     this.mskStartDate.Mask = "00/00/0000";
     this.mskStartDate.Name = "mskStartDate";
     this.mskStartDate.Size = new System.Drawing.Size(179, 21);
     this.mskStartDate.TabIndex = 74;
     this.mskStartDate.TabStop = false;
     this.mskStartDate.ValidatingType = typeof(System.DateTime);
     this.mskStartDate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.mskStartDate_KeyPress);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(10, 102);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(95, 22);
     this.labelControl9.TabIndex = 73;
     this.labelControl9.Text = "Star Date";
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.txtRemarks);
     this.groupControl4.Location = new System.Drawing.Point(10, 389);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(301, 64);
     this.groupControl4.TabIndex = 72;
     this.groupControl4.Text = "Remarks";
     //
     // txtRemarks
     //
     this.txtRemarks.EnterMoveNextControl = true;
     this.txtRemarks.Location = new System.Drawing.Point(4, 31);
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Properties.MaxLength = 6;
     this.txtRemarks.Size = new System.Drawing.Size(294, 20);
     this.txtRemarks.TabIndex = 2;
     this.txtRemarks.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRemarks_KeyPress);
     //
     // Deatils
     //
     this.Deatils.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
     this.Deatils.Appearance.Options.UseBackColor = true;
     this.Deatils.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.Deatils.BorderStylePage = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.Deatils.Location = new System.Drawing.Point(1, 131);
     this.Deatils.Name = "Deatils";
     this.Deatils.SelectedTabPage = this.grdProductDetail;
     this.Deatils.Size = new System.Drawing.Size(754, 245);
     this.Deatils.TabIndex = 71;
     this.Deatils.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.grdProductDetail,
     this.xtraTabPage2});
     //
     // grdProductDetail
     //
     this.grdProductDetail.Appearance.PageClient.BackColor = System.Drawing.Color.Gray;
     this.grdProductDetail.Appearance.PageClient.Options.UseBackColor = true;
     this.grdProductDetail.Controls.Add(this.grdAgreementDetails);
     this.grdProductDetail.Name = "grdProductDetail";
     this.grdProductDetail.Size = new System.Drawing.Size(746, 215);
     this.grdProductDetail.Text = "Agreement Details";
     //
     // grdAgreementDetails
     //
     this.grdAgreementDetails.AllowAddNew = true;
     this.grdAgreementDetails.BackColor = System.Drawing.Color.WhiteSmoke;
     this.grdAgreementDetails.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.grdAgreementDetails.CaptionHeight = 17;
     this.grdAgreementDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdAgreementDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdAgreementDetails.Images"))));
     this.grdAgreementDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdAgreementDetails.Images1"))));
     this.grdAgreementDetails.LinesPerRow = 1;
     this.grdAgreementDetails.Location = new System.Drawing.Point(4, 3);
     this.grdAgreementDetails.Name = "grdAgreementDetails";
     this.grdAgreementDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdAgreementDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdAgreementDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdAgreementDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdAgreementDetails.PrintInfo.PageSettings")));
     this.grdAgreementDetails.RecordSelectors = false;
     this.grdAgreementDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdAgreementDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdAgreementDetails.RowHeight = 15;
     this.grdAgreementDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdAgreementDetails.Size = new System.Drawing.Size(741, 209);
     this.grdAgreementDetails.TabIndex = 11;
     this.grdAgreementDetails.Text = "c1TrueDBGrid1";
     this.grdAgreementDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.System;
     this.grdAgreementDetails.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdAgreementDetails_ButtonClick);
     this.grdAgreementDetails.PropBag = resources.GetString("grdAgreementDetails.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(746, 215);
     this.xtraTabPage2.Text = "Attachments";
     //
     // txtRefNo
     //
     this.txtRefNo.EnterMoveNextControl = true;
     this.txtRefNo.Location = new System.Drawing.Point(59, 63);
     this.txtRefNo.Name = "txtRefNo";
     this.txtRefNo.Properties.MaxLength = 6;
     this.txtRefNo.Size = new System.Drawing.Size(179, 20);
     this.txtRefNo.TabIndex = 1;
     //
     // txtSupplierName
     //
     this.txtSupplierName.Enabled = false;
     this.txtSupplierName.Location = new System.Drawing.Point(59, 45);
     this.txtSupplierName.Name = "txtSupplierName";
     this.txtSupplierName.Properties.MaxLength = 30;
     this.txtSupplierName.Size = new System.Drawing.Size(179, 20);
     this.txtSupplierName.TabIndex = 47;
     this.txtSupplierName.TabStop = false;
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(11, 46);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(84, 18);
     this.labelControl8.TabIndex = 70;
     this.labelControl8.Text = "Name   ";
     //
     // labelControl3
     //
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl3.LineVisible = true;
     this.labelControl3.Location = new System.Drawing.Point(490, 44);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(118, 18);
     this.labelControl3.TabIndex = 66;
     this.labelControl3.Text = "Status";
     //
     // labelControl4
     //
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(10, 64);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(85, 18);
     this.labelControl4.TabIndex = 61;
     this.labelControl4.Text = "Ref. No.";
     //
     // txtDocNo
     //
     this.txtDocNo.Location = new System.Drawing.Point(590, 23);
     this.txtDocNo.Name = "txtDocNo";
     this.txtDocNo.Properties.MaxLength = 9;
     this.txtDocNo.Size = new System.Drawing.Size(130, 20);
     this.txtDocNo.TabIndex = 0;
     //
     // txtSupplierID
     //
     this.txtSupplierID.EnterMoveNextControl = true;
     this.txtSupplierID.Location = new System.Drawing.Point(59, 27);
     this.txtSupplierID.Name = "txtSupplierID";
     this.txtSupplierID.Properties.MaxLength = 3;
     this.txtSupplierID.Size = new System.Drawing.Size(179, 20);
     this.txtSupplierID.TabIndex = 4;
     this.txtSupplierID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSupplierID_KeyPress);
     //
     // btnPurchaseOrderPickList
     //
     this.btnPurchaseOrderPickList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnPurchaseOrderPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPurchaseOrderPickList.Appearance.Options.UseFont = true;
     this.btnPurchaseOrderPickList.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnPurchaseOrderPickList.Image = global::ERPGUI.Properties.Resources.new_12_x_12;
     this.btnPurchaseOrderPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnPurchaseOrderPickList.Location = new System.Drawing.Point(695, 27);
     this.btnPurchaseOrderPickList.Name = "btnPurchaseOrderPickList";
     this.btnPurchaseOrderPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPurchaseOrderPickList.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btnPurchaseOrderPickList.SuperTip = superToolTip1;
     this.btnPurchaseOrderPickList.TabIndex = 48;
     this.btnPurchaseOrderPickList.TabStop = false;
     //
     // btnSupplierPickList
     //
     this.btnSupplierPickList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnSupplierPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnSupplierPickList.Appearance.Options.UseFont = true;
     this.btnSupplierPickList.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnSupplierPickList.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSupplierPickList.Image = global::ERPGUI.Properties.Resources.new_12_x_12;
     this.btnSupplierPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnSupplierPickList.Location = new System.Drawing.Point(239, 25);
     this.btnSupplierPickList.Name = "btnSupplierPickList";
     this.btnSupplierPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnSupplierPickList.Size = new System.Drawing.Size(25, 20);
     this.btnSupplierPickList.TabIndex = 53;
     this.btnSupplierPickList.TabStop = false;
     this.btnSupplierPickList.Click += new System.EventHandler(this.btnSupplierPickList_Click);
     //
     // labelControl7
     //
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineStyle = System.Drawing.Drawing2D.DashStyle.Dot;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(10, 27);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(115, 18);
     this.labelControl7.TabIndex = 58;
     this.labelControl7.Text = "B.P         ";
     //
     // mskCompanyDate
     //
     this.mskCompanyDate.Location = new System.Drawing.Point(59, 82);
     this.mskCompanyDate.Mask = "00/00/0000";
     this.mskCompanyDate.Name = "mskCompanyDate";
     this.mskCompanyDate.Size = new System.Drawing.Size(179, 21);
     this.mskCompanyDate.TabIndex = 2;
     this.mskCompanyDate.ValidatingType = typeof(System.DateTime);
     //
     // labelControl5
     //
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(11, 83);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 62;
     this.labelControl5.Text = "Date";
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(490, 64);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(112, 18);
     this.labelControl1.TabIndex = 57;
     this.labelControl1.Text = "Doc Date";
     //
     // labelControl6
     //
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(490, 82);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(112, 22);
     this.labelControl6.TabIndex = 67;
     this.labelControl6.Text = "Posting Date";
     //
     // groupControl2
     //
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnPost);
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnSave);
     this.groupControl2.Controls.Add(this.btnSelectFrom);
     this.groupControl2.Controls.Add(this.btnSelectTo);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 459);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(755, 49);
     this.groupControl2.TabIndex = 5;
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(5, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(58, 32);
     toolTipItem1.Text = "Add New Module";
     superToolTip2.Items.Add(toolTipItem1);
     this.btnAdd.SuperTip = superToolTip2;
     this.btnAdd.TabIndex = 21;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnPost
     //
     this.btnPost.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(67, 8);
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(58, 32);
     toolTipItem2.Text = "Edit Module Details";
     superToolTip3.Items.Add(toolTipItem2);
     this.btnPost.SuperTip = superToolTip3;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = " &Post ";
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(131, 8);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(59, 32);
     toolTipItem3.Text = "Close Modules List";
     superToolTip4.Items.Add(toolTipItem3);
     this.btnExit.SuperTip = superToolTip4;
     this.btnExit.TabIndex = 19;
     this.btnExit.Text = "Cancel";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(-78, 8);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem4);
     this.btnSave.SuperTip = superToolTip5;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = " &Save ";
     //
     // btnSelectFrom
     //
     this.btnSelectFrom.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSelectFrom.Image = ((System.Drawing.Image)(resources.GetObject("btnSelectFrom.Image")));
     this.btnSelectFrom.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSelectFrom.Location = new System.Drawing.Point(437, 8);
     this.btnSelectFrom.Name = "btnSelectFrom";
     this.btnSelectFrom.Size = new System.Drawing.Size(102, 32);
     toolTipItem5.Text = "Cancel Current Operation";
     superToolTip6.Items.Add(toolTipItem5);
     this.btnSelectFrom.SuperTip = superToolTip6;
     this.btnSelectFrom.TabIndex = 18;
     this.btnSelectFrom.Text = "Select From";
     //
     // btnSelectTo
     //
     this.btnSelectTo.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSelectTo.Image = ((System.Drawing.Image)(resources.GetObject("btnSelectTo.Image")));
     this.btnSelectTo.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSelectTo.Location = new System.Drawing.Point(545, 7);
     this.btnSelectTo.Name = "btnSelectTo";
     this.btnSelectTo.Size = new System.Drawing.Size(117, 32);
     toolTipItem6.Text = "Remove Module";
     superToolTip7.Items.Add(toolTipItem6);
     this.btnSelectTo.SuperTip = superToolTip7;
     this.btnSelectTo.TabIndex = 4;
     this.btnSelectTo.Text = "Select To";
     //
     // frmAgreements
     //
     this.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(755, 508);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "frmAgreements";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Agrements";
     this.TransparencyKey = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.Load += new System.EventHandler(this.frmAgrements_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbFY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCustomer)).EndInit();
     this.grpCustomer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Deatils)).EndInit();
     this.Deatils.ResumeLayout(false);
     this.grdProductDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAgreementDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCustomers));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbPersonal = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.txtOldCodes = new DevExpress.XtraEditors.TextEdit();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.txtCompanyBrickCode = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txtSubBrickName = new DevExpress.XtraEditors.TextEdit();
     this.txtSubBrickID = new DevExpress.XtraEditors.TextEdit();
     this.btnPickListSubBrickID = new DevExpress.XtraEditors.SimpleButton();
     this.txtABGroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.txtApprovalID = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyCode = new DevExpress.XtraEditors.TextEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.txtFax = new DevExpress.XtraEditors.TextEdit();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.txtAddress = new System.Windows.Forms.TextBox();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txtBirthDate = new System.Windows.Forms.MaskedTextBox();
     this.txtPostalCode = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtFirstName = new DevExpress.XtraEditors.TextEdit();
     this.txtCityName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.btnPickListCity = new DevExpress.XtraEditors.SimpleButton();
     this.txtLastName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtPhone = new DevExpress.XtraEditors.TextEdit();
     this.txtMobile = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txtCityID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.tbBusiness = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.chkSTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.txtOCGName = new DevExpress.XtraEditors.TextEdit();
     this.chkNorcotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkIncomeTax = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.btnGroupPickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtNTN = new DevExpress.XtraEditors.TextEdit();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.cmbPaymentMode = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.txtCreditLimit = new DevExpress.XtraEditors.TextEdit();
     this.btnPickListAccount = new DevExpress.XtraEditors.SimpleButton();
     this.txtQualifiedPersonName = new DevExpress.XtraEditors.TextEdit();
     this.txtGSTReg = new DevExpress.XtraEditors.TextEdit();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.txtOCGID = new DevExpress.XtraEditors.TextEdit();
     this.txtCreditDays = new DevExpress.XtraEditors.TextEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.txtAccountCode = new System.Windows.Forms.MaskedTextBox();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.cmbCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAccountName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.tbLicenses = new DevExpress.XtraTab.XtraTabPage();
     this.grdLicenses = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbCompanyPolicies = new DevExpress.XtraTab.XtraTabPage();
     this.grdCompanyPolicies = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbProductPolicies = new DevExpress.XtraTab.XtraTabPage();
     this.grdProductPolicies = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbClosedGroups = new DevExpress.XtraTab.XtraTabPage();
     this.grdClosedGroups = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbCommission = new DevExpress.XtraTab.XtraTabPage();
     this.grdCommission = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbSpecialRates = new DevExpress.XtraTab.XtraTabPage();
     this.grdSpecialRates = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbBonus = new DevExpress.XtraTab.XtraTabPage();
     this.grdBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbSaleManWiseDetail = new DevExpress.XtraTab.XtraTabPage();
     this.grdSalemanWiseDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbCreditPolicy = new DevExpress.XtraTab.XtraTabPage();
     this.grdCreditPolicy = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbAccountInformation = new DevExpress.XtraTab.XtraTabPage();
     this.grdAccountInformation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbNotes = new DevExpress.XtraTab.XtraTabPage();
     this.txtNotes = new System.Windows.Forms.TextBox();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.chkIsDiscontinued = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerID = new DevExpress.XtraEditors.TextEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tbPersonal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOldCodes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyBrickCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubBrickName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubBrickID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtABGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApprovalID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPostalCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCityName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCityID.Properties)).BeginInit();
     this.tbBusiness.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkSTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOCGName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorcotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncomeTax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNTN.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQualifiedPersonName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGSTReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOCGID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountName.Properties)).BeginInit();
     this.tbLicenses.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdLicenses)).BeginInit();
     this.tbCompanyPolicies.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCompanyPolicies)).BeginInit();
     this.tbProductPolicies.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdProductPolicies)).BeginInit();
     this.tbClosedGroups.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClosedGroups)).BeginInit();
     this.tbCommission.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCommission)).BeginInit();
     this.tbSpecialRates.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdSpecialRates)).BeginInit();
     this.tbBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdBonus)).BeginInit();
     this.tbSaleManWiseDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdSalemanWiseDetails)).BeginInit();
     this.tbCreditPolicy.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCreditPolicy)).BeginInit();
     this.tbAccountInformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAccountInformation)).BeginInit();
     this.tbNotes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsDiscontinued.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.xtraTabControl1.Location = new System.Drawing.Point(2, 21);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tbPersonal;
     this.xtraTabControl1.Size = new System.Drawing.Size(700, 275);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbPersonal,
     this.tbBusiness,
     this.tbLicenses,
     this.tbCompanyPolicies,
     this.tbProductPolicies,
     this.tbClosedGroups,
     this.tbCommission,
     this.tbSpecialRates,
     this.tbBonus,
     this.tbSaleManWiseDetail,
     this.tbCreditPolicy,
     this.tbAccountInformation,
     this.tbNotes});
     //
     // tbPersonal
     //
     this.tbPersonal.Controls.Add(this.groupControl5);
     this.tbPersonal.Controls.Add(this.groupControl4);
     this.tbPersonal.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbPersonal.Name = "tbPersonal";
     this.tbPersonal.Size = new System.Drawing.Size(694, 243);
     this.tbPersonal.Text = "Personal";
     this.tbPersonal.Tooltip = "Personal Information of Customer";
     //
     // groupControl5
     //
     this.groupControl5.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl5.Appearance.Options.UseBackColor = true;
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.txtOldCodes);
     this.groupControl5.Controls.Add(this.labelControl28);
     this.groupControl5.Controls.Add(this.txtCompanyBrickCode);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.txtSubBrickName);
     this.groupControl5.Controls.Add(this.txtSubBrickID);
     this.groupControl5.Controls.Add(this.btnPickListSubBrickID);
     this.groupControl5.Controls.Add(this.txtABGroup);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.txtApprovalID);
     this.groupControl5.Controls.Add(this.txtCompanyCode);
     this.groupControl5.Controls.Add(this.labelControl17);
     this.groupControl5.Controls.Add(this.labelControl18);
     this.groupControl5.Location = new System.Drawing.Point(350, 8);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(336, 130);
     this.groupControl5.TabIndex = 20;
     this.groupControl5.Text = "groupControl5";
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(88, 42);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip1.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip1;
     this.simpleButton5.TabIndex = 124246;
     //
     // txtOldCodes
     //
     this.txtOldCodes.EnterMoveNextControl = true;
     this.txtOldCodes.Location = new System.Drawing.Point(237, 93);
     this.txtOldCodes.Name = "txtOldCodes";
     this.txtOldCodes.Properties.MaxLength = 5;
     this.txtOldCodes.Size = new System.Drawing.Size(84, 20);
     this.txtOldCodes.TabIndex = 18;
     //
     // labelControl28
     //
     this.labelControl28.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl28.Location = new System.Drawing.Point(180, 96);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(51, 15);
     this.labelControl28.TabIndex = 20;
     this.labelControl28.Text = "Old Codes";
     //
     // txtCompanyBrickCode
     //
     this.txtCompanyBrickCode.EnterMoveNextControl = true;
     this.txtCompanyBrickCode.Location = new System.Drawing.Point(112, 93);
     this.txtCompanyBrickCode.Name = "txtCompanyBrickCode";
     this.txtCompanyBrickCode.Properties.MaxLength = 5;
     this.txtCompanyBrickCode.Size = new System.Drawing.Size(62, 20);
     this.txtCompanyBrickCode.TabIndex = 17;
     this.txtCompanyBrickCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // labelControl15
     //
     this.labelControl15.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.labelControl15.Location = new System.Drawing.Point(14, 95);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(82, 15);
     this.labelControl15.TabIndex = 18;
     this.labelControl15.Text = "Comp Brick Code";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(14, 44);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(57, 13);
     this.labelControl14.TabIndex = 15;
     this.labelControl14.Text = "Sub Brick ID";
     //
     // txtSubBrickName
     //
     this.txtSubBrickName.Enabled = false;
     this.txtSubBrickName.EnterMoveNextControl = true;
     this.txtSubBrickName.Location = new System.Drawing.Point(212, 41);
     this.txtSubBrickName.Name = "txtSubBrickName";
     this.txtSubBrickName.Properties.MaxLength = 50;
     this.txtSubBrickName.Size = new System.Drawing.Size(109, 20);
     this.txtSubBrickName.TabIndex = 15;
     this.txtSubBrickName.TabStop = false;
     //
     // txtSubBrickID
     //
     this.txtSubBrickID.Enabled = false;
     this.txtSubBrickID.EnterMoveNextControl = true;
     this.txtSubBrickID.Location = new System.Drawing.Point(112, 41);
     this.txtSubBrickID.Name = "txtSubBrickID";
     this.txtSubBrickID.Properties.MaxLength = 4;
     this.txtSubBrickID.Size = new System.Drawing.Size(62, 20);
     this.txtSubBrickID.TabIndex = 14;
     this.txtSubBrickID.TabStop = false;
     this.txtSubBrickID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSubBrickID_KeyPress);
     this.txtSubBrickID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSubBrickID_PreviewKeyDown);
     //
     // btnPickListSubBrickID
     //
     this.btnPickListSubBrickID.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnPickListSubBrickID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickListSubBrickID.Appearance.Options.UseFont = true;
     this.btnPickListSubBrickID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickListSubBrickID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickListSubBrickID.Location = new System.Drawing.Point(180, 40);
     this.btnPickListSubBrickID.Name = "btnPickListSubBrickID";
     this.btnPickListSubBrickID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickListSubBrickID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem1.Text = "Show Sub Bricks Information";
     superToolTip2.Items.Add(toolTipTitleItem1);
     this.btnPickListSubBrickID.SuperTip = superToolTip2;
     this.btnPickListSubBrickID.TabIndex = 14;
     this.btnPickListSubBrickID.Click += new System.EventHandler(this.btnPickListSubBrickID_Click);
     //
     // txtABGroup
     //
     this.txtABGroup.EnterMoveNextControl = true;
     this.txtABGroup.Location = new System.Drawing.Point(112, 15);
     this.txtABGroup.Name = "txtABGroup";
     this.txtABGroup.Properties.MaxLength = 100;
     this.txtABGroup.Size = new System.Drawing.Size(209, 20);
     this.txtABGroup.TabIndex = 13;
     this.txtABGroup.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtABGroup_KeyPress);
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(14, 18);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(92, 13);
     this.labelControl16.TabIndex = 15;
     this.labelControl16.Text = "Customer Grouping";
     //
     // txtApprovalID
     //
     this.txtApprovalID.Location = new System.Drawing.Point(212, 67);
     this.txtApprovalID.Name = "txtApprovalID";
     this.txtApprovalID.Properties.MaxLength = 15;
     this.txtApprovalID.Size = new System.Drawing.Size(109, 20);
     this.txtApprovalID.TabIndex = 16;
     this.txtApprovalID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtApprovalID_KeyPress);
     //
     // txtCompanyCode
     //
     this.txtCompanyCode.EnterMoveNextControl = true;
     this.txtCompanyCode.Location = new System.Drawing.Point(112, 67);
     this.txtCompanyCode.Name = "txtCompanyCode";
     this.txtCompanyCode.Properties.MaxLength = 5;
     this.txtCompanyCode.Size = new System.Drawing.Size(62, 20);
     this.txtCompanyCode.TabIndex = 15;
     this.txtCompanyCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(186, 70);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(20, 13);
     this.labelControl17.TabIndex = 15;
     this.labelControl17.Text = "SRA";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(14, 70);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(84, 13);
     this.labelControl18.TabIndex = 15;
     this.labelControl18.Text = "Cust Comp. Code";
     //
     // groupControl4
     //
     this.groupControl4.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl4.Appearance.Options.UseBackColor = true;
     this.groupControl4.Controls.Add(this.txtFax);
     this.groupControl4.Controls.Add(this.labelControl21);
     this.groupControl4.Controls.Add(this.txtAddress);
     this.groupControl4.Controls.Add(this.labelControl8);
     this.groupControl4.Controls.Add(this.txtBirthDate);
     this.groupControl4.Controls.Add(this.txtPostalCode);
     this.groupControl4.Controls.Add(this.labelControl4);
     this.groupControl4.Controls.Add(this.labelControl6);
     this.groupControl4.Controls.Add(this.txtFirstName);
     this.groupControl4.Controls.Add(this.txtCityName);
     this.groupControl4.Controls.Add(this.labelControl2);
     this.groupControl4.Controls.Add(this.txtEmail);
     this.groupControl4.Controls.Add(this.btnPickListCity);
     this.groupControl4.Controls.Add(this.txtLastName);
     this.groupControl4.Controls.Add(this.labelControl3);
     this.groupControl4.Controls.Add(this.txtPhone);
     this.groupControl4.Controls.Add(this.txtMobile);
     this.groupControl4.Controls.Add(this.labelControl11);
     this.groupControl4.Controls.Add(this.txtCityID);
     this.groupControl4.Controls.Add(this.labelControl10);
     this.groupControl4.Controls.Add(this.labelControl9);
     this.groupControl4.Controls.Add(this.labelControl5);
     this.groupControl4.Location = new System.Drawing.Point(8, 8);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(336, 228);
     this.groupControl4.TabIndex = 19;
     this.groupControl4.Text = "groupControl4";
     //
     // txtFax
     //
     this.txtFax.EnterMoveNextControl = true;
     this.txtFax.Location = new System.Drawing.Point(85, 193);
     this.txtFax.Name = "txtFax";
     this.txtFax.Properties.MaxLength = 15;
     this.txtFax.Size = new System.Drawing.Size(79, 20);
     this.txtFax.TabIndex = 12;
     this.txtFax.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // labelControl21
     //
     this.labelControl21.Location = new System.Drawing.Point(23, 196);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(18, 13);
     this.labelControl21.TabIndex = 27;
     this.labelControl21.Text = "Fax";
     //
     // txtAddress
     //
     this.txtAddress.Location = new System.Drawing.Point(85, 36);
     this.txtAddress.MaxLength = 200;
     this.txtAddress.Multiline = true;
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.Size = new System.Drawing.Size(229, 46);
     this.txtAddress.TabIndex = 5;
     this.txtAddress.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAddress_KeyPress);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(170, 144);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(57, 13);
     this.labelControl8.TabIndex = 15;
     this.labelControl8.Text = "Postal Code";
     //
     // txtBirthDate
     //
     this.txtBirthDate.Location = new System.Drawing.Point(85, 140);
     this.txtBirthDate.Mask = "00/00/0000";
     this.txtBirthDate.Name = "txtBirthDate";
     this.txtBirthDate.Size = new System.Drawing.Size(79, 22);
     this.txtBirthDate.TabIndex = 8;
     this.txtBirthDate.ValidatingType = typeof(System.DateTime);
     this.txtBirthDate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtBirthDate_KeyPress);
     this.txtBirthDate.Leave += new System.EventHandler(this.txtBirthDate_Leave);
     //
     // txtPostalCode
     //
     this.txtPostalCode.EnterMoveNextControl = true;
     this.txtPostalCode.Location = new System.Drawing.Point(235, 141);
     this.txtPostalCode.Name = "txtPostalCode";
     this.txtPostalCode.Properties.MaxLength = 25;
     this.txtPostalCode.Size = new System.Drawing.Size(79, 20);
     this.txtPostalCode.TabIndex = 9;
     this.txtPostalCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(23, 91);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(24, 13);
     this.labelControl4.TabIndex = 15;
     this.labelControl4.Text = "Email";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(23, 39);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(39, 13);
     this.labelControl6.TabIndex = 15;
     this.labelControl6.Text = "Address";
     //
     // txtFirstName
     //
     this.txtFirstName.EnterMoveNextControl = true;
     this.txtFirstName.Location = new System.Drawing.Point(85, 10);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Properties.MaxLength = 25;
     this.txtFirstName.Size = new System.Drawing.Size(79, 20);
     this.txtFirstName.TabIndex = 3;
     this.txtFirstName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AlphaAllowTextBoxes_KeyPress);
     //
     // txtCityName
     //
     this.txtCityName.Enabled = false;
     this.txtCityName.EnterMoveNextControl = true;
     this.txtCityName.Location = new System.Drawing.Point(170, 115);
     this.txtCityName.Name = "txtCityName";
     this.txtCityName.Properties.MaxLength = 50;
     this.txtCityName.Size = new System.Drawing.Size(144, 20);
     this.txtCityName.TabIndex = 7;
     this.txtCityName.TabStop = false;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(23, 13);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(51, 13);
     this.labelControl2.TabIndex = 13;
     this.labelControl2.Text = "First Name";
     //
     // txtEmail
     //
     this.txtEmail.Location = new System.Drawing.Point(85, 88);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.MaxLength = 50;
     this.txtEmail.Size = new System.Drawing.Size(229, 20);
     this.txtEmail.TabIndex = 6;
     this.txtEmail.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtEmail_KeyPress);
     //
     // btnPickListCity
     //
     this.btnPickListCity.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickListCity.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickListCity.Appearance.Options.UseFont = true;
     this.btnPickListCity.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickListCity.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickListCity.Location = new System.Drawing.Point(142, 114);
     this.btnPickListCity.Name = "btnPickListCity";
     this.btnPickListCity.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickListCity.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem2.Text = "Show City\'s Information";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.btnPickListCity.SuperTip = superToolTip3;
     this.btnPickListCity.TabIndex = 7;
     this.btnPickListCity.Click += new System.EventHandler(this.btnPickListCity_Click);
     //
     // txtLastName
     //
     this.txtLastName.EnterMoveNextControl = true;
     this.txtLastName.Location = new System.Drawing.Point(235, 10);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Properties.MaxLength = 25;
     this.txtLastName.Size = new System.Drawing.Size(79, 20);
     this.txtLastName.TabIndex = 4;
     this.txtLastName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AlphaAllowTextBoxes_KeyPress);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(170, 13);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(50, 13);
     this.labelControl3.TabIndex = 15;
     this.labelControl3.Text = "Last Name";
     //
     // txtPhone
     //
     this.txtPhone.EnterMoveNextControl = true;
     this.txtPhone.Location = new System.Drawing.Point(235, 167);
     this.txtPhone.Name = "txtPhone";
     this.txtPhone.Properties.MaxLength = 15;
     this.txtPhone.Size = new System.Drawing.Size(79, 20);
     this.txtPhone.TabIndex = 11;
     this.txtPhone.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // txtMobile
     //
     this.txtMobile.EnterMoveNextControl = true;
     this.txtMobile.Location = new System.Drawing.Point(85, 167);
     this.txtMobile.Name = "txtMobile";
     this.txtMobile.Properties.MaxLength = 15;
     this.txtMobile.Size = new System.Drawing.Size(79, 20);
     this.txtMobile.TabIndex = 10;
     this.txtMobile.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(170, 170);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(30, 13);
     this.labelControl11.TabIndex = 15;
     this.labelControl11.Text = "Phone";
     //
     // txtCityID
     //
     this.txtCityID.Enabled = false;
     this.txtCityID.EnterMoveNextControl = true;
     this.txtCityID.Location = new System.Drawing.Point(85, 114);
     this.txtCityID.Name = "txtCityID";
     this.txtCityID.Properties.MaxLength = 6;
     this.txtCityID.Size = new System.Drawing.Size(51, 20);
     this.txtCityID.TabIndex = 6;
     this.txtCityID.TabStop = false;
     this.txtCityID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCityID_KeyPress);
     this.txtCityID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCityID_PreviewKeyDown);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(23, 170);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(30, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Mobile";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(23, 143);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(48, 13);
     this.labelControl9.TabIndex = 15;
     this.labelControl9.Text = "Birth Date";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(23, 117);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(19, 13);
     this.labelControl5.TabIndex = 15;
     this.labelControl5.Text = "City";
     //
     // tbBusiness
     //
     this.tbBusiness.Controls.Add(this.groupControl6);
     this.tbBusiness.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tbBusiness.Name = "tbBusiness";
     this.tbBusiness.Size = new System.Drawing.Size(694, 243);
     this.tbBusiness.Text = "Business";
     this.tbBusiness.Tooltip = "Business Information of Customer";
     //
     // groupControl6
     //
     this.groupControl6.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl6.Appearance.Options.UseBackColor = true;
     this.groupControl6.Controls.Add(this.simpleButton2);
     this.groupControl6.Controls.Add(this.simpleButton1);
     this.groupControl6.Controls.Add(this.chkSTaxReg);
     this.groupControl6.Controls.Add(this.txtOCGName);
     this.groupControl6.Controls.Add(this.chkNorcotics);
     this.groupControl6.Controls.Add(this.chkIncomeTax);
     this.groupControl6.Controls.Add(this.labelControl27);
     this.groupControl6.Controls.Add(this.labelControl24);
     this.groupControl6.Controls.Add(this.btnGroupPickList);
     this.groupControl6.Controls.Add(this.txtNTN);
     this.groupControl6.Controls.Add(this.labelControl26);
     this.groupControl6.Controls.Add(this.labelControl34);
     this.groupControl6.Controls.Add(this.labelControl25);
     this.groupControl6.Controls.Add(this.cmbPaymentMode);
     this.groupControl6.Controls.Add(this.labelControl12);
     this.groupControl6.Controls.Add(this.txtCreditLimit);
     this.groupControl6.Controls.Add(this.btnPickListAccount);
     this.groupControl6.Controls.Add(this.txtQualifiedPersonName);
     this.groupControl6.Controls.Add(this.txtGSTReg);
     this.groupControl6.Controls.Add(this.labelControl22);
     this.groupControl6.Controls.Add(this.txtOCGID);
     this.groupControl6.Controls.Add(this.txtCreditDays);
     this.groupControl6.Controls.Add(this.labelControl13);
     this.groupControl6.Controls.Add(this.labelControl20);
     this.groupControl6.Controls.Add(this.txtAccountCode);
     this.groupControl6.Controls.Add(this.labelControl19);
     this.groupControl6.Controls.Add(this.txtContactPerson);
     this.groupControl6.Controls.Add(this.cmbCategory);
     this.groupControl6.Controls.Add(this.txtAccountName);
     this.groupControl6.Controls.Add(this.labelControl23);
     this.groupControl6.Location = new System.Drawing.Point(6, 7);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.ShowCaption = false;
     this.groupControl6.Size = new System.Drawing.Size(682, 228);
     this.groupControl6.TabIndex = 120;
     this.groupControl6.Text = "groupControl6";
     this.groupControl6.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl6_Paint);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton2.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton2.Image")));
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(56, 145);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(21, 20);
     toolTipItem2.Text = "Save Module";
     superToolTip4.Items.Add(toolTipItem2);
     this.simpleButton2.SuperTip = superToolTip4;
     this.simpleButton2.TabIndex = 124247;
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(229, 172);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(21, 20);
     toolTipItem3.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem3);
     this.simpleButton1.SuperTip = superToolTip5;
     this.simpleButton1.TabIndex = 124246;
     //
     // chkSTaxReg
     //
     this.chkSTaxReg.EnterMoveNextControl = true;
     this.chkSTaxReg.Location = new System.Drawing.Point(593, 69);
     this.chkSTaxReg.Name = "chkSTaxReg";
     this.chkSTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSTaxReg.Size = new System.Drawing.Size(76, 19);
     this.chkSTaxReg.TabIndex = 14;
     //
     // txtOCGName
     //
     this.txtOCGName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtOCGName.Enabled = false;
     this.txtOCGName.EnterMoveNextControl = true;
     this.txtOCGName.Location = new System.Drawing.Point(192, 146);
     this.txtOCGName.Name = "txtOCGName";
     this.txtOCGName.Properties.MaxLength = 20;
     this.txtOCGName.Size = new System.Drawing.Size(116, 20);
     this.txtOCGName.TabIndex = 7;
     this.txtOCGName.TabStop = false;
     //
     // chkNorcotics
     //
     this.chkNorcotics.EnterMoveNextControl = true;
     this.chkNorcotics.Location = new System.Drawing.Point(519, 68);
     this.chkNorcotics.Name = "chkNorcotics";
     this.chkNorcotics.Properties.Caption = "Norcotics";
     this.chkNorcotics.Size = new System.Drawing.Size(62, 19);
     this.chkNorcotics.TabIndex = 13;
     //
     // chkIncomeTax
     //
     this.chkIncomeTax.EnterMoveNextControl = true;
     this.chkIncomeTax.Location = new System.Drawing.Point(432, 68);
     this.chkIncomeTax.Name = "chkIncomeTax";
     this.chkIncomeTax.Properties.Caption = "Income Tax";
     this.chkIncomeTax.Size = new System.Drawing.Size(83, 19);
     this.chkIncomeTax.TabIndex = 12;
     //
     // labelControl27
     //
     this.labelControl27.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl27.Location = new System.Drawing.Point(8, 95);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(53, 13);
     this.labelControl27.TabIndex = 36;
     this.labelControl27.Text = "Credit Limit";
     //
     // labelControl24
     //
     this.labelControl24.Location = new System.Drawing.Point(355, 18);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(40, 13);
     this.labelControl24.TabIndex = 110;
     this.labelControl24.Text = "NTN No.";
     //
     // btnGroupPickList
     //
     this.btnGroupPickList.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnGroupPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnGroupPickList.Appearance.Options.UseFont = true;
     this.btnGroupPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnGroupPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnGroupPickList.Location = new System.Drawing.Point(164, 145);
     this.btnGroupPickList.Name = "btnGroupPickList";
     this.btnGroupPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnGroupPickList.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem3.Text = "Show Our Company Group\'s Information";
     superToolTip6.Items.Add(toolTipTitleItem3);
     this.btnGroupPickList.SuperTip = superToolTip6;
     this.btnGroupPickList.TabIndex = 6;
     this.btnGroupPickList.Click += new System.EventHandler(this.btnGroupPickList_Click);
     //
     // txtNTN
     //
     this.txtNTN.EnterMoveNextControl = true;
     this.txtNTN.Location = new System.Drawing.Point(432, 14);
     this.txtNTN.Name = "txtNTN";
     this.txtNTN.Properties.MaxLength = 25;
     this.txtNTN.Size = new System.Drawing.Size(229, 20);
     this.txtNTN.TabIndex = 8;
     //
     // labelControl26
     //
     this.labelControl26.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl26.Location = new System.Drawing.Point(8, 121);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(47, 13);
     this.labelControl26.TabIndex = 34;
     this.labelControl26.Text = "C. Person";
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(355, 44);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(71, 13);
     this.labelControl34.TabIndex = 53;
     this.labelControl34.Text = "Payment Mode";
     //
     // labelControl25
     //
     this.labelControl25.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl25.Location = new System.Drawing.Point(8, 175);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(67, 13);
     this.labelControl25.TabIndex = 31;
     this.labelControl25.Text = "Account Code";
     //
     // cmbPaymentMode
     //
     this.cmbPaymentMode.EnterMoveNextControl = true;
     this.cmbPaymentMode.Location = new System.Drawing.Point(432, 40);
     this.cmbPaymentMode.Name = "cmbPaymentMode";
     this.cmbPaymentMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbPaymentMode.Properties.Items.AddRange(new object[] {
     "Cash Payment",
     "Day Cheque",
     "Day Receipt"});
     this.cmbPaymentMode.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbPaymentMode.Size = new System.Drawing.Size(229, 20);
     this.cmbPaymentMode.TabIndex = 9;
     //
     // labelControl12
     //
     this.labelControl12.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl12.Location = new System.Drawing.Point(8, 200);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(69, 13);
     this.labelControl12.TabIndex = 34;
     this.labelControl12.Text = "Account Name";
     //
     // txtCreditLimit
     //
     this.txtCreditLimit.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCreditLimit.EnterMoveNextControl = true;
     this.txtCreditLimit.Location = new System.Drawing.Point(79, 92);
     this.txtCreditLimit.Name = "txtCreditLimit";
     this.txtCreditLimit.Properties.MaxLength = 20;
     this.txtCreditLimit.Size = new System.Drawing.Size(79, 20);
     this.txtCreditLimit.TabIndex = 3;
     this.txtCreditLimit.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // btnPickListAccount
     //
     this.btnPickListAccount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnPickListAccount.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickListAccount.Appearance.Options.UseFont = true;
     this.btnPickListAccount.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickListAccount.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickListAccount.Location = new System.Drawing.Point(202, 173);
     this.btnPickListAccount.Name = "btnPickListAccount";
     this.btnPickListAccount.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickListAccount.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem4.Text = "Show Account Nos.";
     superToolTip7.Items.Add(toolTipTitleItem4);
     this.btnPickListAccount.SuperTip = superToolTip7;
     this.btnPickListAccount.TabIndex = 7;
     this.btnPickListAccount.Click += new System.EventHandler(this.btnPickListAccount_Click);
     //
     // txtQualifiedPersonName
     //
     this.txtQualifiedPersonName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtQualifiedPersonName.EnterMoveNextControl = true;
     this.txtQualifiedPersonName.Location = new System.Drawing.Point(119, 39);
     this.txtQualifiedPersonName.Name = "txtQualifiedPersonName";
     this.txtQualifiedPersonName.Properties.MaxLength = 20;
     this.txtQualifiedPersonName.Size = new System.Drawing.Size(189, 20);
     this.txtQualifiedPersonName.TabIndex = 2;
     this.txtQualifiedPersonName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AlphaAllowTextBoxes_KeyPress);
     //
     // txtGSTReg
     //
     this.txtGSTReg.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtGSTReg.EnterMoveNextControl = true;
     this.txtGSTReg.Location = new System.Drawing.Point(79, 66);
     this.txtGSTReg.Name = "txtGSTReg";
     this.txtGSTReg.Properties.MaxLength = 20;
     this.txtGSTReg.Size = new System.Drawing.Size(229, 20);
     this.txtGSTReg.TabIndex = 2;
     //
     // labelControl22
     //
     this.labelControl22.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl22.Location = new System.Drawing.Point(8, 16);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(45, 13);
     this.labelControl22.TabIndex = 29;
     this.labelControl22.Text = "Category";
     //
     // txtOCGID
     //
     this.txtOCGID.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtOCGID.Enabled = false;
     this.txtOCGID.EnterMoveNextControl = true;
     this.txtOCGID.Location = new System.Drawing.Point(79, 145);
     this.txtOCGID.Name = "txtOCGID";
     this.txtOCGID.Properties.MaxLength = 20;
     this.txtOCGID.Size = new System.Drawing.Size(79, 20);
     this.txtOCGID.TabIndex = 6;
     this.txtOCGID.TabStop = false;
     this.txtOCGID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtOCGID_KeyPress);
     this.txtOCGID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtOCGID_PreviewKeyDown);
     //
     // txtCreditDays
     //
     this.txtCreditDays.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCreditDays.EnterMoveNextControl = true;
     this.txtCreditDays.Location = new System.Drawing.Point(229, 93);
     this.txtCreditDays.Name = "txtCreditDays";
     this.txtCreditDays.Properties.MaxLength = 20;
     this.txtCreditDays.Size = new System.Drawing.Size(79, 20);
     this.txtCreditDays.TabIndex = 4;
     this.txtCreditDays.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl13.Location = new System.Drawing.Point(8, 147);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(36, 13);
     this.labelControl13.TabIndex = 53;
     this.labelControl13.Text = "OCG ID";
     //
     // labelControl20
     //
     this.labelControl20.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl20.Location = new System.Drawing.Point(8, 42);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(108, 13);
     this.labelControl20.TabIndex = 35;
     this.labelControl20.Text = "Qualified Person Name";
     //
     // txtAccountCode
     //
     this.txtAccountCode.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtAccountCode.Enabled = false;
     this.txtAccountCode.Location = new System.Drawing.Point(79, 171);
     this.txtAccountCode.Mask = "00-00-00-00-00-0000";
     this.txtAccountCode.Name = "txtAccountCode";
     this.txtAccountCode.Size = new System.Drawing.Size(117, 22);
     this.txtAccountCode.TabIndex = 8;
     this.txtAccountCode.TabStop = false;
     this.txtAccountCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAccountCode_KeyPress);
     //
     // labelControl19
     //
     this.labelControl19.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl19.Location = new System.Drawing.Point(8, 69);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(45, 13);
     this.labelControl19.TabIndex = 38;
     this.labelControl19.Text = "GST Reg.";
     //
     // txtContactPerson
     //
     this.txtContactPerson.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtContactPerson.EnterMoveNextControl = true;
     this.txtContactPerson.Location = new System.Drawing.Point(79, 119);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Properties.MaxLength = 20;
     this.txtContactPerson.Size = new System.Drawing.Size(229, 20);
     this.txtContactPerson.TabIndex = 5;
     this.txtContactPerson.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtContactPerson_KeyPress);
     //
     // cmbCategory
     //
     this.cmbCategory.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.cmbCategory.EnterMoveNextControl = true;
     this.cmbCategory.Location = new System.Drawing.Point(79, 13);
     this.cmbCategory.Name = "cmbCategory";
     this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbCategory.Properties.Items.AddRange(new object[] {
     "Chains Store",
     "Doctors",
     "Hospital",
     "Institution",
     "Retailer",
     "Salons",
     "WholeSaler"});
     this.cmbCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbCategory.Size = new System.Drawing.Size(229, 20);
     this.cmbCategory.TabIndex = 0;
     //
     // txtAccountName
     //
     this.txtAccountName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtAccountName.Enabled = false;
     this.txtAccountName.EnterMoveNextControl = true;
     this.txtAccountName.Location = new System.Drawing.Point(79, 198);
     this.txtAccountName.Name = "txtAccountName";
     this.txtAccountName.Properties.MaxLength = 20;
     this.txtAccountName.Size = new System.Drawing.Size(229, 20);
     this.txtAccountName.TabIndex = 9;
     this.txtAccountName.TabStop = false;
     //
     // labelControl23
     //
     this.labelControl23.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl23.Location = new System.Drawing.Point(164, 96);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(56, 13);
     this.labelControl23.TabIndex = 37;
     this.labelControl23.Text = "Credit Days";
     //
     // tbLicenses
     //
     this.tbLicenses.Controls.Add(this.grdLicenses);
     this.tbLicenses.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tbLicenses.Name = "tbLicenses";
     this.tbLicenses.Size = new System.Drawing.Size(694, 243);
     this.tbLicenses.Text = "Licenses";
     //
     // grdLicenses
     //
     this.grdLicenses.AllowAddNew = true;
     this.grdLicenses.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.grdLicenses.CaptionHeight = 17;
     this.grdLicenses.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdLicenses.Images.Add(((System.Drawing.Image)(resources.GetObject("grdLicenses.Images"))));
     this.grdLicenses.LinesPerRow = 1;
     this.grdLicenses.Location = new System.Drawing.Point(0, 0);
     this.grdLicenses.Name = "grdLicenses";
     this.grdLicenses.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdLicenses.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdLicenses.PreviewInfo.ZoomFactor = 75D;
     this.grdLicenses.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdLicenses.PrintInfo.PageSettings")));
     this.grdLicenses.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdLicenses.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdLicenses.RowHeight = 23;
     this.grdLicenses.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdLicenses.Size = new System.Drawing.Size(694, 247);
     this.grdLicenses.TabIndex = 15;
     this.grdLicenses.Text = "c1TrueDBGrid1";
     this.grdLicenses.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdLicenses.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdLicenses_AfterColUpdate);
     this.grdLicenses.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdLicenses_KeyPress);
     this.grdLicenses.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdLicenses_PreviewKeyDown);
     this.grdLicenses.PropBag = resources.GetString("grdLicenses.PropBag");
     //
     // tbCompanyPolicies
     //
     this.tbCompanyPolicies.Controls.Add(this.grdCompanyPolicies);
     this.tbCompanyPolicies.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tbCompanyPolicies.Name = "tbCompanyPolicies";
     this.tbCompanyPolicies.Size = new System.Drawing.Size(694, 243);
     this.tbCompanyPolicies.Text = "Company Policies";
     //
     // grdCompanyPolicies
     //
     this.grdCompanyPolicies.AllowAddNew = true;
     this.grdCompanyPolicies.CaptionHeight = 17;
     this.grdCompanyPolicies.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCompanyPolicies.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCompanyPolicies.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCompanyPolicies.Images"))));
     this.grdCompanyPolicies.LinesPerRow = 1;
     this.grdCompanyPolicies.Location = new System.Drawing.Point(0, 0);
     this.grdCompanyPolicies.Name = "grdCompanyPolicies";
     this.grdCompanyPolicies.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCompanyPolicies.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCompanyPolicies.PreviewInfo.ZoomFactor = 75D;
     this.grdCompanyPolicies.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCompanyPolicies.PrintInfo.PageSettings")));
     this.grdCompanyPolicies.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdCompanyPolicies.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdCompanyPolicies.RowHeight = 23;
     this.grdCompanyPolicies.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdCompanyPolicies.Size = new System.Drawing.Size(694, 243);
     this.grdCompanyPolicies.TabIndex = 1;
     this.grdCompanyPolicies.Text = "c1TrueDBGrid1";
     this.grdCompanyPolicies.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCompanyPolicies.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdCompanyPolicies_AfterColUpdate);
     this.grdCompanyPolicies.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdCompanyPolicies_KeyPress);
     this.grdCompanyPolicies.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdCompanyPolicies_PreviewKeyDown);
     this.grdCompanyPolicies.PropBag = resources.GetString("grdCompanyPolicies.PropBag");
     //
     // tbProductPolicies
     //
     this.tbProductPolicies.Controls.Add(this.grdProductPolicies);
     this.tbProductPolicies.Name = "tbProductPolicies";
     this.tbProductPolicies.Size = new System.Drawing.Size(694, 243);
     this.tbProductPolicies.Text = "Product Policies";
     this.tbProductPolicies.Tooltip = "Product Policies Details";
     //
     // grdProductPolicies
     //
     this.grdProductPolicies.AllowAddNew = true;
     this.grdProductPolicies.CaptionHeight = 17;
     this.grdProductPolicies.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdProductPolicies.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdProductPolicies.Images.Add(((System.Drawing.Image)(resources.GetObject("grdProductPolicies.Images"))));
     this.grdProductPolicies.LinesPerRow = 1;
     this.grdProductPolicies.Location = new System.Drawing.Point(0, 0);
     this.grdProductPolicies.Name = "grdProductPolicies";
     this.grdProductPolicies.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdProductPolicies.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdProductPolicies.PreviewInfo.ZoomFactor = 75D;
     this.grdProductPolicies.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdProductPolicies.PrintInfo.PageSettings")));
     this.grdProductPolicies.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductPolicies.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdProductPolicies.RowHeight = 23;
     this.grdProductPolicies.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductPolicies.Size = new System.Drawing.Size(694, 243);
     this.grdProductPolicies.TabIndex = 2;
     this.grdProductPolicies.Text = "c1TrueDBGrid1";
     this.grdProductPolicies.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdProductPolicies.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdProductPolicies_AfterColUpdate);
     this.grdProductPolicies.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdProductPolicies_KeyPress);
     this.grdProductPolicies.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdProductPolicies_PreviewKeyDown);
     this.grdProductPolicies.PropBag = resources.GetString("grdProductPolicies.PropBag");
     //
     // tbClosedGroups
     //
     this.tbClosedGroups.Controls.Add(this.grdClosedGroups);
     this.tbClosedGroups.Name = "tbClosedGroups";
     this.tbClosedGroups.Size = new System.Drawing.Size(694, 243);
     this.tbClosedGroups.Text = "Closed Groups";
     this.tbClosedGroups.Tooltip = "Closed Groups Information";
     //
     // grdClosedGroups
     //
     this.grdClosedGroups.AllowAddNew = true;
     this.grdClosedGroups.CaptionHeight = 17;
     this.grdClosedGroups.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdClosedGroups.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClosedGroups.Images.Add(((System.Drawing.Image)(resources.GetObject("grdClosedGroups.Images"))));
     this.grdClosedGroups.LinesPerRow = 1;
     this.grdClosedGroups.Location = new System.Drawing.Point(0, 0);
     this.grdClosedGroups.Name = "grdClosedGroups";
     this.grdClosedGroups.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdClosedGroups.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdClosedGroups.PreviewInfo.ZoomFactor = 75D;
     this.grdClosedGroups.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdClosedGroups.PrintInfo.PageSettings")));
     this.grdClosedGroups.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdClosedGroups.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdClosedGroups.RowHeight = 23;
     this.grdClosedGroups.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdClosedGroups.Size = new System.Drawing.Size(694, 243);
     this.grdClosedGroups.TabIndex = 2;
     this.grdClosedGroups.Text = "c1TrueDBGrid1";
     this.grdClosedGroups.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdClosedGroups.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdClosedGroups_AfterColUpdate);
     this.grdClosedGroups.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdClosedGroups_KeyPress);
     this.grdClosedGroups.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdClosedGroups_PreviewKeyDown);
     this.grdClosedGroups.PropBag = resources.GetString("grdClosedGroups.PropBag");
     //
     // tbCommission
     //
     this.tbCommission.Controls.Add(this.grdCommission);
     this.tbCommission.Name = "tbCommission";
     this.tbCommission.Size = new System.Drawing.Size(694, 243);
     this.tbCommission.Text = "Commission";
     this.tbCommission.Tooltip = "Commission";
     //
     // grdCommission
     //
     this.grdCommission.AllowAddNew = true;
     this.grdCommission.CaptionHeight = 17;
     this.grdCommission.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCommission.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCommission.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCommission.Images"))));
     this.grdCommission.LinesPerRow = 1;
     this.grdCommission.Location = new System.Drawing.Point(0, 0);
     this.grdCommission.Name = "grdCommission";
     this.grdCommission.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCommission.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCommission.PreviewInfo.ZoomFactor = 75D;
     this.grdCommission.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCommission.PrintInfo.PageSettings")));
     this.grdCommission.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdCommission.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdCommission.RowHeight = 23;
     this.grdCommission.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdCommission.Size = new System.Drawing.Size(694, 243);
     this.grdCommission.TabIndex = 3;
     this.grdCommission.Text = "c1TrueDBGrid1";
     this.grdCommission.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCommission.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdCommission_AfterColUpdate);
     this.grdCommission.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdCommission_KeyPress);
     this.grdCommission.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdCommission_PreviewKeyDown);
     this.grdCommission.PropBag = resources.GetString("grdCommission.PropBag");
     //
     // tbSpecialRates
     //
     this.tbSpecialRates.Controls.Add(this.grdSpecialRates);
     this.tbSpecialRates.Name = "tbSpecialRates";
     this.tbSpecialRates.Size = new System.Drawing.Size(694, 243);
     this.tbSpecialRates.Text = "Special Rates";
     this.tbSpecialRates.Tooltip = "Special Rates Infromation";
     //
     // grdSpecialRates
     //
     this.grdSpecialRates.AllowAddNew = true;
     this.grdSpecialRates.CaptionHeight = 17;
     this.grdSpecialRates.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdSpecialRates.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdSpecialRates.Images.Add(((System.Drawing.Image)(resources.GetObject("grdSpecialRates.Images"))));
     this.grdSpecialRates.LinesPerRow = 1;
     this.grdSpecialRates.Location = new System.Drawing.Point(0, 0);
     this.grdSpecialRates.Name = "grdSpecialRates";
     this.grdSpecialRates.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdSpecialRates.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdSpecialRates.PreviewInfo.ZoomFactor = 75D;
     this.grdSpecialRates.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdSpecialRates.PrintInfo.PageSettings")));
     this.grdSpecialRates.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdSpecialRates.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdSpecialRates.RowHeight = 23;
     this.grdSpecialRates.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdSpecialRates.Size = new System.Drawing.Size(694, 243);
     this.grdSpecialRates.TabIndex = 3;
     this.grdSpecialRates.Text = "c1TrueDBGrid1";
     this.grdSpecialRates.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdSpecialRates.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdSpecialRates_AfterColUpdate);
     this.grdSpecialRates.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdSpecialRates_KeyPress);
     this.grdSpecialRates.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdSpecialRates_PreviewKeyDown);
     this.grdSpecialRates.PropBag = resources.GetString("grdSpecialRates.PropBag");
     //
     // tbBonus
     //
     this.tbBonus.Controls.Add(this.grdBonus);
     this.tbBonus.Name = "tbBonus";
     this.tbBonus.Size = new System.Drawing.Size(694, 243);
     this.tbBonus.Text = "Bonus";
     this.tbBonus.Tooltip = "Bonus Infromation";
     //
     // grdBonus
     //
     this.grdBonus.AllowAddNew = true;
     this.grdBonus.CaptionHeight = 17;
     this.grdBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdBonus.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("grdBonus.Images"))));
     this.grdBonus.LinesPerRow = 1;
     this.grdBonus.Location = new System.Drawing.Point(0, 0);
     this.grdBonus.Name = "grdBonus";
     this.grdBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdBonus.PreviewInfo.ZoomFactor = 75D;
     this.grdBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdBonus.PrintInfo.PageSettings")));
     this.grdBonus.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdBonus.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdBonus.RowHeight = 23;
     this.grdBonus.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdBonus.Size = new System.Drawing.Size(694, 243);
     this.grdBonus.TabIndex = 3;
     this.grdBonus.Text = "c1TrueDBGrid1";
     this.grdBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdBonus_AfterColUpdate);
     this.grdBonus.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdBonus_KeyPress);
     this.grdBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdBonus_PreviewKeyDown);
     this.grdBonus.PropBag = resources.GetString("grdBonus.PropBag");
     //
     // tbSaleManWiseDetail
     //
     this.tbSaleManWiseDetail.Controls.Add(this.grdSalemanWiseDetails);
     this.tbSaleManWiseDetail.Name = "tbSaleManWiseDetail";
     this.tbSaleManWiseDetail.Size = new System.Drawing.Size(694, 243);
     this.tbSaleManWiseDetail.Text = "Saleman Wise Details";
     this.tbSaleManWiseDetail.Tooltip = "Saleman Wise Details";
     //
     // grdSalemanWiseDetails
     //
     this.grdSalemanWiseDetails.AllowAddNew = true;
     this.grdSalemanWiseDetails.CaptionHeight = 17;
     this.grdSalemanWiseDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdSalemanWiseDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdSalemanWiseDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdSalemanWiseDetails.Images"))));
     this.grdSalemanWiseDetails.LinesPerRow = 1;
     this.grdSalemanWiseDetails.Location = new System.Drawing.Point(0, 0);
     this.grdSalemanWiseDetails.Name = "grdSalemanWiseDetails";
     this.grdSalemanWiseDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdSalemanWiseDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdSalemanWiseDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdSalemanWiseDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdSalemanWiseDetails.PrintInfo.PageSettings")));
     this.grdSalemanWiseDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdSalemanWiseDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdSalemanWiseDetails.RowHeight = 23;
     this.grdSalemanWiseDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdSalemanWiseDetails.Size = new System.Drawing.Size(694, 243);
     this.grdSalemanWiseDetails.TabIndex = 3;
     this.grdSalemanWiseDetails.Text = "c1TrueDBGrid1";
     this.grdSalemanWiseDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdSalemanWiseDetails.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdSalemanWiseDetails_AfterColUpdate);
     this.grdSalemanWiseDetails.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdSalemanWiseDetails_KeyPress);
     this.grdSalemanWiseDetails.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdSalemanWiseDetails_PreviewKeyDown);
     this.grdSalemanWiseDetails.PropBag = resources.GetString("grdSalemanWiseDetails.PropBag");
     //
     // tbCreditPolicy
     //
     this.tbCreditPolicy.Controls.Add(this.grdCreditPolicy);
     this.tbCreditPolicy.Name = "tbCreditPolicy";
     this.tbCreditPolicy.Size = new System.Drawing.Size(694, 243);
     this.tbCreditPolicy.Text = "Credit Policy";
     this.tbCreditPolicy.Tooltip = "Credit Policies Information";
     //
     // grdCreditPolicy
     //
     this.grdCreditPolicy.AllowAddNew = true;
     this.grdCreditPolicy.CaptionHeight = 17;
     this.grdCreditPolicy.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCreditPolicy.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCreditPolicy.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCreditPolicy.Images"))));
     this.grdCreditPolicy.LinesPerRow = 1;
     this.grdCreditPolicy.Location = new System.Drawing.Point(0, 0);
     this.grdCreditPolicy.Name = "grdCreditPolicy";
     this.grdCreditPolicy.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCreditPolicy.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCreditPolicy.PreviewInfo.ZoomFactor = 75D;
     this.grdCreditPolicy.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCreditPolicy.PrintInfo.PageSettings")));
     this.grdCreditPolicy.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdCreditPolicy.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdCreditPolicy.RowHeight = 23;
     this.grdCreditPolicy.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdCreditPolicy.Size = new System.Drawing.Size(694, 243);
     this.grdCreditPolicy.TabIndex = 3;
     this.grdCreditPolicy.Text = "c1TrueDBGrid1";
     this.grdCreditPolicy.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCreditPolicy.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdCreditPolicy_KeyPress);
     this.grdCreditPolicy.PropBag = resources.GetString("grdCreditPolicy.PropBag");
     //
     // tbAccountInformation
     //
     this.tbAccountInformation.Controls.Add(this.grdAccountInformation);
     this.tbAccountInformation.Name = "tbAccountInformation";
     this.tbAccountInformation.Size = new System.Drawing.Size(694, 243);
     this.tbAccountInformation.Text = "Account Information";
     this.tbAccountInformation.Tooltip = "Accounts Information";
     //
     // grdAccountInformation
     //
     this.grdAccountInformation.AllowAddNew = true;
     this.grdAccountInformation.CaptionHeight = 17;
     this.grdAccountInformation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdAccountInformation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAccountInformation.Images.Add(((System.Drawing.Image)(resources.GetObject("grdAccountInformation.Images"))));
     this.grdAccountInformation.LinesPerRow = 1;
     this.grdAccountInformation.Location = new System.Drawing.Point(0, 0);
     this.grdAccountInformation.Name = "grdAccountInformation";
     this.grdAccountInformation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdAccountInformation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdAccountInformation.PreviewInfo.ZoomFactor = 75D;
     this.grdAccountInformation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdAccountInformation.PrintInfo.PageSettings")));
     this.grdAccountInformation.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdAccountInformation.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdAccountInformation.RowHeight = 23;
     this.grdAccountInformation.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdAccountInformation.Size = new System.Drawing.Size(694, 243);
     this.grdAccountInformation.TabIndex = 3;
     this.grdAccountInformation.Text = "c1TrueDBGrid1";
     this.grdAccountInformation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdAccountInformation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdAccountInformation_AfterColUpdate);
     this.grdAccountInformation.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdAccountInformation_KeyPress);
     this.grdAccountInformation.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdAccountInformation_PreviewKeyDown);
     this.grdAccountInformation.PropBag = resources.GetString("grdAccountInformation.PropBag");
     //
     // tbNotes
     //
     this.tbNotes.Controls.Add(this.txtNotes);
     this.tbNotes.Name = "tbNotes";
     this.tbNotes.Size = new System.Drawing.Size(694, 243);
     this.tbNotes.Text = "Remarks";
     this.tbNotes.Tooltip = "Remarks";
     //
     // txtNotes
     //
     this.txtNotes.Location = new System.Drawing.Point(133, 55);
     this.txtNotes.Multiline = true;
     this.txtNotes.Name = "txtNotes";
     this.txtNotes.Size = new System.Drawing.Size(429, 137);
     this.txtNotes.TabIndex = 0;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnSave);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Controls.Add(this.btnEdit);
     this.groupControl2.Controls.Add(this.btnDelete);
     this.groupControl2.Location = new System.Drawing.Point(1, 380);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(704, 49);
     this.groupControl2.TabIndex = 11;
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(642, 8);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Close Modules List";
     superToolTip8.Items.Add(toolTipItem4);
     this.btnExit.SuperTip = superToolTip8;
     this.btnExit.TabIndex = 6;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(514, 8);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.btnSave.SuperTip = superToolTip9;
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(4, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(58, 32);
     toolTipItem6.Text = "Add New Module";
     superToolTip10.Items.Add(toolTipItem6);
     this.btnAdd.SuperTip = superToolTip10;
     this.btnAdd.TabIndex = 1;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(578, 8);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem7.Text = "Cancel Current Operation";
     superToolTip11.Items.Add(toolTipItem7);
     this.btnCancel.SuperTip = superToolTip11;
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(68, 8);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem8.Text = "Edit Module Details";
     superToolTip12.Items.Add(toolTipItem8);
     this.btnEdit.SuperTip = superToolTip12;
     this.btnEdit.TabIndex = 2;
     this.btnEdit.Text = " &Edit ";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(450, 8);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem9.Text = "Remove Module";
     superToolTip13.Items.Add(toolTipItem9);
     this.btnDelete.SuperTip = superToolTip13;
     this.btnDelete.TabIndex = 4;
     this.btnDelete.Text = "&Delete";
     this.btnDelete.Visible = false;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.chkIsDiscontinued);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.txtCustomerID);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.txtCustomerName);
     this.groupControl1.Location = new System.Drawing.Point(1, 1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(704, 69);
     this.groupControl1.TabIndex = 12;
     this.groupControl1.Text = "Customer Information";
     //
     // chkIsDiscontinued
     //
     this.chkIsDiscontinued.EnterMoveNextControl = true;
     this.chkIsDiscontinued.Location = new System.Drawing.Point(456, 35);
     this.chkIsDiscontinued.Name = "chkIsDiscontinued";
     this.chkIsDiscontinued.Properties.Caption = "Discontinued";
     this.chkIsDiscontinued.Size = new System.Drawing.Size(85, 19);
     this.chkIsDiscontinued.TabIndex = 2;
     this.chkIsDiscontinued.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.chkIsDiscontinued_KeyPress);
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(8, 37);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(11, 13);
     this.labelControl7.TabIndex = 14;
     this.labelControl7.Text = "ID";
     //
     // txtCustomerID
     //
     this.txtCustomerID.Location = new System.Drawing.Point(27, 33);
     this.txtCustomerID.Name = "txtCustomerID";
     this.txtCustomerID.Properties.MaxLength = 5;
     this.txtCustomerID.Size = new System.Drawing.Size(65, 20);
     this.txtCustomerID.TabIndex = 0;
     this.txtCustomerID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericAllowTextBoxes_KeyPress);
     this.txtCustomerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCustomerID_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(99, 33);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip14.Items.Add(toolTipTitleItem5);
     this.btnPickList.SuperTip = superToolTip14;
     this.btnPickList.TabIndex = 1;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(128, 36);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(27, 13);
     this.labelControl1.TabIndex = 11;
     this.labelControl1.Text = "Name";
     //
     // txtCustomerName
     //
     this.txtCustomerName.EnterMoveNextControl = true;
     this.txtCustomerName.Location = new System.Drawing.Point(166, 34);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCustomerName.Properties.MaxLength = 30;
     this.txtCustomerName.Size = new System.Drawing.Size(270, 20);
     this.txtCustomerName.TabIndex = 1;
     this.txtCustomerName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AlphaAllowTextBoxes_KeyPress);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.xtraTabControl1);
     this.groupControl3.Location = new System.Drawing.Point(5, 76);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(696, 298);
     this.groupControl3.TabIndex = 13;
     this.groupControl3.Text = "Details";
     //
     // frmCustomers
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(706, 430);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmCustomers";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmCustomers";
     this.Load += new System.EventHandler(this.frmCustomers_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tbPersonal.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOldCodes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyBrickCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubBrickName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubBrickID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtABGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtApprovalID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPostalCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCityName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCityID.Properties)).EndInit();
     this.tbBusiness.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     this.groupControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkSTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOCGName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorcotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncomeTax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNTN.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbPaymentMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQualifiedPersonName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGSTReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOCGID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAccountName.Properties)).EndInit();
     this.tbLicenses.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdLicenses)).EndInit();
     this.tbCompanyPolicies.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCompanyPolicies)).EndInit();
     this.tbProductPolicies.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdProductPolicies)).EndInit();
     this.tbClosedGroups.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClosedGroups)).EndInit();
     this.tbCommission.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCommission)).EndInit();
     this.tbSpecialRates.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdSpecialRates)).EndInit();
     this.tbBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdBonus)).EndInit();
     this.tbSaleManWiseDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdSalemanWiseDetails)).EndInit();
     this.tbCreditPolicy.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCreditPolicy)).EndInit();
     this.tbAccountInformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAccountInformation)).EndInit();
     this.tbNotes.ResumeLayout(false);
     this.tbNotes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkIsDiscontinued.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                   | System.Windows.Forms.AnchorStyles.Left)
                                  | System.Windows.Forms.AnchorStyles.Right);
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(24, 16);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(560, 248);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><Styles type=\"C1.Win.C1TrueDBGrid.Design.ContextWrappe" +
                                                 "r\"><Data>Group{BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVert:Center;}E" +
                                                 "ditor{}Style2{}Style5{}Style4{}Style7{}Style6{}EvenRow{BackColor:Aqua;}Selected{" +
                                                 "ForeColor:HighlightText;BackColor:Highlight;}Style3{}Inactive{ForeColor:Inactive" +
                                                 "CaptionText;BackColor:InactiveCaption;}FilterBar{}Footer{}Caption{AlignHorz:Cent" +
                                                 "er;}Style14{}Normal{}HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}S" +
                                                 "tyle9{}OddRow{}RecordSelector{AlignImage:Center;}Style15{}Heading{Wrap:True;Alig" +
                                                 "nVert:Center;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;BackColor:Control;}" +
                                                 "Style8{}Style10{AlignHorz:Near;}Style11{}Style12{}Style13{}Style1{}</Data></Styl" +
                                                 "es><Splits><C1.Win.C1TrueDBGrid.MergeView Name=\"\" CaptionHeight=\"17\" ColumnCapti" +
                                                 "onHeight=\"17\" ColumnFooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSele" +
                                                 "ctorWidth=\"17\" DefRecSelWidth=\"17\" VerticalScrollGroup=\"1\" HorizontalScrollGroup" +
                                                 "=\"1\"><Height>244</Height><CaptionStyle parent=\"Style2\" me=\"Style10\" /><EditorSty" +
                                                 "le parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"Style8\" /><F" +
                                                 "ilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"Footer\" me=" +
                                                 "\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle parent=\"Headi" +
                                                 "ng\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\" /><Inacti" +
                                                 "veStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style9\"" +
                                                 " /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><SelectedStyle pa" +
                                                 "rent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /><ClientRect>0" +
                                                 ", 0, 556, 244</ClientRect><BorderSide>0</BorderSide><BorderStyle>Sunken</BorderS" +
                                                 "tyle></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"" +
                                                 "Normal\" /><Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Foot" +
                                                 "er\" /><Style parent=\"Heading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactiv" +
                                                 "e\" /><Style parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /" +
                                                 "><Style parent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" " +
                                                 "/><Style parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelecto" +
                                                 "r\" /><Style parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" " +
                                                 "/></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None" +
                                                 "</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 556, 244</" +
                                                 "ClientArea><PrintPageHeaderStyle parent=\"\" me=\"Style14\" /><PrintPageFooterStyle " +
                                                 "parent=\"\" me=\"Style15\" /></Blob>";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(608, 294);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.c1TrueDBGrid1
     });
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     this.ResumeLayout(false);
 }
示例#17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmZones));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.ZdatagridRegionalAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.ZtxtOtherGroup = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtManagerId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyGroupID = new DevExpress.XtraEditors.TextEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.ZtxtManagerName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtCompanyId = new DevExpress.XtraEditors.TextEdit();
     this.ZtxtSPOID = new DevExpress.XtraEditors.TextEdit();
     this.ZchkDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.ZchkMerck = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.ZPlManagerId = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyGroupID = new DevExpress.XtraEditors.SimpleButton();
     this.ZPLCompanyId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.ZPLSPOId = new DevExpress.XtraEditors.SimpleButton();
     this.ZtxtSPOName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.groupControl1);
     this.groupControl5.Controls.Add(this.ZtxtOtherGroup);
     this.groupControl5.Controls.Add(this.ZtxtManagerId);
     this.groupControl5.Controls.Add(this.ZtxtCompanyGroupID);
     this.groupControl5.Controls.Add(this.checkEdit2);
     this.groupControl5.Controls.Add(this.ZtxtManagerName);
     this.groupControl5.Controls.Add(this.ZtxtGroupName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyName);
     this.groupControl5.Controls.Add(this.ZtxtCompanyId);
     this.groupControl5.Controls.Add(this.ZtxtSPOID);
     this.groupControl5.Controls.Add(this.ZchkDiscontinue);
     this.groupControl5.Controls.Add(this.ZchkMerck);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.labelControl13);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.ZPlManagerId);
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.ZPLCompanyGroupID);
     this.groupControl5.Controls.Add(this.ZPLCompanyId);
     this.groupControl5.Controls.Add(this.labelControl11);
     this.groupControl5.Controls.Add(this.ZPLSPOId);
     this.groupControl5.Controls.Add(this.ZtxtSPOName);
     this.groupControl5.Controls.Add(this.labelControl12);
     this.groupControl5.Controls.Add(this.labelControl10);
     this.groupControl5.Controls.Add(this.labelControl8);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.labelControl9);
     this.groupControl5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(567, 390);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Zone Details";
     //
     // groupControl1
     //
     this.groupControl1.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.groupControl1.Controls.Add(this.ZdatagridRegionalAllocation);
     this.groupControl1.Location = new System.Drawing.Point(0, 130);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(567, 226);
     this.groupControl1.TabIndex = 124261;
     this.groupControl1.Text = "groupControl1";
     //
     // ZdatagridRegionalAllocation
     //
     this.ZdatagridRegionalAllocation.AllowAddNew = true;
     this.ZdatagridRegionalAllocation.CaptionHeight = 17;
     this.ZdatagridRegionalAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.ZdatagridRegionalAllocation.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ZdatagridRegionalAllocation.ExtendRightColumn = true;
     this.ZdatagridRegionalAllocation.FetchRowStyles = true;
     this.ZdatagridRegionalAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("ZdatagridRegionalAllocation.Images"))));
     this.ZdatagridRegionalAllocation.LinesPerRow = 1;
     this.ZdatagridRegionalAllocation.Location = new System.Drawing.Point(2, 2);
     this.ZdatagridRegionalAllocation.Name = "ZdatagridRegionalAllocation";
     this.ZdatagridRegionalAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.ZdatagridRegionalAllocation.PreviewInfo.ZoomFactor = 75D;
     this.ZdatagridRegionalAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("ZdatagridRegionalAllocation.PrintInfo.PageSettings")));
     this.ZdatagridRegionalAllocation.RecordSelectors = false;
     this.ZdatagridRegionalAllocation.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.ZdatagridRegionalAllocation.RowHeight = 20;
     this.ZdatagridRegionalAllocation.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.ZdatagridRegionalAllocation.Size = new System.Drawing.Size(563, 222);
     this.ZdatagridRegionalAllocation.TabIndex = 124255;
     this.ZdatagridRegionalAllocation.Text = "c1TrueDBGrid1";
     this.ZdatagridRegionalAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.ZdatagridRegionalAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.ZdatagridRegionalAllocation_AfterColUpdate);
     this.ZdatagridRegionalAllocation.PropBag = resources.GetString("ZdatagridRegionalAllocation.PropBag");
     //
     // ZtxtOtherGroup
     //
     this.ZtxtOtherGroup.Location = new System.Drawing.Point(98, 104);
     this.ZtxtOtherGroup.Name = "ZtxtOtherGroup";
     this.ZtxtOtherGroup.Size = new System.Drawing.Size(258, 20);
     this.ZtxtOtherGroup.TabIndex = 5;
     this.ZtxtOtherGroup.TabStop = false;
     this.ZtxtOtherGroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtOtherGroup_PreviewKeyDown);
     //
     // ZtxtManagerId
     //
     this.ZtxtManagerId.Location = new System.Drawing.Point(98, 85);
     this.ZtxtManagerId.Name = "ZtxtManagerId";
     this.ZtxtManagerId.Properties.MaxLength = 6;
     this.ZtxtManagerId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtManagerId.TabIndex = 4;
     this.ZtxtManagerId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtManagerId_KeyPress);
     this.ZtxtManagerId.Leave += new System.EventHandler(this.ZtxtManagerId_Leave);
     this.ZtxtManagerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtManagerId_PreviewKeyDown);
     //
     // ZtxtCompanyGroupID
     //
     this.ZtxtCompanyGroupID.Location = new System.Drawing.Point(98, 66);
     this.ZtxtCompanyGroupID.Name = "ZtxtCompanyGroupID";
     this.ZtxtCompanyGroupID.Properties.MaxLength = 6;
     this.ZtxtCompanyGroupID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyGroupID.TabIndex = 3;
     this.ZtxtCompanyGroupID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyGroupID_KeyPress);
     this.ZtxtCompanyGroupID.Leave += new System.EventHandler(this.ZtxtCompanyGroupID_Leave);
     this.ZtxtCompanyGroupID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyGroupID_PreviewKeyDown);
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkEdit2.Location = new System.Drawing.Point(421, 84);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkEdit2.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.checkEdit2.Properties.Appearance.Options.UseFont = true;
     this.checkEdit2.Properties.Appearance.Options.UseForeColor = true;
     this.checkEdit2.Properties.Caption = "Select/UnSelect All";
     this.checkEdit2.Size = new System.Drawing.Size(141, 19);
     this.checkEdit2.TabIndex = 8;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     this.checkEdit2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.checkEdit2_KeyPress);
     //
     // ZtxtManagerName
     //
     this.ZtxtManagerName.Enabled = false;
     this.ZtxtManagerName.Location = new System.Drawing.Point(220, 85);
     this.ZtxtManagerName.Name = "ZtxtManagerName";
     this.ZtxtManagerName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtManagerName.TabIndex = 124251;
     this.ZtxtManagerName.TabStop = false;
     //
     // ZtxtGroupName
     //
     this.ZtxtGroupName.Enabled = false;
     this.ZtxtGroupName.Location = new System.Drawing.Point(220, 66);
     this.ZtxtGroupName.Name = "ZtxtGroupName";
     this.ZtxtGroupName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtGroupName.TabIndex = 124246;
     this.ZtxtGroupName.TabStop = false;
     //
     // ZtxtCompanyName
     //
     this.ZtxtCompanyName.Enabled = false;
     this.ZtxtCompanyName.Location = new System.Drawing.Point(220, 47);
     this.ZtxtCompanyName.Name = "ZtxtCompanyName";
     this.ZtxtCompanyName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtCompanyName.TabIndex = 100015;
     this.ZtxtCompanyName.TabStop = false;
     //
     // ZtxtCompanyId
     //
     this.ZtxtCompanyId.Location = new System.Drawing.Point(98, 47);
     this.ZtxtCompanyId.Name = "ZtxtCompanyId";
     this.ZtxtCompanyId.Properties.MaxLength = 3;
     this.ZtxtCompanyId.Size = new System.Drawing.Size(49, 20);
     this.ZtxtCompanyId.TabIndex = 2;
     this.ZtxtCompanyId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZtxtCompanyId_KeyPress);
     this.ZtxtCompanyId.Leave += new System.EventHandler(this.ZtxtCompanyId_Leave);
     this.ZtxtCompanyId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtCompanyId_PreviewKeyDown);
     //
     // ZtxtSPOID
     //
     this.ZtxtSPOID.Location = new System.Drawing.Point(98, 28);
     this.ZtxtSPOID.Name = "ZtxtSPOID";
     this.ZtxtSPOID.Properties.MaxLength = 6;
     this.ZtxtSPOID.Size = new System.Drawing.Size(49, 20);
     this.ZtxtSPOID.TabIndex = 0;
     this.ZtxtSPOID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOID_PreviewKeyDown);
     //
     // ZchkDiscontinue
     //
     this.ZchkDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkDiscontinue.Location = new System.Drawing.Point(421, 34);
     this.ZchkDiscontinue.Name = "ZchkDiscontinue";
     this.ZchkDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.ZchkDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkDiscontinue.Properties.Caption = "Discontinue";
     this.ZchkDiscontinue.Size = new System.Drawing.Size(93, 19);
     this.ZchkDiscontinue.TabIndex = 6;
     this.ZchkDiscontinue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkDiscontinue_KeyPress);
     //
     // ZchkMerck
     //
     this.ZchkMerck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ZchkMerck.Location = new System.Drawing.Point(421, 59);
     this.ZchkMerck.Name = "ZchkMerck";
     this.ZchkMerck.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ZchkMerck.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.ZchkMerck.Properties.Appearance.Options.UseFont = true;
     this.ZchkMerck.Properties.Appearance.Options.UseForeColor = true;
     this.ZchkMerck.Properties.Caption = "MERCK";
     this.ZchkMerck.Size = new System.Drawing.Size(58, 19);
     this.ZchkMerck.TabIndex = 7;
     this.ZchkMerck.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ZchkMerck_KeyPress);
     //
     // labelControl14
     //
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.Location = new System.Drawing.Point(183, 87);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(51, 20);
     this.labelControl14.TabIndex = 124250;
     this.labelControl14.Text = "Name";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(183, 68);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(40, 20);
     this.labelControl13.TabIndex = 124245;
     this.labelControl13.Text = "Name";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(10, 86);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(95, 20);
     this.labelControl15.TabIndex = 124248;
     this.labelControl15.Text = "Manager Id";
     //
     // ZPlManagerId
     //
     this.ZPlManagerId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPlManagerId.Appearance.Options.UseFont = true;
     this.ZPlManagerId.Image = ((System.Drawing.Image)(resources.GetObject("ZPlManagerId.Image")));
     this.ZPlManagerId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPlManagerId.Location = new System.Drawing.Point(149, 85);
     this.ZPlManagerId.Name = "ZPlManagerId";
     this.ZPlManagerId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPlManagerId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.ZPlManagerId.SuperTip = superToolTip1;
     this.ZPlManagerId.TabIndex = 124249;
     this.ZPlManagerId.TabStop = false;
     this.ZPlManagerId.Click += new System.EventHandler(this.ZPlManagerId_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(70, 66);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(27, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip2.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip2;
     this.simpleButton5.TabIndex = 100019;
     this.simpleButton5.TabStop = false;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // ZPLCompanyGroupID
     //
     this.ZPLCompanyGroupID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyGroupID.Appearance.Options.UseFont = true;
     this.ZPLCompanyGroupID.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyGroupID.Image")));
     this.ZPLCompanyGroupID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyGroupID.Location = new System.Drawing.Point(149, 66);
     this.ZPLCompanyGroupID.Name = "ZPLCompanyGroupID";
     this.ZPLCompanyGroupID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyGroupID.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.ZPLCompanyGroupID.SuperTip = superToolTip3;
     this.ZPLCompanyGroupID.TabIndex = 100018;
     this.ZPLCompanyGroupID.TabStop = false;
     this.ZPLCompanyGroupID.Click += new System.EventHandler(this.ZPLCompanyGroupID_Click);
     //
     // ZPLCompanyId
     //
     this.ZPLCompanyId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLCompanyId.Appearance.Options.UseFont = true;
     this.ZPLCompanyId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLCompanyId.Image")));
     this.ZPLCompanyId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLCompanyId.Location = new System.Drawing.Point(149, 47);
     this.ZPLCompanyId.Name = "ZPLCompanyId";
     this.ZPLCompanyId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLCompanyId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.ZPLCompanyId.SuperTip = superToolTip4;
     this.ZPLCompanyId.TabIndex = 100014;
     this.ZPLCompanyId.TabStop = false;
     this.ZPLCompanyId.Click += new System.EventHandler(this.ZPLCompanyId_Click);
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(183, 49);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(40, 20);
     this.labelControl11.TabIndex = 100011;
     this.labelControl11.Text = "Name";
     //
     // ZPLSPOId
     //
     this.ZPLSPOId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.ZPLSPOId.Appearance.Options.UseFont = true;
     this.ZPLSPOId.Image = ((System.Drawing.Image)(resources.GetObject("ZPLSPOId.Image")));
     this.ZPLSPOId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ZPLSPOId.Location = new System.Drawing.Point(149, 28);
     this.ZPLSPOId.Name = "ZPLSPOId";
     this.ZPLSPOId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.ZPLSPOId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.ZPLSPOId.SuperTip = superToolTip5;
     this.ZPLSPOId.TabIndex = 100009;
     this.ZPLSPOId.TabStop = false;
     this.ZPLSPOId.Click += new System.EventHandler(this.ZPLSPOId_Click);
     //
     // ZtxtSPOName
     //
     this.ZtxtSPOName.Location = new System.Drawing.Point(220, 28);
     this.ZtxtSPOName.Name = "ZtxtSPOName";
     this.ZtxtSPOName.Size = new System.Drawing.Size(136, 20);
     this.ZtxtSPOName.TabIndex = 1;
     this.ZtxtSPOName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.ZtxtSPOName_PreviewKeyDown);
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(10, 67);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(95, 20);
     this.labelControl12.TabIndex = 100017;
     this.labelControl12.Text = "CGroup Id";
     //
     // labelControl10
     //
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(10, 47);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(95, 20);
     this.labelControl10.TabIndex = 100013;
     this.labelControl10.Text = "Company Id";
     //
     // labelControl8
     //
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(10, 28);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(95, 20);
     this.labelControl8.TabIndex = 100008;
     this.labelControl8.Text = "SPO Id";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(10, 104);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(95, 20);
     this.labelControl16.TabIndex = 124255;
     this.labelControl16.Text = "Other Groups";
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(183, 30);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(40, 20);
     this.labelControl9.TabIndex = 100006;
     this.labelControl9.Text = "Name";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(88, 6);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnCancel.SuperTip = superToolTip6;
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(12, 6);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Add New Module";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnAdd.SuperTip = superToolTip7;
     this.btnAdd.TabIndex = 9;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 356);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(567, 34);
     this.groupControl2.TabIndex = 13;
     //
     // frmZones
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(567, 390);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl5);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmZones";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Zones";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmZones_FormClosing);
     this.Load += new System.EventHandler(this.VendorEmployees_Load);
     this.Enter += new System.EventHandler(this.frmZones_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ZdatagridRegionalAllocation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtOtherGroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyGroupID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtManagerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtCompanyId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZchkMerck.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ZtxtSPOName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dsCustomer1         = new Tutorial_22.DsCustomer();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.comboBox4           = new System.Windows.Forms.ComboBox();
     this.comboBox3           = new System.Windows.Forms.ComboBox();
     this.comboBox2           = new System.Windows.Forms.ComboBox();
     this.comboBox1           = new System.Windows.Forms.ComboBox();
     this.label4              = new System.Windows.Forms.Label();
     this.label3              = new System.Windows.Forms.Label();
     this.label2              = new System.Windows.Forms.Label();
     this.label1              = new System.Windows.Forms.Label();
     this.label5              = new System.Windows.Forms.Label();
     this.comboBox5           = new System.Windows.Forms.ComboBox();
     this.button1             = new System.Windows.Forms.Button();
     this.groupBox2           = new System.Windows.Forms.GroupBox();
     this.checkBox2           = new System.Windows.Forms.CheckBox();
     this.checkBox1           = new System.Windows.Forms.CheckBox();
     this.colorDialog1        = new System.Windows.Forms.ColorDialog();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCustomer1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.AllowAddNew    = true;
     this.c1TrueDBGrid1.Caption        = "C1True DBGrid .Net";
     this.c1TrueDBGrid1.CaptionHeight  = 17;
     this.c1TrueDBGrid1.DataMember     = "Customer";
     this.c1TrueDBGrid1.DataSource     = this.dsCustomer1;
     this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 8);
     this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
     this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBGrid1.RowHeight              = 40;
     this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(408, 216);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.FetchScrollTips       += new C1.Win.C1TrueDBGrid.FetchScrollTipsEventHandler(this.c1TrueDBGrid1_FetchScrollTips);
     this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Company\" Da" +
                                                 "taField=\"Company\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=" +
                                                 "\"0\" Caption=\"Contacted\" DataField=\"Contacted\"><ValueItems /><GroupInfo /></C1Dat" +
                                                 "aColumn><C1DataColumn Level=\"0\" Caption=\"FirstName\" DataField=\"FirstName\"><Value" +
                                                 "Items /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"LastName\" D" +
                                                 "ataField=\"LastName\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Leve" +
                                                 "l=\"0\" Caption=\"Phone\" DataField=\"Phone\"><ValueItems /><GroupInfo /></C1DataColum" +
                                                 "n><C1DataColumn Level=\"0\" Caption=\"UserCode\" DataField=\"UserCode\"><ValueItems />" +
                                                 "<GroupInfo /></C1DataColumn></DataCols><Styles type=\"C1.Win.C1TrueDBGrid.Design." +
                                                 "ContextWrapper\"><Data>RecordSelector{AlignImage:Center;}Style31{AlignHorz:Far;}S" +
                                                 "tyle51{}Style50{}Caption{AlignHorz:Center;}Normal{}Selected{ForeColor:HighlightT" +
                                                 "ext;BackColor:Highlight;}Editor{}Style18{AlignHorz:Far;}Style19{AlignHorz:Far;}S" +
                                                 "tyle14{AlignHorz:Near;}Style15{AlignHorz:Near;}Style16{}Style17{}Style10{AlignHo" +
                                                 "rz:Near;}Style11{}Style12{}Style13{}Style44{}Style45{}Style46{}Style47{}Style38{" +
                                                 "}Style37{}Style34{AlignHorz:Near;}Style35{AlignHorz:Near;}Style32{}Style33{}OddR" +
                                                 "ow{}Footer{}Style29{}Style28{}Style27{AlignHorz:Near;}Style26{AlignHorz:Near;}St" +
                                                 "yle25{}Style24{}Style23{AlignHorz:Near;}Style22{AlignHorz:Near;}Style21{}Style20" +
                                                 "{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}EvenRow{Back" +
                                                 "Color:Aqua;}Heading{Wrap:True;AlignVert:Center;Border:Raised,,1, 1, 1, 1;ForeCol" +
                                                 "or:ControlText;BackColor:Control;}Style49{}Style48{}Style2{}Style40{}Style41{}Fi" +
                                                 "lterBar{}Style42{}Style43{}Style4{}Style9{}Style8{}Style39{}Style36{}Style5{}Gro" +
                                                 "up{BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVert:Center;}Style7{}Style" +
                                                 "6{}Style1{}Style30{AlignHorz:Far;}Style3{}HighlightRow{ForeColor:HighlightText;B" +
                                                 "ackColor:Highlight;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView Name=" +
                                                 "\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight=\"17\" MarqueeSt" +
                                                 "yle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRecSelWidth=\"17\" VerticalScro" +
                                                 "llGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 17, 404, 195</ClientRect><B" +
                                                 "orderSide>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"Style10\" /><EditorStyl" +
                                                 "e parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"Style8\" /><Fi" +
                                                 "lterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"Footer\" me=\"" +
                                                 "Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle parent=\"Headin" +
                                                 "g\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\" /><Inactiv" +
                                                 "eStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style9\" " +
                                                 "/><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><SelectedStyle par" +
                                                 "ent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /><internalCols>" +
                                                 "<C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style14\" /><Style parent=\"Sty" +
                                                 "le1\" me=\"Style15\" /><FooterStyle parent=\"Style3\" me=\"Style16\" /><EditorStyle par" +
                                                 "ent=\"Style5\" me=\"Style17\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style41\" /><Gr" +
                                                 "oupFooterStyle parent=\"Style1\" me=\"Style40\" /><Visible>True</Visible><ColumnDivi" +
                                                 "der>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>0</DCIdx></C1Displa" +
                                                 "yColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style18\" /><Style par" +
                                                 "ent=\"Style1\" me=\"Style19\" /><FooterStyle parent=\"Style3\" me=\"Style20\" /><EditorS" +
                                                 "tyle parent=\"Style5\" me=\"Style21\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style4" +
                                                 "3\" /><GroupFooterStyle parent=\"Style1\" me=\"Style42\" /><Visible>True</Visible><Co" +
                                                 "lumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>1</DCIdx></" +
                                                 "C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style22\" /><S" +
                                                 "tyle parent=\"Style1\" me=\"Style23\" /><FooterStyle parent=\"Style3\" me=\"Style24\" />" +
                                                 "<EditorStyle parent=\"Style5\" me=\"Style25\" /><GroupHeaderStyle parent=\"Style1\" me" +
                                                 "=\"Style45\" /><GroupFooterStyle parent=\"Style1\" me=\"Style44\" /><Visible>True</Vis" +
                                                 "ible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>2</" +
                                                 "DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style" +
                                                 "26\" /><Style parent=\"Style1\" me=\"Style27\" /><FooterStyle parent=\"Style3\" me=\"Sty" +
                                                 "le28\" /><EditorStyle parent=\"Style5\" me=\"Style29\" /><GroupHeaderStyle parent=\"St" +
                                                 "yle1\" me=\"Style47\" /><GroupFooterStyle parent=\"Style1\" me=\"Style46\" /><Visible>T" +
                                                 "rue</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><D" +
                                                 "CIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" m" +
                                                 "e=\"Style30\" /><Style parent=\"Style1\" me=\"Style31\" /><FooterStyle parent=\"Style3\"" +
                                                 " me=\"Style32\" /><EditorStyle parent=\"Style5\" me=\"Style33\" /><GroupHeaderStyle pa" +
                                                 "rent=\"Style1\" me=\"Style49\" /><GroupFooterStyle parent=\"Style1\" me=\"Style48\" /><V" +
                                                 "isible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</H" +
                                                 "eight><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"S" +
                                                 "tyle2\" me=\"Style34\" /><Style parent=\"Style1\" me=\"Style35\" /><FooterStyle parent=" +
                                                 "\"Style3\" me=\"Style36\" /><EditorStyle parent=\"Style5\" me=\"Style37\" /><GroupHeader" +
                                                 "Style parent=\"Style1\" me=\"Style51\" /><GroupFooterStyle parent=\"Style1\" me=\"Style" +
                                                 "50\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Heig" +
                                                 "ht>15</Height><DCIdx>5</DCIdx></C1DisplayColumn></internalCols></C1.Win.C1TrueDB" +
                                                 "Grid.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /><Style paren" +
                                                 "t=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /><Style parent=\"H" +
                                                 "eading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /><Style parent=\"No" +
                                                 "rmal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal" +
                                                 "\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Norma" +
                                                 "l\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><Style parent=\"No" +
                                                 "rmal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></NamedStyles><vertS" +
                                                 "plits>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified</Layout><DefaultR" +
                                                 "ecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 404, 212</ClientArea><PrintP" +
                                                 "ageHeaderStyle parent=\"\" me=\"Style38\" /><PrintPageFooterStyle parent=\"\" me=\"Styl" +
                                                 "e39\" /></Blob>";
     //
     // dsCustomer1
     //
     this.dsCustomer1.DataSetName = "DsCustomer";
     this.dsCustomer1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsCustomer1.Namespace   = "http://www.tempuri.org/DsCustomer.xsd";
     //
     // groupBox1
     //
     this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.comboBox4,
         this.comboBox3,
         this.comboBox2,
         this.comboBox1,
         this.label4,
         this.label3,
         this.label2,
         this.label1
     });
     this.groupBox1.Location = new System.Drawing.Point(16, 232);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(232, 224);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Border Size";
     //
     // comboBox4
     //
     this.comboBox4.Location = new System.Drawing.Point(112, 120);
     this.comboBox4.Name     = "comboBox4";
     this.comboBox4.Size     = new System.Drawing.Size(96, 21);
     this.comboBox4.TabIndex = 7;
     this.comboBox4.Text     = "comboBox4";
     this.comboBox4.SelectionChangeCommitted += new System.EventHandler(this.comboBox4_SelectionChangeCommitted);
     //
     // comboBox3
     //
     this.comboBox3.Location = new System.Drawing.Point(112, 88);
     this.comboBox3.Name     = "comboBox3";
     this.comboBox3.Size     = new System.Drawing.Size(96, 21);
     this.comboBox3.TabIndex = 6;
     this.comboBox3.Text     = "comboBox3";
     this.comboBox3.SelectionChangeCommitted += new System.EventHandler(this.comboBox3_SelectionChangeCommitted);
     //
     // comboBox2
     //
     this.comboBox2.Location = new System.Drawing.Point(112, 56);
     this.comboBox2.Name     = "comboBox2";
     this.comboBox2.Size     = new System.Drawing.Size(96, 21);
     this.comboBox2.TabIndex = 5;
     this.comboBox2.Text     = "comboBox2";
     this.comboBox2.SelectionChangeCommitted += new System.EventHandler(this.comboBox2_SelectionChangeCommitted);
     //
     // comboBox1
     //
     this.comboBox1.Location = new System.Drawing.Point(112, 24);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(96, 21);
     this.comboBox1.TabIndex = 4;
     this.comboBox1.Text     = "comboBox1";
     this.comboBox1.SelectionChangeCommitted += new System.EventHandler(this.comboBox1_SelectionChangeCommitted);
     //
     // label4
     //
     this.label4.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     this.label4.Location  = new System.Drawing.Point(8, 120);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(64, 16);
     this.label4.TabIndex  = 3;
     this.label4.Text      = "Right Width";
     //
     // label3
     //
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     this.label3.Location  = new System.Drawing.Point(8, 88);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(56, 16);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "Left Width";
     //
     // label2
     //
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     this.label2.Location  = new System.Drawing.Point(8, 56);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(72, 16);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Bottom Width";
     //
     // label1
     //
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     this.label1.Location  = new System.Drawing.Point(8, 24);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(56, 16);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Top Width";
     //
     // label5
     //
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(64)), ((System.Byte)(64)), ((System.Byte)(64)));
     this.label5.Location  = new System.Drawing.Point(264, 240);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(104, 16);
     this.label5.TabIndex  = 2;
     this.label5.Text      = "Border Appearance";
     //
     // comboBox5
     //
     this.comboBox5.Location = new System.Drawing.Point(264, 272);
     this.comboBox5.Name     = "comboBox5";
     this.comboBox5.Size     = new System.Drawing.Size(144, 21);
     this.comboBox5.TabIndex = 3;
     this.comboBox5.Text     = "comboBox5";
     this.comboBox5.SelectionChangeCommitted += new System.EventHandler(this.comboBox5_SelectionChangeCommitted);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(264, 304);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(72, 48);
     this.button1.TabIndex = 4;
     this.button1.Text     = "Border Color";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.checkBox2,
         this.checkBox1
     });
     this.groupBox2.Location = new System.Drawing.Point(264, 368);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(144, 88);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Scrolling";
     //
     // checkBox2
     //
     this.checkBox2.Location = new System.Drawing.Point(16, 56);
     this.checkBox2.Name     = "checkBox2";
     this.checkBox2.Size     = new System.Drawing.Size(104, 16);
     this.checkBox2.TabIndex = 1;
     this.checkBox2.Text     = "Scroll Tracking";
     this.checkBox2.Click   += new System.EventHandler(this.checkBox2_Click);
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(16, 24);
     this.checkBox1.Name     = "checkBox1";
     this.checkBox1.Size     = new System.Drawing.Size(80, 16);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text     = "Scroll Tips";
     this.checkBox1.Click   += new System.EventHandler(this.checkBox1_Click);
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Customer", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("UserCode", "UserCode"),
             new System.Data.Common.DataColumnMapping("LastName", "LastName"),
             new System.Data.Common.DataColumnMapping("FirstName", "FirstName"),
             new System.Data.Common.DataColumnMapping("Company", "Company"),
             new System.Data.Common.DataColumnMapping("Contacted", "Contacted"),
             new System.Data.Common.DataColumnMapping("Phone", "Phone")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO Customer(Company, Contacted, FirstName, LastName, Phone, UserCode) VA" +
                                            "LUES (?, ?, ?, ?, ?, ?)";
     this.oleDbInsertCommand1.Connection = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.VarWChar, 30, "Company"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.DBDate, 0, "Contacted"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, "FirstName"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.VarWChar, 15, "LastName"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Current, null));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, "UserCode"));
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=5;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Company, Contacted, FirstName, LastName, Phone, UserCode FROM Customer";
     this.oleDbSelectCommand1.Connection  = this.oleDbConnection1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(424, 477);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.groupBox2,
         this.button1,
         this.comboBox5,
         this.label5,
         this.groupBox1,
         this.c1TrueDBGrid1
     });
     this.Name  = "Form1";
     this.Text  = "Tutorial 22 ";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCustomer1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPurchaseOrder));
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbPurchaseOrder = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtOurRefNo = new DevExpress.XtraEditors.TextEdit();
     this.txtDueDate = new System.Windows.Forms.MaskedTextBox();
     this.cmbCompanyOrderType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtPoDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txtPaymentDate = new System.Windows.Forms.MaskedTextBox();
     this.txtCompanyRefDate = new System.Windows.Forms.MaskedTextBox();
     this.txtPaymentRefNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.txtCompanyRefNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txtPoNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtSupplierID = new DevExpress.XtraEditors.TextEdit();
     this.btnPurchaseOrderPickList = new DevExpress.XtraEditors.SimpleButton();
     this.btnSupplierPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtSupplierName = new DevExpress.XtraEditors.TextEdit();
     this.tbGRN = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.txtPOID = new DevExpress.XtraEditors.TextEdit();
     this.txtGRNID = new DevExpress.XtraEditors.TextEdit();
     this.txtGRNCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.cmbGRNType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.btnGRNSupplierPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.txtGRNDueDate = new System.Windows.Forms.MaskedTextBox();
     this.txtGRNSupplierName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.btnGRNPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.txtGRNCompRefDate = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerID = new DevExpress.XtraEditors.TextEdit();
     this.txtGRNSupplierID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerOrderNo = new DevExpress.XtraEditors.TextEdit();
     this.txtGRNCompRefNo = new DevExpress.XtraEditors.TextEdit();
     this.txtGRNDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.txtBMCOrderNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.tbPurchaseInvoice = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtInvoiceCustomerID = new DevExpress.XtraEditors.TextEdit();
     this.txtInvoiceSupplierID = new DevExpress.XtraEditors.TextEdit();
     this.txtInvoiceID = new DevExpress.XtraEditors.TextEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txtInvoiceDueDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.txtInvoiceCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.txtGatePassNo = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.btnInvoicePickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txtPO = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyInvoiceDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.txtGRN = new DevExpress.XtraEditors.TextEdit();
     this.txtInvoiceSupplierName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.txtInvoiceCompOrderRefNo = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyInvoiceID = new DevExpress.XtraEditors.TextEdit();
     this.txtInvoiceDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.txtInvoiceOurRefNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.InvoiceId = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.grdOrderDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.txtGrossAmount = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtNetAmount = new DevExpress.XtraEditors.TextEdit();
     this.txtSalesTax = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtDiscount = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txtRemarks = new System.Windows.Forms.TextBox();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.mnRelationshipMapping = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.relationshipMappingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tbPurchaseOrder.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOurRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCompanyOrderType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaymentRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPoNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierName.Properties)).BeginInit();
     this.tbGRN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtPOID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGRNType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNSupplierName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNSupplierID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerOrderNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNCompRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBMCOrderNo.Properties)).BeginInit();
     this.tbPurchaseInvoice.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceCustomerID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceSupplierID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGatePassNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPO.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRN.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceSupplierName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceCompOrderRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyInvoiceID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceOurRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrderDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtGrossAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalesTax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     this.mnRelationshipMapping.SuspendLayout();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Location = new System.Drawing.Point(-3, 1);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tbPurchaseOrder;
     this.xtraTabControl1.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabControl1.Size = new System.Drawing.Size(795, 97);
     this.xtraTabControl1.TabIndex = 24;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbPurchaseOrder,
     this.tbGRN,
     this.tbPurchaseInvoice});
     //
     // tbPurchaseOrder
     //
     this.tbPurchaseOrder.Controls.Add(this.groupControl1);
     this.tbPurchaseOrder.Name = "tbPurchaseOrder";
     this.tbPurchaseOrder.Size = new System.Drawing.Size(789, 91);
     this.tbPurchaseOrder.Text = "tbPurchaseOrder";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.txtOurRefNo);
     this.groupControl1.Controls.Add(this.txtDueDate);
     this.groupControl1.Controls.Add(this.cmbCompanyOrderType);
     this.groupControl1.Controls.Add(this.labelControl41);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.txtPoDate);
     this.groupControl1.Controls.Add(this.labelControl13);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.txtPaymentDate);
     this.groupControl1.Controls.Add(this.txtCompanyRefDate);
     this.groupControl1.Controls.Add(this.txtPaymentRefNo);
     this.groupControl1.Controls.Add(this.labelControl12);
     this.groupControl1.Controls.Add(this.txtCompanyRefNo);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.txtPoNo);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.txtSupplierID);
     this.groupControl1.Controls.Add(this.btnPurchaseOrderPickList);
     this.groupControl1.Controls.Add(this.btnSupplierPickList);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.txtSupplierName);
     this.groupControl1.Location = new System.Drawing.Point(2, -1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(787, 92);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "Purchase Order";
     //
     // txtOurRefNo
     //
     this.txtOurRefNo.EnterMoveNextControl = true;
     this.txtOurRefNo.Location = new System.Drawing.Point(373, 45);
     this.txtOurRefNo.Name = "txtOurRefNo";
     this.txtOurRefNo.Properties.MaxLength = 6;
     this.txtOurRefNo.Size = new System.Drawing.Size(65, 20);
     this.txtOurRefNo.TabIndex = 5;
     this.txtOurRefNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtOurRefNo_KeyPress);
     //
     // txtDueDate
     //
     this.txtDueDate.Location = new System.Drawing.Point(535, 46);
     this.txtDueDate.Mask = "00/00/0000";
     this.txtDueDate.Name = "txtDueDate";
     this.txtDueDate.Size = new System.Drawing.Size(67, 21);
     this.txtDueDate.TabIndex = 6;
     this.txtDueDate.ValidatingType = typeof(System.DateTime);
     this.txtDueDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDueDate_KeyDown);
     this.txtDueDate.Leave += new System.EventHandler(this.txtDueDate_Leave);
     //
     // cmbCompanyOrderType
     //
     this.cmbCompanyOrderType.Location = new System.Drawing.Point(705, 68);
     this.cmbCompanyOrderType.Name = "cmbCompanyOrderType";
     this.cmbCompanyOrderType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbCompanyOrderType.Properties.Items.AddRange(new object[] {
     "PO",
     "BO",
     "BOP",
     "POR"});
     this.cmbCompanyOrderType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbCompanyOrderType.Size = new System.Drawing.Size(67, 20);
     this.cmbCompanyOrderType.TabIndex = 8;
     this.cmbCompanyOrderType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cmbCompanyOrderType_KeyDown);
     //
     // labelControl41
     //
     this.labelControl41.Location = new System.Drawing.Point(612, 69);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(55, 13);
     this.labelControl41.TabIndex = 67;
     this.labelControl41.Text = "Order Type";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(289, 48);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(62, 13);
     this.labelControl6.TabIndex = 66;
     this.labelControl6.Text = "Our Ref. No.";
     //
     // txtPoDate
     //
     this.txtPoDate.Location = new System.Drawing.Point(212, 24);
     this.txtPoDate.Mask = "00/00/0000";
     this.txtPoDate.Name = "txtPoDate";
     this.txtPoDate.Size = new System.Drawing.Size(67, 21);
     this.txtPoDate.TabIndex = 65;
     this.txtPoDate.TabStop = false;
     this.txtPoDate.ValidatingType = typeof(System.DateTime);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(612, 50);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(68, 13);
     this.labelControl13.TabIndex = 64;
     this.labelControl13.Text = "Payment Date";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(447, 50);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(45, 13);
     this.labelControl8.TabIndex = 63;
     this.labelControl8.Text = "Due Date";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(447, 27);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 62;
     this.labelControl5.Text = "Comp. Ref. Date";
     //
     // txtPaymentDate
     //
     this.txtPaymentDate.Location = new System.Drawing.Point(705, 46);
     this.txtPaymentDate.Mask = "00/00/0000";
     this.txtPaymentDate.Name = "txtPaymentDate";
     this.txtPaymentDate.Size = new System.Drawing.Size(67, 21);
     this.txtPaymentDate.TabIndex = 7;
     this.txtPaymentDate.ValidatingType = typeof(System.DateTime);
     this.txtPaymentDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPaymentDate_KeyDown);
     this.txtPaymentDate.Leave += new System.EventHandler(this.txtPaymentDate_Leave);
     //
     // txtCompanyRefDate
     //
     this.txtCompanyRefDate.Location = new System.Drawing.Point(535, 24);
     this.txtCompanyRefDate.Mask = "00/00/0000";
     this.txtCompanyRefDate.Name = "txtCompanyRefDate";
     this.txtCompanyRefDate.Size = new System.Drawing.Size(67, 21);
     this.txtCompanyRefDate.TabIndex = 2;
     this.txtCompanyRefDate.ValidatingType = typeof(System.DateTime);
     this.txtCompanyRefDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCompanyRefDate_KeyDown);
     this.txtCompanyRefDate.Leave += new System.EventHandler(this.txtCompanyRefDate_Leave);
     //
     // txtPaymentRefNo
     //
     this.txtPaymentRefNo.EnterMoveNextControl = true;
     this.txtPaymentRefNo.Location = new System.Drawing.Point(705, 25);
     this.txtPaymentRefNo.Name = "txtPaymentRefNo";
     this.txtPaymentRefNo.Properties.MaxLength = 4;
     this.txtPaymentRefNo.Size = new System.Drawing.Size(67, 20);
     this.txtPaymentRefNo.TabIndex = 3;
     this.txtPaymentRefNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPaymentRefNo_KeyPress);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(612, 27);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(86, 13);
     this.labelControl12.TabIndex = 60;
     this.labelControl12.Text = "Payment Ref. No.";
     //
     // txtCompanyRefNo
     //
     this.txtCompanyRefNo.EnterMoveNextControl = true;
     this.txtCompanyRefNo.Location = new System.Drawing.Point(373, 24);
     this.txtCompanyRefNo.Name = "txtCompanyRefNo";
     this.txtCompanyRefNo.Properties.MaxLength = 6;
     this.txtCompanyRefNo.Size = new System.Drawing.Size(65, 20);
     this.txtCompanyRefNo.TabIndex = 1;
     this.txtCompanyRefNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCompanyRefNo_KeyPress);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(289, 26);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 61;
     this.labelControl4.Text = "Comp. Ref. No.";
     //
     // txtPoNo
     //
     this.txtPoNo.Location = new System.Drawing.Point(63, 24);
     this.txtPoNo.Name = "txtPoNo";
     this.txtPoNo.Properties.MaxLength = 9;
     this.txtPoNo.Size = new System.Drawing.Size(65, 20);
     this.txtPoNo.TabIndex = 0;
     this.txtPoNo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPoNo_KeyPress);
     this.txtPoNo.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPoNo_PreviewKeyDown);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(15, 27);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(34, 13);
     this.labelControl2.TabIndex = 59;
     this.labelControl2.Text = "PO No.";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(15, 48);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(38, 13);
     this.labelControl7.TabIndex = 58;
     this.labelControl7.Text = "Supplier";
     //
     // txtSupplierID
     //
     this.txtSupplierID.EnterMoveNextControl = true;
     this.txtSupplierID.Location = new System.Drawing.Point(63, 45);
     this.txtSupplierID.Name = "txtSupplierID";
     this.txtSupplierID.Properties.MaxLength = 3;
     this.txtSupplierID.Size = new System.Drawing.Size(65, 20);
     this.txtSupplierID.TabIndex = 4;
     this.txtSupplierID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSupplierID_KeyPress);
     this.txtSupplierID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSupplierID_PreviewKeyDown);
     //
     // btnPurchaseOrderPickList
     //
     this.btnPurchaseOrderPickList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnPurchaseOrderPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPurchaseOrderPickList.Appearance.Options.UseFont = true;
     this.btnPurchaseOrderPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPurchaseOrderPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPurchaseOrderPickList.Location = new System.Drawing.Point(134, 24);
     this.btnPurchaseOrderPickList.Name = "btnPurchaseOrderPickList";
     this.btnPurchaseOrderPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPurchaseOrderPickList.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btnPurchaseOrderPickList.SuperTip = superToolTip1;
     this.btnPurchaseOrderPickList.TabIndex = 48;
     this.btnPurchaseOrderPickList.TabStop = false;
     this.btnPurchaseOrderPickList.Click += new System.EventHandler(this.btnPurchaseOrderPickList_Click);
     //
     // btnSupplierPickList
     //
     this.btnSupplierPickList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnSupplierPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnSupplierPickList.Appearance.Options.UseFont = true;
     this.btnSupplierPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnSupplierPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSupplierPickList.Location = new System.Drawing.Point(134, 45);
     this.btnSupplierPickList.Name = "btnSupplierPickList";
     this.btnSupplierPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnSupplierPickList.Size = new System.Drawing.Size(22, 20);
     this.btnSupplierPickList.TabIndex = 53;
     this.btnSupplierPickList.TabStop = false;
     this.btnSupplierPickList.Click += new System.EventHandler(this.btnSupplierPickList_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(166, 27);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(40, 13);
     this.labelControl1.TabIndex = 57;
     this.labelControl1.Text = "PO Date";
     //
     // txtSupplierName
     //
     this.txtSupplierName.Enabled = false;
     this.txtSupplierName.Location = new System.Drawing.Point(166, 46);
     this.txtSupplierName.Name = "txtSupplierName";
     this.txtSupplierName.Properties.MaxLength = 30;
     this.txtSupplierName.Size = new System.Drawing.Size(113, 20);
     this.txtSupplierName.TabIndex = 47;
     this.txtSupplierName.TabStop = false;
     //
     // tbGRN
     //
     this.tbGRN.Controls.Add(this.groupControl6);
     this.tbGRN.Name = "tbGRN";
     this.tbGRN.Size = new System.Drawing.Size(789, 91);
     this.tbGRN.Text = "GRN";
     //
     // groupControl6
     //
     this.groupControl6.Controls.Add(this.txtPOID);
     this.groupControl6.Controls.Add(this.txtGRNID);
     this.groupControl6.Controls.Add(this.txtGRNCustomerName);
     this.groupControl6.Controls.Add(this.cmbGRNType);
     this.groupControl6.Controls.Add(this.labelControl37);
     this.groupControl6.Controls.Add(this.btnGRNSupplierPickList);
     this.groupControl6.Controls.Add(this.labelControl25);
     this.groupControl6.Controls.Add(this.txtGRNDueDate);
     this.groupControl6.Controls.Add(this.txtGRNSupplierName);
     this.groupControl6.Controls.Add(this.simpleButton3);
     this.groupControl6.Controls.Add(this.btnGRNPickList);
     this.groupControl6.Controls.Add(this.labelControl27);
     this.groupControl6.Controls.Add(this.labelControl28);
     this.groupControl6.Controls.Add(this.txtGRNCompRefDate);
     this.groupControl6.Controls.Add(this.simpleButton8);
     this.groupControl6.Controls.Add(this.labelControl30);
     this.groupControl6.Controls.Add(this.txtCustomerID);
     this.groupControl6.Controls.Add(this.txtGRNSupplierID);
     this.groupControl6.Controls.Add(this.labelControl31);
     this.groupControl6.Controls.Add(this.txtCustomerOrderNo);
     this.groupControl6.Controls.Add(this.txtGRNCompRefNo);
     this.groupControl6.Controls.Add(this.txtGRNDate);
     this.groupControl6.Controls.Add(this.labelControl32);
     this.groupControl6.Controls.Add(this.txtBMCOrderNo);
     this.groupControl6.Controls.Add(this.labelControl33);
     this.groupControl6.Controls.Add(this.labelControl34);
     this.groupControl6.Controls.Add(this.labelControl35);
     this.groupControl6.Controls.Add(this.labelControl36);
     this.groupControl6.Location = new System.Drawing.Point(3, -1);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(788, 93);
     this.groupControl6.TabIndex = 0;
     this.groupControl6.Text = "Goods Receipt Note";
     //
     // txtPOID
     //
     this.txtPOID.EnterMoveNextControl = true;
     this.txtPOID.Location = new System.Drawing.Point(60, 45);
     this.txtPOID.Name = "txtPOID";
     this.txtPOID.Properties.MaxLength = 9;
     this.txtPOID.Size = new System.Drawing.Size(64, 20);
     this.txtPOID.TabIndex = 4;
     this.txtPOID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPOID_KeyPress);
     this.txtPOID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPOID_PreviewKeyDown);
     //
     // txtGRNID
     //
     this.txtGRNID.EnterMoveNextControl = true;
     this.txtGRNID.Location = new System.Drawing.Point(60, 23);
     this.txtGRNID.Name = "txtGRNID";
     this.txtGRNID.Properties.MaxLength = 9;
     this.txtGRNID.Size = new System.Drawing.Size(64, 20);
     this.txtGRNID.TabIndex = 0;
     this.txtGRNID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtGRNID_KeyPress);
     this.txtGRNID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGRNID_PreviewKeyDown);
     //
     // txtGRNCustomerName
     //
     this.txtGRNCustomerName.Enabled = false;
     this.txtGRNCustomerName.EnterMoveNextControl = true;
     this.txtGRNCustomerName.Location = new System.Drawing.Point(307, 67);
     this.txtGRNCustomerName.Name = "txtGRNCustomerName";
     this.txtGRNCustomerName.Properties.MaxLength = 30;
     this.txtGRNCustomerName.Size = new System.Drawing.Size(140, 20);
     this.txtGRNCustomerName.TabIndex = 10;
     //
     // cmbGRNType
     //
     this.cmbGRNType.Location = new System.Drawing.Point(60, 67);
     this.cmbGRNType.Name = "cmbGRNType";
     this.cmbGRNType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGRNType.Properties.Items.AddRange(new object[] {
     "BMC",
     "Service",
     "Tender Samples"});
     this.cmbGRNType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGRNType.Size = new System.Drawing.Size(64, 20);
     this.cmbGRNType.TabIndex = 8;
     this.cmbGRNType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cmbGRNType_KeyDown);
     //
     // labelControl37
     //
     this.labelControl37.Location = new System.Drawing.Point(153, 48);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(52, 13);
     this.labelControl37.TabIndex = 100239;
     this.labelControl37.Text = "Supplier ID";
     //
     // btnGRNSupplierPickList
     //
     this.btnGRNSupplierPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnGRNSupplierPickList.Appearance.Options.UseFont = true;
     this.btnGRNSupplierPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnGRNSupplierPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnGRNSupplierPickList.Location = new System.Drawing.Point(281, 45);
     this.btnGRNSupplierPickList.Name = "btnGRNSupplierPickList";
     this.btnGRNSupplierPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnGRNSupplierPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btnGRNSupplierPickList.SuperTip = superToolTip2;
     this.btnGRNSupplierPickList.TabIndex = 100238;
     this.btnGRNSupplierPickList.TabStop = false;
     this.btnGRNSupplierPickList.Click += new System.EventHandler(this.btnSupplierPickList_Click);
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(7, 69);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(48, 13);
     this.labelControl25.TabIndex = 100235;
     this.labelControl25.Text = "GRN Type";
     //
     // txtGRNDueDate
     //
     this.txtGRNDueDate.Location = new System.Drawing.Point(714, 22);
     this.txtGRNDueDate.Mask = "00/00/0000";
     this.txtGRNDueDate.Name = "txtGRNDueDate";
     this.txtGRNDueDate.Size = new System.Drawing.Size(63, 21);
     this.txtGRNDueDate.TabIndex = 3;
     this.txtGRNDueDate.ValidatingType = typeof(System.DateTime);
     this.txtGRNDueDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtGRNDueDate_KeyDown);
     this.txtGRNDueDate.Leave += new System.EventHandler(this.txtGRNDueDate_Leave);
     //
     // txtGRNSupplierName
     //
     this.txtGRNSupplierName.Enabled = false;
     this.txtGRNSupplierName.EnterMoveNextControl = true;
     this.txtGRNSupplierName.Location = new System.Drawing.Point(307, 45);
     this.txtGRNSupplierName.Name = "txtGRNSupplierName";
     this.txtGRNSupplierName.Properties.MaxLength = 30;
     this.txtGRNSupplierName.Size = new System.Drawing.Size(140, 20);
     this.txtGRNSupplierName.TabIndex = 100220;
     this.txtGRNSupplierName.TabStop = false;
     //
     // simpleButton3
     //
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(126, 44);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.simpleButton3.SuperTip = superToolTip3;
     this.simpleButton3.TabIndex = 100214;
     this.simpleButton3.TabStop = false;
     //
     // btnGRNPickList
     //
     this.btnGRNPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnGRNPickList.Appearance.Options.UseFont = true;
     this.btnGRNPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnGRNPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnGRNPickList.Location = new System.Drawing.Point(126, 23);
     this.btnGRNPickList.Name = "btnGRNPickList";
     this.btnGRNPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnGRNPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.btnGRNPickList.SuperTip = superToolTip4;
     this.btnGRNPickList.TabIndex = 100211;
     this.btnGRNPickList.TabStop = false;
     this.btnGRNPickList.Click += new System.EventHandler(this.btnGRNPickList_Click);
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(453, 25);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(81, 13);
     this.labelControl27.TabIndex = 100225;
     this.labelControl27.Text = "Comp. Ref. Date";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(615, 26);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(45, 13);
     this.labelControl28.TabIndex = 100227;
     this.labelControl28.Text = "Due Date";
     //
     // txtGRNCompRefDate
     //
     this.txtGRNCompRefDate.Location = new System.Drawing.Point(540, 23);
     this.txtGRNCompRefDate.Mask = "00/00/0000";
     this.txtGRNCompRefDate.Name = "txtGRNCompRefDate";
     this.txtGRNCompRefDate.Size = new System.Drawing.Size(63, 21);
     this.txtGRNCompRefDate.TabIndex = 2;
     this.txtGRNCompRefDate.ValidatingType = typeof(System.DateTime);
     this.txtGRNCompRefDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtGRNCompRefDate_KeyDown);
     this.txtGRNCompRefDate.Leave += new System.EventHandler(this.txtGRNCompRefDate_Leave);
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(281, 67);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem5);
     this.simpleButton8.SuperTip = superToolTip5;
     this.simpleButton8.TabIndex = 100217;
     this.simpleButton8.TabStop = false;
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(284, 25);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(75, 13);
     this.labelControl30.TabIndex = 100223;
     this.labelControl30.Text = "Comp. Ref. No.";
     //
     // txtCustomerID
     //
     this.txtCustomerID.EnterMoveNextControl = true;
     this.txtCustomerID.Location = new System.Drawing.Point(216, 66);
     this.txtCustomerID.Name = "txtCustomerID";
     this.txtCustomerID.Properties.MaxLength = 6;
     this.txtCustomerID.Size = new System.Drawing.Size(63, 20);
     this.txtCustomerID.TabIndex = 9;
     this.txtCustomerID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCustomerID_KeyPress);
     //
     // txtGRNSupplierID
     //
     this.txtGRNSupplierID.EnterMoveNextControl = true;
     this.txtGRNSupplierID.Location = new System.Drawing.Point(216, 45);
     this.txtGRNSupplierID.Name = "txtGRNSupplierID";
     this.txtGRNSupplierID.Properties.MaxLength = 3;
     this.txtGRNSupplierID.Size = new System.Drawing.Size(63, 20);
     this.txtGRNSupplierID.TabIndex = 5;
     this.txtGRNSupplierID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSupplierID_KeyPress);
     this.txtGRNSupplierID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSupplierID_PreviewKeyDown);
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(7, 48);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(28, 13);
     this.labelControl31.TabIndex = 100213;
     this.labelControl31.Text = "PO ID";
     //
     // txtCustomerOrderNo
     //
     this.txtCustomerOrderNo.EnterMoveNextControl = true;
     this.txtCustomerOrderNo.Location = new System.Drawing.Point(714, 45);
     this.txtCustomerOrderNo.Name = "txtCustomerOrderNo";
     this.txtCustomerOrderNo.Properties.MaxLength = 30;
     this.txtCustomerOrderNo.Size = new System.Drawing.Size(63, 20);
     this.txtCustomerOrderNo.TabIndex = 7;
     //
     // txtGRNCompRefNo
     //
     this.txtGRNCompRefNo.EnterMoveNextControl = true;
     this.txtGRNCompRefNo.Location = new System.Drawing.Point(365, 23);
     this.txtGRNCompRefNo.Name = "txtGRNCompRefNo";
     this.txtGRNCompRefNo.Properties.MaxLength = 30;
     this.txtGRNCompRefNo.Size = new System.Drawing.Size(82, 20);
     this.txtGRNCompRefNo.TabIndex = 1;
     //
     // txtGRNDate
     //
     this.txtGRNDate.Location = new System.Drawing.Point(216, 23);
     this.txtGRNDate.Mask = "00/00/0000";
     this.txtGRNDate.Name = "txtGRNDate";
     this.txtGRNDate.Size = new System.Drawing.Size(63, 21);
     this.txtGRNDate.TabIndex = 100218;
     this.txtGRNDate.TabStop = false;
     this.txtGRNDate.ValidatingType = typeof(System.DateTime);
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(153, 25);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(47, 13);
     this.labelControl32.TabIndex = 100222;
     this.labelControl32.Text = "GRN Date";
     //
     // txtBMCOrderNo
     //
     this.txtBMCOrderNo.EnterMoveNextControl = true;
     this.txtBMCOrderNo.Location = new System.Drawing.Point(540, 45);
     this.txtBMCOrderNo.Name = "txtBMCOrderNo";
     this.txtBMCOrderNo.Properties.MaxLength = 30;
     this.txtBMCOrderNo.Size = new System.Drawing.Size(63, 20);
     this.txtBMCOrderNo.TabIndex = 6;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(615, 48);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(93, 13);
     this.labelControl33.TabIndex = 100231;
     this.labelControl33.Text = "Customer Order No";
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(153, 69);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 100216;
     this.labelControl34.Text = "Customer ID";
     //
     // labelControl35
     //
     this.labelControl35.Location = new System.Drawing.Point(7, 28);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(35, 13);
     this.labelControl35.TabIndex = 100210;
     this.labelControl35.Text = "GRN ID";
     //
     // labelControl36
     //
     this.labelControl36.Location = new System.Drawing.Point(453, 48);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(72, 13);
     this.labelControl36.TabIndex = 100233;
     this.labelControl36.Text = "BMC Order No.";
     //
     // tbPurchaseInvoice
     //
     this.tbPurchaseInvoice.Controls.Add(this.groupControl5);
     this.tbPurchaseInvoice.Name = "tbPurchaseInvoice";
     this.tbPurchaseInvoice.Size = new System.Drawing.Size(789, 91);
     this.tbPurchaseInvoice.Text = "tbPurchaseInvoice";
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.txtInvoiceCustomerID);
     this.groupControl5.Controls.Add(this.txtInvoiceSupplierID);
     this.groupControl5.Controls.Add(this.txtInvoiceID);
     this.groupControl5.Controls.Add(this.labelControl14);
     this.groupControl5.Controls.Add(this.txtInvoiceDueDate);
     this.groupControl5.Controls.Add(this.labelControl15);
     this.groupControl5.Controls.Add(this.txtInvoiceCustomerName);
     this.groupControl5.Controls.Add(this.txtGatePassNo);
     this.groupControl5.Controls.Add(this.simpleButton1);
     this.groupControl5.Controls.Add(this.simpleButton5);
     this.groupControl5.Controls.Add(this.btnInvoicePickList);
     this.groupControl5.Controls.Add(this.labelControl16);
     this.groupControl5.Controls.Add(this.labelControl17);
     this.groupControl5.Controls.Add(this.txtPO);
     this.groupControl5.Controls.Add(this.txtCompanyInvoiceDate);
     this.groupControl5.Controls.Add(this.labelControl18);
     this.groupControl5.Controls.Add(this.simpleButton2);
     this.groupControl5.Controls.Add(this.labelControl19);
     this.groupControl5.Controls.Add(this.txtGRN);
     this.groupControl5.Controls.Add(this.txtInvoiceSupplierName);
     this.groupControl5.Controls.Add(this.labelControl20);
     this.groupControl5.Controls.Add(this.simpleButton4);
     this.groupControl5.Controls.Add(this.txtInvoiceCompOrderRefNo);
     this.groupControl5.Controls.Add(this.txtCompanyInvoiceID);
     this.groupControl5.Controls.Add(this.txtInvoiceDate);
     this.groupControl5.Controls.Add(this.labelControl21);
     this.groupControl5.Controls.Add(this.txtInvoiceOurRefNo);
     this.groupControl5.Controls.Add(this.labelControl22);
     this.groupControl5.Controls.Add(this.labelControl23);
     this.groupControl5.Controls.Add(this.InvoiceId);
     this.groupControl5.Controls.Add(this.labelControl24);
     this.groupControl5.Location = new System.Drawing.Point(2, -2);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(790, 93);
     this.groupControl5.TabIndex = 25;
     this.groupControl5.Text = "Purchase Invoice";
     //
     // txtInvoiceCustomerID
     //
     this.txtInvoiceCustomerID.EnterMoveNextControl = true;
     this.txtInvoiceCustomerID.Location = new System.Drawing.Point(108, 67);
     this.txtInvoiceCustomerID.Name = "txtInvoiceCustomerID";
     this.txtInvoiceCustomerID.Properties.MaxLength = 6;
     this.txtInvoiceCustomerID.Size = new System.Drawing.Size(39, 20);
     this.txtInvoiceCustomerID.TabIndex = 8;
     this.txtInvoiceCustomerID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCustomerID_KeyPress);
     //
     // txtInvoiceSupplierID
     //
     this.txtInvoiceSupplierID.EnterMoveNextControl = true;
     this.txtInvoiceSupplierID.Location = new System.Drawing.Point(108, 45);
     this.txtInvoiceSupplierID.Name = "txtInvoiceSupplierID";
     this.txtInvoiceSupplierID.Properties.MaxLength = 3;
     this.txtInvoiceSupplierID.Size = new System.Drawing.Size(39, 20);
     this.txtInvoiceSupplierID.TabIndex = 4;
     this.txtInvoiceSupplierID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSupplierID_KeyPress);
     this.txtInvoiceSupplierID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSupplierID_PreviewKeyDown);
     //
     // txtInvoiceID
     //
     this.txtInvoiceID.EnterMoveNextControl = true;
     this.txtInvoiceID.Location = new System.Drawing.Point(82, 23);
     this.txtInvoiceID.Name = "txtInvoiceID";
     this.txtInvoiceID.Properties.MaxLength = 9;
     this.txtInvoiceID.Size = new System.Drawing.Size(65, 20);
     this.txtInvoiceID.TabIndex = 0;
     this.txtInvoiceID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtInvoiceID_KeyPress);
     this.txtInvoiceID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInvoiceID_PreviewKeyDown);
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(634, 26);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(64, 13);
     this.labelControl14.TabIndex = 100235;
     this.labelControl14.Text = "Gate Pass No";
     //
     // txtInvoiceDueDate
     //
     this.txtInvoiceDueDate.Location = new System.Drawing.Point(389, 45);
     this.txtInvoiceDueDate.Mask = "00/00/0000";
     this.txtInvoiceDueDate.Name = "txtInvoiceDueDate";
     this.txtInvoiceDueDate.Size = new System.Drawing.Size(69, 21);
     this.txtInvoiceDueDate.TabIndex = 5;
     this.txtInvoiceDueDate.ValidatingType = typeof(System.DateTime);
     this.txtInvoiceDueDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtInvoiceDueDate_KeyDown);
     this.txtInvoiceDueDate.Leave += new System.EventHandler(this.txtInvoiceDueDate_Leave);
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(464, 70);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(30, 13);
     this.labelControl15.TabIndex = 100237;
     this.labelControl15.Text = "PO No";
     //
     // txtInvoiceCustomerName
     //
     this.txtInvoiceCustomerName.Enabled = false;
     this.txtInvoiceCustomerName.EnterMoveNextControl = true;
     this.txtInvoiceCustomerName.Location = new System.Drawing.Point(173, 67);
     this.txtInvoiceCustomerName.Name = "txtInvoiceCustomerName";
     this.txtInvoiceCustomerName.Properties.MaxLength = 30;
     this.txtInvoiceCustomerName.Size = new System.Drawing.Size(130, 20);
     this.txtInvoiceCustomerName.TabIndex = 100220;
     this.txtInvoiceCustomerName.TabStop = false;
     //
     // txtGatePassNo
     //
     this.txtGatePassNo.EnterMoveNextControl = true;
     this.txtGatePassNo.Location = new System.Drawing.Point(704, 22);
     this.txtGatePassNo.Name = "txtGatePassNo";
     this.txtGatePassNo.Properties.MaxLength = 30;
     this.txtGatePassNo.Size = new System.Drawing.Size(63, 20);
     this.txtGatePassNo.TabIndex = 3;
     //
     // simpleButton1
     //
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(148, 45);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip6.Items.Add(toolTipTitleItem6);
     this.simpleButton1.SuperTip = superToolTip6;
     this.simpleButton1.TabIndex = 100214;
     this.simpleButton1.TabStop = false;
     //
     // simpleButton5
     //
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(82, 67);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(25, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip7.Items.Add(toolTipItem1);
     this.simpleButton5.SuperTip = superToolTip7;
     this.simpleButton5.TabIndex = 100239;
     this.simpleButton5.TabStop = false;
     //
     // btnInvoicePickList
     //
     this.btnInvoicePickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnInvoicePickList.Appearance.Options.UseFont = true;
     this.btnInvoicePickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnInvoicePickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnInvoicePickList.Location = new System.Drawing.Point(148, 23);
     this.btnInvoicePickList.Name = "btnInvoicePickList";
     this.btnInvoicePickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnInvoicePickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem7.Text = "Add New Entry";
     superToolTip8.Items.Add(toolTipTitleItem7);
     this.btnInvoicePickList.SuperTip = superToolTip8;
     this.btnInvoicePickList.TabIndex = 100211;
     this.btnInvoicePickList.TabStop = false;
     this.btnInvoicePickList.Click += new System.EventHandler(this.btnInvoicePickList_Click);
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(464, 26);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(95, 13);
     this.labelControl16.TabIndex = 100225;
     this.labelControl16.Text = "Comp. Invoice Date";
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(306, 50);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(45, 13);
     this.labelControl17.TabIndex = 100227;
     this.labelControl17.Text = "Due Date";
     //
     // txtPO
     //
     this.txtPO.EnterMoveNextControl = true;
     this.txtPO.Location = new System.Drawing.Point(565, 65);
     this.txtPO.Name = "txtPO";
     this.txtPO.Properties.MaxLength = 9;
     this.txtPO.Size = new System.Drawing.Size(63, 20);
     this.txtPO.TabIndex = 10;
     this.txtPO.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPOID_KeyPress);
     this.txtPO.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPO_PreviewKeyDown);
     //
     // txtCompanyInvoiceDate
     //
     this.txtCompanyInvoiceDate.Location = new System.Drawing.Point(565, 22);
     this.txtCompanyInvoiceDate.Mask = "00/00/0000";
     this.txtCompanyInvoiceDate.Name = "txtCompanyInvoiceDate";
     this.txtCompanyInvoiceDate.Size = new System.Drawing.Size(63, 21);
     this.txtCompanyInvoiceDate.TabIndex = 2;
     this.txtCompanyInvoiceDate.ValidatingType = typeof(System.DateTime);
     this.txtCompanyInvoiceDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCompanyInvoiceDate_KeyDown);
     this.txtCompanyInvoiceDate.Leave += new System.EventHandler(this.txtCompanyInvoiceDate_Leave);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(311, 72);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(21, 13);
     this.labelControl18.TabIndex = 100229;
     this.labelControl18.Text = "GRN";
     //
     // simpleButton2
     //
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(148, 67);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem8.Text = "Add New Entry";
     superToolTip9.Items.Add(toolTipTitleItem8);
     this.simpleButton2.SuperTip = superToolTip9;
     this.simpleButton2.TabIndex = 100217;
     this.simpleButton2.TabStop = false;
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(305, 28);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(83, 13);
     this.labelControl19.TabIndex = 100223;
     this.labelControl19.Text = "Comp. Invoice ID";
     //
     // txtGRN
     //
     this.txtGRN.EnterMoveNextControl = true;
     this.txtGRN.Location = new System.Drawing.Point(389, 67);
     this.txtGRN.Name = "txtGRN";
     this.txtGRN.Properties.MaxLength = 9;
     this.txtGRN.Size = new System.Drawing.Size(69, 20);
     this.txtGRN.TabIndex = 9;
     this.txtGRN.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtGRN_KeyPress);
     //
     // txtInvoiceSupplierName
     //
     this.txtInvoiceSupplierName.Enabled = false;
     this.txtInvoiceSupplierName.EnterMoveNextControl = true;
     this.txtInvoiceSupplierName.Location = new System.Drawing.Point(173, 46);
     this.txtInvoiceSupplierName.Name = "txtInvoiceSupplierName";
     this.txtInvoiceSupplierName.Properties.MaxLength = 30;
     this.txtInvoiceSupplierName.Size = new System.Drawing.Size(130, 20);
     this.txtInvoiceSupplierName.TabIndex = 100219;
     this.txtInvoiceSupplierName.TabStop = false;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(19, 51);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(51, 13);
     this.labelControl20.TabIndex = 100213;
     this.labelControl20.Text = "Supplier Id";
     //
     // simpleButton4
     //
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(82, 45);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(25, 20);
     toolTipItem2.Text = "Save Module";
     superToolTip10.Items.Add(toolTipItem2);
     this.simpleButton4.SuperTip = superToolTip10;
     this.simpleButton4.TabIndex = 100238;
     this.simpleButton4.TabStop = false;
     //
     // txtInvoiceCompOrderRefNo
     //
     this.txtInvoiceCompOrderRefNo.EnterMoveNextControl = true;
     this.txtInvoiceCompOrderRefNo.Location = new System.Drawing.Point(565, 44);
     this.txtInvoiceCompOrderRefNo.Name = "txtInvoiceCompOrderRefNo";
     this.txtInvoiceCompOrderRefNo.Properties.MaxLength = 30;
     this.txtInvoiceCompOrderRefNo.Size = new System.Drawing.Size(63, 20);
     this.txtInvoiceCompOrderRefNo.TabIndex = 6;
     //
     // txtCompanyInvoiceID
     //
     this.txtCompanyInvoiceID.EnterMoveNextControl = true;
     this.txtCompanyInvoiceID.Location = new System.Drawing.Point(389, 23);
     this.txtCompanyInvoiceID.Name = "txtCompanyInvoiceID";
     this.txtCompanyInvoiceID.Properties.MaxLength = 30;
     this.txtCompanyInvoiceID.Size = new System.Drawing.Size(69, 20);
     this.txtCompanyInvoiceID.TabIndex = 1;
     //
     // txtInvoiceDate
     //
     this.txtInvoiceDate.Location = new System.Drawing.Point(240, 24);
     this.txtInvoiceDate.Mask = "00/00/0000";
     this.txtInvoiceDate.Name = "txtInvoiceDate";
     this.txtInvoiceDate.Size = new System.Drawing.Size(63, 21);
     this.txtInvoiceDate.TabIndex = 100218;
     this.txtInvoiceDate.TabStop = false;
     this.txtInvoiceDate.ValidatingType = typeof(System.DateTime);
     //
     // labelControl21
     //
     this.labelControl21.Location = new System.Drawing.Point(175, 28);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(61, 13);
     this.labelControl21.TabIndex = 100222;
     this.labelControl21.Text = "Invoice Date";
     //
     // txtInvoiceOurRefNo
     //
     this.txtInvoiceOurRefNo.EnterMoveNextControl = true;
     this.txtInvoiceOurRefNo.Location = new System.Drawing.Point(704, 44);
     this.txtInvoiceOurRefNo.Name = "txtInvoiceOurRefNo";
     this.txtInvoiceOurRefNo.Properties.MaxLength = 30;
     this.txtInvoiceOurRefNo.Size = new System.Drawing.Size(63, 20);
     this.txtInvoiceOurRefNo.TabIndex = 7;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(464, 48);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(95, 13);
     this.labelControl22.TabIndex = 100231;
     this.labelControl22.Text = "Comp. Order RefNo";
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(19, 72);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(59, 13);
     this.labelControl23.TabIndex = 100216;
     this.labelControl23.Text = "Customer Id";
     //
     // InvoiceId
     //
     this.InvoiceId.Location = new System.Drawing.Point(19, 28);
     this.InvoiceId.Name = "InvoiceId";
     this.InvoiceId.Size = new System.Drawing.Size(48, 13);
     this.InvoiceId.TabIndex = 100210;
     this.InvoiceId.Text = "Invoice Id";
     //
     // labelControl24
     //
     this.labelControl24.Location = new System.Drawing.Point(634, 47);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(51, 13);
     this.labelControl24.TabIndex = 100233;
     this.labelControl24.Text = "Our RefNo";
     //
     // grdOrderDetails
     //
     this.grdOrderDetails.AllowAddNew = true;
     this.grdOrderDetails.CaptionHeight = 17;
     this.grdOrderDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdOrderDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdOrderDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdOrderDetails.Images"))));
     this.grdOrderDetails.LinesPerRow = 1;
     this.grdOrderDetails.Location = new System.Drawing.Point(2, 21);
     this.grdOrderDetails.Name = "grdOrderDetails";
     this.grdOrderDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdOrderDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdOrderDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdOrderDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdOrderDetails.PrintInfo.PageSettings")));
     this.grdOrderDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdOrderDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdOrderDetails.RowHeight = 23;
     this.grdOrderDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdOrderDetails.Size = new System.Drawing.Size(783, 230);
     this.grdOrderDetails.TabIndex = 9;
     this.grdOrderDetails.Text = "c1TrueDBGrid1";
     this.grdOrderDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdOrderDetails.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdOrderDetails_AfterColUpdate);
     this.grdOrderDetails.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grdOrderDetails_KeyDown);
     this.grdOrderDetails.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdOrderDetails_KeyPress);
     this.grdOrderDetails.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdOrderDetails_PreviewKeyDown);
     this.grdOrderDetails.PropBag = resources.GetString("grdOrderDetails.PropBag");
     //
     // groupControl3
     //
     this.groupControl3.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.groupControl3.Controls.Add(this.grdOrderDetails);
     this.groupControl3.Location = new System.Drawing.Point(2, 101);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(787, 253);
     this.groupControl3.TabIndex = 1;
     this.groupControl3.Text = "Details";
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(490, 12);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem3.Text = "Remove Module";
     superToolTip11.Items.Add(toolTipItem3);
     this.btnDelete.SuperTip = superToolTip11;
     this.btnDelete.TabIndex = 4;
     this.btnDelete.Text = "&Del";
     this.btnDelete.Visible = false;
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(491, 12);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Edit Module Details";
     superToolTip12.Items.Add(toolTipItem4);
     this.btnEdit.SuperTip = superToolTip12;
     this.btnEdit.TabIndex = 16;
     this.btnEdit.Text = " &Edit ";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(83, 8);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem5.Text = "Cancel Current Operation";
     superToolTip13.Items.Add(toolTipItem5);
     this.btnCancel.SuperTip = superToolTip13;
     this.btnCancel.TabIndex = 18;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(7, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem6.Text = "Add New Module";
     superToolTip14.Items.Add(toolTipItem6);
     this.btnAdd.SuperTip = superToolTip14;
     this.btnAdd.TabIndex = 15;
     this.btnAdd.Text = " Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(490, 12);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem7.Text = "Save Module";
     superToolTip15.Items.Add(toolTipItem7);
     this.btnSave.SuperTip = superToolTip15;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(490, 12);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem8.Text = "Close Modules List";
     superToolTip16.Items.Add(toolTipItem8);
     this.btnExit.SuperTip = superToolTip16;
     this.btnExit.TabIndex = 19;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnPost);
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnSave);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Controls.Add(this.btnEdit);
     this.groupControl2.Controls.Add(this.btnDelete);
     this.groupControl2.Location = new System.Drawing.Point(0, 446);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(790, 49);
     this.groupControl2.TabIndex = 4;
     //
     // btnPost
     //
     this.btnPost.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(491, 12);
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(58, 32);
     toolTipItem9.Text = "Edit Module Details";
     superToolTip17.Items.Add(toolTipItem9);
     this.btnPost.SuperTip = superToolTip17;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = " &Post ";
     this.btnPost.Click += new System.EventHandler(this.btnPost_Click);
     //
     // txtGrossAmount
     //
     this.txtGrossAmount.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.txtGrossAmount.Enabled = false;
     this.txtGrossAmount.EnterMoveNextControl = true;
     this.txtGrossAmount.Location = new System.Drawing.Point(85, 2);
     this.txtGrossAmount.Name = "txtGrossAmount";
     this.txtGrossAmount.Properties.MaxLength = 8;
     this.txtGrossAmount.Size = new System.Drawing.Size(136, 20);
     this.txtGrossAmount.TabIndex = 10;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl3.Location = new System.Drawing.Point(6, 5);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(67, 13);
     this.labelControl3.TabIndex = 21;
     this.labelControl3.Text = "Gross Amount";
     //
     // txtNetAmount
     //
     this.txtNetAmount.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.txtNetAmount.Enabled = false;
     this.txtNetAmount.EnterMoveNextControl = true;
     this.txtNetAmount.Location = new System.Drawing.Point(85, 65);
     this.txtNetAmount.Name = "txtNetAmount";
     this.txtNetAmount.Properties.MaxLength = 8;
     this.txtNetAmount.Properties.NullValuePrompt = "0.00";
     this.txtNetAmount.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtNetAmount.Size = new System.Drawing.Size(136, 20);
     this.txtNetAmount.TabIndex = 13;
     //
     // txtSalesTax
     //
     this.txtSalesTax.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.txtSalesTax.Enabled = false;
     this.txtSalesTax.EnterMoveNextControl = true;
     this.txtSalesTax.Location = new System.Drawing.Point(85, 44);
     this.txtSalesTax.Name = "txtSalesTax";
     this.txtSalesTax.Properties.MaxLength = 8;
     this.txtSalesTax.Properties.NullValuePrompt = "0.00";
     this.txtSalesTax.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtSalesTax.Size = new System.Drawing.Size(136, 20);
     this.txtSalesTax.TabIndex = 12;
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl10.Location = new System.Drawing.Point(6, 47);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(46, 13);
     this.labelControl10.TabIndex = 21;
     this.labelControl10.Text = "Sales Tax";
     //
     // txtDiscount
     //
     this.txtDiscount.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.txtDiscount.Enabled = false;
     this.txtDiscount.EnterMoveNextControl = true;
     this.txtDiscount.Location = new System.Drawing.Point(85, 23);
     this.txtDiscount.Name = "txtDiscount";
     this.txtDiscount.Properties.MaxLength = 8;
     this.txtDiscount.Properties.NullValuePrompt = "0.00";
     this.txtDiscount.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtDiscount.Size = new System.Drawing.Size(136, 20);
     this.txtDiscount.TabIndex = 11;
     //
     // labelControl9
     //
     this.labelControl9.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl9.Location = new System.Drawing.Point(6, 26);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(41, 13);
     this.labelControl9.TabIndex = 23;
     this.labelControl9.Text = "Discount";
     //
     // labelControl11
     //
     this.labelControl11.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl11.Location = new System.Drawing.Point(6, 68);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(57, 13);
     this.labelControl11.TabIndex = 23;
     this.labelControl11.Text = "Net Amount";
     //
     // txtRemarks
     //
     this.txtRemarks.Location = new System.Drawing.Point(5, 23);
     this.txtRemarks.MaxLength = 100;
     this.txtRemarks.Multiline = true;
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(249, 56);
     this.txtRemarks.TabIndex = 1;
     this.txtRemarks.TabStop = false;
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupControl4.Controls.Add(this.txtRemarks);
     this.groupControl4.Location = new System.Drawing.Point(2, 356);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(259, 87);
     this.groupControl4.TabIndex = 3;
     this.groupControl4.Text = "Remarks";
     //
     // groupControl8
     //
     this.groupControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl8.Controls.Add(this.txtSalesTax);
     this.groupControl8.Controls.Add(this.txtGrossAmount);
     this.groupControl8.Controls.Add(this.labelControl3);
     this.groupControl8.Controls.Add(this.labelControl11);
     this.groupControl8.Controls.Add(this.txtNetAmount);
     this.groupControl8.Controls.Add(this.labelControl9);
     this.groupControl8.Controls.Add(this.labelControl10);
     this.groupControl8.Controls.Add(this.txtDiscount);
     this.groupControl8.Location = new System.Drawing.Point(564, 356);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(223, 87);
     this.groupControl8.TabIndex = 2;
     //
     // mnRelationshipMapping
     //
     this.mnRelationshipMapping.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.relationshipMappingToolStripMenuItem});
     this.mnRelationshipMapping.Name = "mnRelationshipMapping";
     this.mnRelationshipMapping.Size = new System.Drawing.Size(191, 26);
     //
     // relationshipMappingToolStripMenuItem
     //
     this.relationshipMappingToolStripMenuItem.Image = global::ERPGUI.Properties.Resources.Map;
     this.relationshipMappingToolStripMenuItem.Name = "relationshipMappingToolStripMenuItem";
     this.relationshipMappingToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.relationshipMappingToolStripMenuItem.Text = "Relationship Mapping";
     this.relationshipMappingToolStripMenuItem.Click += new System.EventHandler(this.relationshipMappingToolStripMenuItem_Click);
     //
     // frmPurchaseOrder
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(790, 495);
     this.ContextMenuStrip = this.mnRelationshipMapping;
     this.Controls.Add(this.groupControl8);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl3);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmPurchaseOrder";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Purchase Order";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmPurchaseOrder_FormClosing);
     this.Load += new System.EventHandler(this.frmPurchaseOrder_Load);
     this.Enter += new System.EventHandler(this.frmPurchaseOrder_Enter);
     this.Leave += new System.EventHandler(this.frmPurchaseOrder_Leave);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tbPurchaseOrder.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtOurRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCompanyOrderType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPaymentRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPoNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSupplierName.Properties)).EndInit();
     this.tbGRN.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     this.groupControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtPOID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGRNType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNSupplierName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNSupplierID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerOrderNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRNCompRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBMCOrderNo.Properties)).EndInit();
     this.tbPurchaseInvoice.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceCustomerID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceSupplierID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGatePassNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPO.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGRN.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceSupplierName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceCompOrderRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyInvoiceID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceOurRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrderDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtGrossAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalesTax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     this.groupControl8.PerformLayout();
     this.mnRelationshipMapping.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#20
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
            this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();

            this.dsContacts1         = new Tutorial08.DsContacts();
            this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
            this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbConnection2    = new System.Data.OleDb.OleDbConnection();
            this.c1TrueDBDropdown1   = new C1.Win.C1TrueDBGrid.C1TrueDBDropdown();
            this.dsCustType1         = new Tutorial08.DsCustType();
            this.oleDbDataAdapter2   = new System.Data.OleDb.OleDbDataAdapter();
            this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbSelectCommand2 = new System.Data.OleDb.OleDbCommand();
            this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsContacts1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBDropdown1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsCustType1)).BeginInit();
            this.SuspendLayout();
            //
            // c1TrueDBGrid1
            //
            this.c1TrueDBGrid1.AllowAddNew    = true;
            this.c1TrueDBGrid1.Caption        = "C1True DBGrid .Net";
            this.c1TrueDBGrid1.CaptionHeight  = 17;
            this.c1TrueDBGrid1.DataMember     = "Contacts";
            this.c1TrueDBGrid1.DataSource     = this.dsContacts1;
            this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
            this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
            this.c1TrueDBGrid1.Location               = new System.Drawing.Point(16, 8);
            this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
            this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
            this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
            this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
            this.c1TrueDBGrid1.RowHeight              = 15;
            this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(480, 208);
            this.c1TrueDBGrid1.TabIndex               = 0;
            this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.UnboundColumnFetch    += new C1.Win.C1TrueDBGrid.UnboundColumnFetchEventHandler(this.c1TrueDBGrid1_UnboundColumnFetch);
            this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Name\" DataF" +
                                                        "ield=\"\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Captio" +
                                                        "n=\"FirstName\" DataField=\"FirstName\"><ValueItems /><GroupInfo /></C1DataColumn><C" +
                                                        "1DataColumn Level=\"0\" Caption=\"LastName\" DataField=\"LastName\"><ValueItems /><Gro" +
                                                        "upInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"CustType\" DataField=\"Cu" +
                                                        "stType\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Captio" +
                                                        "n=\"ContactType\" DataField=\"ContactType\"><ValueItems /><GroupInfo /></C1DataColum" +
                                                        "n><C1DataColumn Level=\"0\" Caption=\"Callback\" DataField=\"Callback\"><ValueItems />" +
                                                        "<GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"ContactDate\" DataFi" +
                                                        "eld=\"ContactDate\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=" +
                                                        "\"0\" Caption=\"UserCode\" DataField=\"UserCode\"><ValueItems /><GroupInfo /></C1DataC" +
                                                        "olumn><C1DataColumn Level=\"0\" Caption=\"Expr1\" DataField=\"Expr1\"><ValueItems /><G" +
                                                        "roupInfo /></C1DataColumn></DataCols><Styles type=\"C1.Win.C1TrueDBGrid.Design.Co" +
                                                        "ntextWrapper\"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}In" +
                                                        "active{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}Selected{ForeCol" +
                                                        "or:HighlightText;BackColor:Highlight;}Editor{}FilterBar{}Heading{Wrap:True;BackC" +
                                                        "olor:Control;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;AlignVert:Center;}S" +
                                                        "tyle18{AlignHorz:Near;}Style19{AlignHorz:Near;}Style14{AlignHorz:Near;}Style15{A" +
                                                        "lignHorz:Near;}Style16{}Style17{}Style10{AlignHorz:Near;}Style11{}Style12{}Style" +
                                                        "13{}Style27{AlignHorz:Far;}Style29{}Style28{}Style26{AlignHorz:Far;}Style25{}Sty" +
                                                        "le9{}Style8{}Style24{}Style23{AlignHorz:Far;}Style5{}Style4{}Style7{}Style6{}Sty" +
                                                        "le1{}Style22{AlignHorz:Far;}Style3{}Style2{}Style21{}Style20{}OddRow{}Style38{Al" +
                                                        "ignHorz:Near;}Style39{AlignHorz:Near;}Style36{}Style37{}Style34{AlignHorz:Far;}S" +
                                                        "tyle35{AlignHorz:Far;}Style32{}Style33{}Style30{AlignHorz:Center;}Style49{}Style" +
                                                        "48{}Style31{AlignHorz:Center;}Normal{}Style41{}Style40{}Style43{AlignHorz:Near;}" +
                                                        "Style42{AlignHorz:Near;}Style45{}Style44{}Style47{AlignHorz:Near;}Style46{AlignH" +
                                                        "orz:Near;}EvenRow{BackColor:Aqua;}Style59{}Style58{}RecordSelector{AlignImage:Ce" +
                                                        "nter;}Style51{}Style50{}Footer{}Style52{}Style53{}Style54{}Style55{}Style56{}Sty" +
                                                        "le57{}Caption{AlignHorz:Center;}Style69{}Style68{}Style63{}Style62{}Style61{}Sty" +
                                                        "le60{}Style67{}Style66{}Style65{}Style64{}Group{AlignVert:Center;Border:None,,0," +
                                                        " 0, 0, 0;BackColor:ControlDark;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.Mer" +
                                                        "geView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight=\"1" +
                                                        "7\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRecSelWidth=\"17\" " +
                                                        "VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 17, 476, 187</C" +
                                                        "lientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"Style10\" /" +
                                                        "><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"S" +
                                                        "tyle8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"" +
                                                        "Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle pa" +
                                                        "rent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7" +
                                                        "\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" " +
                                                        "me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><Selec" +
                                                        "tedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /><i" +
                                                        "nternalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style46\" /><Style" +
                                                        " parent=\"Style1\" me=\"Style47\" /><FooterStyle parent=\"Style3\" me=\"Style48\" /><Edi" +
                                                        "torStyle parent=\"Style5\" me=\"Style49\" /><GroupHeaderStyle parent=\"Style1\" me=\"St" +
                                                        "yle53\" /><GroupFooterStyle parent=\"Style1\" me=\"Style52\" /><ColumnDivider>DarkGra" +
                                                        "y,Single</ColumnDivider><Height>15</Height><DCIdx>0</DCIdx></C1DisplayColumn><C1" +
                                                        "DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style14\" /><Style parent=\"Style1" +
                                                        "\" me=\"Style15\" /><FooterStyle parent=\"Style3\" me=\"Style16\" /><EditorStyle parent" +
                                                        "=\"Style5\" me=\"Style17\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style55\" /><Group" +
                                                        "FooterStyle parent=\"Style1\" me=\"Style54\" /><Visible>True</Visible><ColumnDivider" +
                                                        ">DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>1</DCIdx></C1DisplayCo" +
                                                        "lumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style18\" /><Style parent" +
                                                        "=\"Style1\" me=\"Style19\" /><FooterStyle parent=\"Style3\" me=\"Style20\" /><EditorStyl" +
                                                        "e parent=\"Style5\" me=\"Style21\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style57\" " +
                                                        "/><GroupFooterStyle parent=\"Style1\" me=\"Style56\" /><Visible>True</Visible><Colum" +
                                                        "nDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>2</DCIdx></C1D" +
                                                        "isplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style22\" /><Styl" +
                                                        "e parent=\"Style1\" me=\"Style23\" /><FooterStyle parent=\"Style3\" me=\"Style24\" /><Ed" +
                                                        "itorStyle parent=\"Style5\" me=\"Style25\" /><GroupHeaderStyle parent=\"Style1\" me=\"S" +
                                                        "tyle59\" /><GroupFooterStyle parent=\"Style1\" me=\"Style58\" /><Visible>True</Visibl" +
                                                        "e><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>3</DCI" +
                                                        "dx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style30\"" +
                                                        " /><Style parent=\"Style1\" me=\"Style31\" /><FooterStyle parent=\"Style3\" me=\"Style3" +
                                                        "2\" /><EditorStyle parent=\"Style5\" me=\"Style33\" /><GroupHeaderStyle parent=\"Style" +
                                                        "1\" me=\"Style63\" /><GroupFooterStyle parent=\"Style1\" me=\"Style62\" /><Visible>True" +
                                                        "</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCId" +
                                                        "x>5</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"" +
                                                        "Style34\" /><Style parent=\"Style1\" me=\"Style35\" /><FooterStyle parent=\"Style3\" me" +
                                                        "=\"Style36\" /><EditorStyle parent=\"Style5\" me=\"Style37\" /><GroupHeaderStyle paren" +
                                                        "t=\"Style1\" me=\"Style65\" /><GroupFooterStyle parent=\"Style1\" me=\"Style64\" /><Visi" +
                                                        "ble>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Heig" +
                                                        "ht><DCIdx>6</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Styl" +
                                                        "e2\" me=\"Style26\" /><Style parent=\"Style1\" me=\"Style27\" /><FooterStyle parent=\"St" +
                                                        "yle3\" me=\"Style28\" /><EditorStyle parent=\"Style5\" me=\"Style29\" /><GroupHeaderSty" +
                                                        "le parent=\"Style1\" me=\"Style61\" /><GroupFooterStyle parent=\"Style1\" me=\"Style60\"" +
                                                        " /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>" +
                                                        "15</Height><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle pare" +
                                                        "nt=\"Style2\" me=\"Style42\" /><Style parent=\"Style1\" me=\"Style43\" /><FooterStyle pa" +
                                                        "rent=\"Style3\" me=\"Style44\" /><EditorStyle parent=\"Style5\" me=\"Style45\" /><GroupH" +
                                                        "eaderStyle parent=\"Style1\" me=\"Style69\" /><GroupFooterStyle parent=\"Style1\" me=\"" +
                                                        "Style68\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider>" +
                                                        "<Height>15</Height><DCIdx>8</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingSt" +
                                                        "yle parent=\"Style2\" me=\"Style38\" /><Style parent=\"Style1\" me=\"Style39\" /><Footer" +
                                                        "Style parent=\"Style3\" me=\"Style40\" /><EditorStyle parent=\"Style5\" me=\"Style41\" /" +
                                                        "><GroupHeaderStyle parent=\"Style1\" me=\"Style67\" /><GroupFooterStyle parent=\"Styl" +
                                                        "e1\" me=\"Style66\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</Column" +
                                                        "Divider><Height>15</Height><DCIdx>7</DCIdx></C1DisplayColumn></internalCols></C1" +
                                                        ".Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /" +
                                                        "><Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /><St" +
                                                        "yle parent=\"Heading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /><Sty" +
                                                        "le parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Style p" +
                                                        "arent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style " +
                                                        "parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><Sty" +
                                                        "le parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></Named" +
                                                        "Styles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified</Lay" +
                                                        "out><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 476, 204</Clien" +
                                                        "tArea><PrintPageHeaderStyle parent=\"\" me=\"Style50\" /><PrintPageFooterStyle paren" +
                                                        "t=\"\" me=\"Style51\" /></Blob>";
            //
            // dsContacts1
            //
            this.dsContacts1.DataSetName = "DsContacts";
            this.dsContacts1.Locale      = new System.Globalization.CultureInfo("en-US");
            this.dsContacts1.Namespace   = "http://www.tempuri.org/DsContacts.xsd";
            //
            // oleDbDataAdapter1
            //
            this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
            this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "Contacts", new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("FirstName", "FirstName"),
                    new System.Data.Common.DataColumnMapping("LastName", "LastName"),
                    new System.Data.Common.DataColumnMapping("CustType", "CustType"),
                    new System.Data.Common.DataColumnMapping("ContactType", "ContactType"),
                    new System.Data.Common.DataColumnMapping("Callback", "Callback"),
                    new System.Data.Common.DataColumnMapping("ContactDate", "ContactDate"),
                    new System.Data.Common.DataColumnMapping("UserCode", "UserCode"),
                    new System.Data.Common.DataColumnMapping("Expr1", "Expr1")
                })
            });
            //
            // oleDbSelectCommand1
            //
            this.oleDbSelectCommand1.CommandText = "SELECT Customer.FirstName, Customer.LastName, Customer.CustType, Contacts.Cont" +
                                                   "actType, Contacts.Callback, Contacts.ContactDate, Contacts.UserCode, Customer.U" +
                                                   "serCode AS Expr1 FROM Contacts INNER JOIN Customer ON Contacts.UserCode = Custo" +
                                                   "mer.UserCode";
            this.oleDbSelectCommand1.Connection = this.oleDbConnection2;
            //
            // oleDbConnection2
            //
            this.oleDbConnection2.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=5;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
            //
            // c1TrueDBDropdown1
            //
            this.c1TrueDBDropdown1.AllowColMove        = true;
            this.c1TrueDBDropdown1.AllowColSelect      = true;
            this.c1TrueDBDropdown1.AllowRowSizing      = C1.Win.C1TrueDBGrid.RowSizingEnum.AllRows;
            this.c1TrueDBDropdown1.AlternatingRows     = false;
            this.c1TrueDBDropdown1.CaptionHeight       = 17;
            this.c1TrueDBDropdown1.ColumnCaptionHeight = 17;
            this.c1TrueDBDropdown1.ColumnFooterHeight  = 17;
            this.c1TrueDBDropdown1.DataMember          = "CustType";
            this.c1TrueDBDropdown1.DataSource          = this.dsCustType1;
            this.c1TrueDBDropdown1.FetchRowStyles      = false;
            this.c1TrueDBDropdown1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images1"))));
            this.c1TrueDBDropdown1.LayoutFileName     = "";
            this.c1TrueDBDropdown1.LayoutName         = "";
            this.c1TrueDBDropdown1.LayoutURL          = "";
            this.c1TrueDBDropdown1.DisplayMember      = "CustType.TypeId";
            this.c1TrueDBDropdown1.Location           = new System.Drawing.Point(272, 56);
            this.c1TrueDBDropdown1.Name               = "c1TrueDBDropdown1";
            this.c1TrueDBDropdown1.RowDivider.Color   = System.Drawing.Color.DarkGray;
            this.c1TrueDBDropdown1.RowDivider.Style   = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
            this.c1TrueDBDropdown1.RowHeight          = 15;
            this.c1TrueDBDropdown1.RowSubDividerColor = System.Drawing.Color.DarkGray;
            this.c1TrueDBDropdown1.ScrollTips         = false;
            this.c1TrueDBDropdown1.Size               = new System.Drawing.Size(192, 136);
            this.c1TrueDBDropdown1.TabIndex           = 1;
            this.c1TrueDBDropdown1.Text               = "c1TrueDBDropdown1";
            this.c1TrueDBDropdown1.Visible            = false;
            this.c1TrueDBDropdown1.PropBag            = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"TypeDesc\" D" +
                                                        "ataField=\"TypeDesc\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Leve" +
                                                        "l=\"0\" Caption=\"TypeId\" DataField=\"TypeId\"><ValueItems /><GroupInfo /></C1DataCol" +
                                                        "umn></DataCols><Styles type=\"C1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>Ca" +
                                                        "ption{AlignHorz:Center;}Normal{}Style25{}Selected{ForeColor:HighlightText;BackCo" +
                                                        "lor:Highlight;}Editor{}Style18{AlignHorz:Near;}Style19{AlignHorz:Near;}Style14{A" +
                                                        "lignHorz:Near;}Style15{AlignHorz:Near;}Style16{}Style17{}Style10{AlignHorz:Near;" +
                                                        "}Style11{}OddRow{}Style13{}Style12{}Footer{}HighlightRow{ForeColor:HighlightText" +
                                                        ";BackColor:Highlight;}RecordSelector{AlignImage:Center;}Style24{}Style23{}Style2" +
                                                        "2{}Style21{}Style20{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCa" +
                                                        "ption;}EvenRow{BackColor:Aqua;}Heading{Wrap:True;BackColor:Control;Border:Raised" +
                                                        ",,1, 1, 1, 1;ForeColor:ControlText;AlignVert:Center;}FilterBar{}Style4{}Style9{}" +
                                                        "Style8{}Style5{}Group{AlignVert:Center;Border:None,,0, 0, 0, 0;BackColor:Control" +
                                                        "Dark;}Style7{}Style6{}Style1{}Style3{}Style2{}</Data></Styles><Splits><C1.Win.C1" +
                                                        "TrueDBGrid.DropdownView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" Colu" +
                                                        "mnFooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"16\" Rec" +
                                                        "ordSelectors=\"False\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRe" +
                                                        "ct>0, 0, 188, 132</ClientRect><internalCols><C1DropDisplayColumn><DCIdx>0</DCIdx" +
                                                        "><HeadingStyle parent=\"Style2\" me=\"Style14\" /><Style parent=\"Style1\" me=\"Style15" +
                                                        "\" /><FooterStyle parent=\"Style3\" me=\"Style16\" /><EditorStyle parent=\"Style5\" me=" +
                                                        "\"Style17\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style23\" /><GroupFooterStyle p" +
                                                        "arent=\"Style1\" me=\"Style22\" /><Visible>True</Visible><ColumnDivider>DarkGray,Sin" +
                                                        "gle</ColumnDivider><Height>15</Height></C1DropDisplayColumn><C1DropDisplayColumn" +
                                                        "><DCIdx>1</DCIdx><HeadingStyle parent=\"Style2\" me=\"Style18\" /><Style parent=\"Sty" +
                                                        "le1\" me=\"Style19\" /><FooterStyle parent=\"Style3\" me=\"Style20\" /><EditorStyle par" +
                                                        "ent=\"Style5\" me=\"Style21\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style25\" /><Gr" +
                                                        "oupFooterStyle parent=\"Style1\" me=\"Style24\" /><Visible>True</Visible><ColumnDivi" +
                                                        "der>DarkGray,Single</ColumnDivider><Height>15</Height></C1DropDisplayColumn></in" +
                                                        "ternalCols><CaptionStyle parent=\"Style2\" me=\"Style10\" /><EditorStyle parent=\"Edi" +
                                                        "tor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"Style8\" /><FilterBarStyle " +
                                                        "parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"Footer\" me=\"Style3\" /><Gr" +
                                                        "oupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle parent=\"Heading\" me=\"Style2" +
                                                        "\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\" /><InactiveStyle parent" +
                                                        "=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style9\" /><RecordSele" +
                                                        "ctorStyle parent=\"RecordSelector\" me=\"Style11\" /><SelectedStyle parent=\"Selected" +
                                                        "\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /></C1.Win.C1TrueDBGrid.Dropd" +
                                                        "ownView></Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /><Style parent=\"Norm" +
                                                        "al\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /><Style parent=\"Heading\"" +
                                                        " me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /><Style parent=\"Normal\" m" +
                                                        "e=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal\" me=\"H" +
                                                        "ighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Normal\" me=\"" +
                                                        "OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><Style parent=\"Normal\" m" +
                                                        "e=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></NamedStyles><vertSplits>1" +
                                                        "</vertSplits><horzSplits>1</horzSplits><Layout>Modified</Layout><DefaultRecSelWi" +
                                                        "dth>17</DefaultRecSelWidth><ClientArea>0, 0, 188, 132</ClientArea></Blob>";
            //
            // dsCustType1
            //
            this.dsCustType1.DataSetName = "DsCustType";
            this.dsCustType1.Locale      = new System.Globalization.CultureInfo("en-US");
            this.dsCustType1.Namespace   = "http://www.tempuri.org/DsCustType.xsd";
            //
            // oleDbDataAdapter2
            //
            this.oleDbDataAdapter2.DeleteCommand = this.oleDbDeleteCommand1;
            this.oleDbDataAdapter2.InsertCommand = this.oleDbInsertCommand1;
            this.oleDbDataAdapter2.SelectCommand = this.oleDbSelectCommand2;
            this.oleDbDataAdapter2.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "CustType", new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("TypeDesc", "TypeDesc"),
                    new System.Data.Common.DataColumnMapping("TypeId", "TypeId")
                })
            });
            this.oleDbDataAdapter2.UpdateCommand = this.oleDbUpdateCommand1;
            //
            // oleDbDeleteCommand1
            //
            this.oleDbDeleteCommand1.CommandText = "DELETE FROM CustType WHERE (TypeId = ?) AND (TypeDesc = ? OR ? IS NULL AND TypeDe" +
                                                   "sc IS NULL)";
            this.oleDbDeleteCommand1.Connection = this.oleDbConnection2;
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeId", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
            //
            // oleDbInsertCommand1
            //
            this.oleDbInsertCommand1.CommandText = "INSERT INTO CustType(TypeDesc, TypeId) VALUES (?, ?)";
            this.oleDbInsertCommand1.Connection  = this.oleDbConnection2;
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, "TypeDesc"));
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, "TypeId"));
            //
            // oleDbSelectCommand2
            //
            this.oleDbSelectCommand2.CommandText = "SELECT TypeDesc, TypeId FROM CustType";
            this.oleDbSelectCommand2.Connection  = this.oleDbConnection2;
            //
            // oleDbUpdateCommand1
            //
            this.oleDbUpdateCommand1.CommandText = "UPDATE CustType SET TypeDesc = ?, TypeId = ? WHERE (TypeId = ?) AND (TypeDesc = ?" +
                                                   " OR ? IS NULL AND TypeDesc IS NULL)";
            this.oleDbUpdateCommand1.Connection = this.oleDbConnection2;
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, "TypeDesc"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, "TypeId"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeId", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(504, 222);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.c1TrueDBDropdown1,
                this.c1TrueDBGrid1
            });
            this.Name  = "Form1";
            this.Text  = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsContacts1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBDropdown1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsCustType1)).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()
 {
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSaleInvoiceGeneration));
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     this.lblTitle = new System.Windows.Forms.Label();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.btnFindSalemanID = new DevExpress.XtraEditors.SimpleButton();
     this.btnFindTerrID = new DevExpress.XtraEditors.SimpleButton();
     this.Label1 = new System.Windows.Forms.Label();
     this.txtorders = new System.Windows.Forms.TextBox();
     this.chkmerggroup = new System.Windows.Forms.CheckBox();
     this.chkLocalOrders = new System.Windows.Forms.CheckBox();
     this.txtEmpName = new System.Windows.Forms.TextBox();
     this.txtEmployeeCode = new System.Windows.Forms.TextBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.txtTerritoryName = new System.Windows.Forms.TextBox();
     this.txtTerritoryCode = new System.Windows.Forms.TextBox();
     this.Label10 = new System.Windows.Forms.Label();
     this.btnShowSaleOrders = new System.Windows.Forms.Button();
     this.grpGrid = new System.Windows.Forms.GroupBox();
     this.CheckBox1 = new System.Windows.Forms.CheckBox();
     this.c1_grdSaleOrders = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.optSelect = new System.Windows.Forms.RadioButton();
     this.optUnSelect = new System.Windows.Forms.RadioButton();
     this.Label3 = new System.Windows.Forms.Label();
     this.mskpreviousDate = new System.Windows.Forms.MaskedTextBox();
     this.GroupBox2.SuspendLayout();
     this.grpGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.c1_grdSaleOrders)).BeginInit();
     this.SuspendLayout();
     //
     // lblTitle
     //
     this.lblTitle.BackColor = System.Drawing.Color.Gray;
     this.lblTitle.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.ForeColor = System.Drawing.Color.White;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(768, 26);
     this.lblTitle.TabIndex = 1;
     this.lblTitle.Text = "Auto Sale Invoice Generation";
     //
     // GroupBox2
     //
     this.GroupBox2.Controls.Add(this.btnFindSalemanID);
     this.GroupBox2.Controls.Add(this.btnFindTerrID);
     this.GroupBox2.Controls.Add(this.Label1);
     this.GroupBox2.Controls.Add(this.txtorders);
     this.GroupBox2.Controls.Add(this.chkmerggroup);
     this.GroupBox2.Controls.Add(this.chkLocalOrders);
     this.GroupBox2.Controls.Add(this.txtEmpName);
     this.GroupBox2.Controls.Add(this.txtEmployeeCode);
     this.GroupBox2.Controls.Add(this.Label2);
     this.GroupBox2.Controls.Add(this.txtTerritoryName);
     this.GroupBox2.Controls.Add(this.txtTerritoryCode);
     this.GroupBox2.Controls.Add(this.Label10);
     this.GroupBox2.Controls.Add(this.btnShowSaleOrders);
     this.GroupBox2.Location = new System.Drawing.Point(12, 29);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(680, 69);
     this.GroupBox2.TabIndex = 3;
     this.GroupBox2.TabStop = false;
     //
     // btnFindSalemanID
     //
     this.btnFindSalemanID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindSalemanID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindSalemanID.Appearance.Options.UseFont = true;
     this.btnFindSalemanID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindSalemanID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindSalemanID.Location = new System.Drawing.Point(155, 41);
     this.btnFindSalemanID.Name = "btnFindSalemanID";
     this.btnFindSalemanID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindSalemanID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btnFindSalemanID.SuperTip = superToolTip1;
     this.btnFindSalemanID.TabIndex = 95;
     this.btnFindSalemanID.Click += new System.EventHandler(this.btnFindSalemanID_Click);
     //
     // btnFindTerrID
     //
     this.btnFindTerrID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindTerrID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindTerrID.Appearance.Options.UseFont = true;
     this.btnFindTerrID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindTerrID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindTerrID.Location = new System.Drawing.Point(155, 13);
     this.btnFindTerrID.Name = "btnFindTerrID";
     this.btnFindTerrID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindTerrID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btnFindTerrID.SuperTip = superToolTip2;
     this.btnFindTerrID.TabIndex = 94;
     this.btnFindTerrID.Click += new System.EventHandler(this.btnFindTerrID_Click);
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.DarkRed;
     this.Label1.Location = new System.Drawing.Point(455, 14);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(71, 19);
     this.Label1.TabIndex = 39;
     this.Label1.Text = "Orders :";
     //
     // txtorders
     //
     this.txtorders.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.txtorders.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtorders.ForeColor = System.Drawing.Color.Blue;
     this.txtorders.Location = new System.Drawing.Point(556, 9);
     this.txtorders.Name = "txtorders";
     this.txtorders.ReadOnly = true;
     this.txtorders.Size = new System.Drawing.Size(118, 29);
     this.txtorders.TabIndex = 38;
     //
     // chkmerggroup
     //
     this.chkmerggroup.AutoSize = true;
     this.chkmerggroup.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkmerggroup.ForeColor = System.Drawing.Color.DarkRed;
     this.chkmerggroup.Location = new System.Drawing.Point(454, 42);
     this.chkmerggroup.Name = "chkmerggroup";
     this.chkmerggroup.Size = new System.Drawing.Size(82, 19);
     this.chkmerggroup.TabIndex = 37;
     this.chkmerggroup.Text = "Merg Bills";
     this.chkmerggroup.UseVisualStyleBackColor = true;
     //
     // chkLocalOrders
     //
     this.chkLocalOrders.AutoSize = true;
     this.chkLocalOrders.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkLocalOrders.ForeColor = System.Drawing.Color.DarkRed;
     this.chkLocalOrders.Location = new System.Drawing.Point(454, 11);
     this.chkLocalOrders.Name = "chkLocalOrders";
     this.chkLocalOrders.Size = new System.Drawing.Size(79, 19);
     this.chkLocalOrders.TabIndex = 36;
     this.chkLocalOrders.Text = "L. Orders";
     this.chkLocalOrders.UseVisualStyleBackColor = true;
     this.chkLocalOrders.Visible = false;
     //
     // txtEmpName
     //
     this.txtEmpName.Location = new System.Drawing.Point(183, 41);
     this.txtEmpName.Name = "txtEmpName";
     this.txtEmpName.ReadOnly = true;
     this.txtEmpName.Size = new System.Drawing.Size(263, 21);
     this.txtEmpName.TabIndex = 35;
     //
     // txtEmployeeCode
     //
     this.txtEmployeeCode.Location = new System.Drawing.Point(109, 41);
     this.txtEmployeeCode.Name = "txtEmployeeCode";
     this.txtEmployeeCode.Size = new System.Drawing.Size(44, 21);
     this.txtEmployeeCode.TabIndex = 1;
     this.txtEmployeeCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEmployeeCode_KeyDown);
     this.txtEmployeeCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtEmployeeCode_KeyPress);
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Location = new System.Drawing.Point(12, 45);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(88, 13);
     this.Label2.TabIndex = 32;
     this.Label2.Text = "Employee Code :";
     //
     // txtTerritoryName
     //
     this.txtTerritoryName.Location = new System.Drawing.Point(183, 13);
     this.txtTerritoryName.Name = "txtTerritoryName";
     this.txtTerritoryName.ReadOnly = true;
     this.txtTerritoryName.Size = new System.Drawing.Size(263, 21);
     this.txtTerritoryName.TabIndex = 31;
     //
     // txtTerritoryCode
     //
     this.txtTerritoryCode.Location = new System.Drawing.Point(109, 13);
     this.txtTerritoryCode.Name = "txtTerritoryCode";
     this.txtTerritoryCode.Size = new System.Drawing.Size(44, 21);
     this.txtTerritoryCode.TabIndex = 0;
     this.txtTerritoryCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtTerritoryCode_KeyDown);
     this.txtTerritoryCode.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTerritoryCode_KeyPress);
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.Location = new System.Drawing.Point(18, 17);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(84, 13);
     this.Label10.TabIndex = 28;
     this.Label10.Text = "Territory Code :";
     //
     // btnShowSaleOrders
     //
     this.btnShowSaleOrders.Location = new System.Drawing.Point(556, 40);
     this.btnShowSaleOrders.Name = "btnShowSaleOrders";
     this.btnShowSaleOrders.Size = new System.Drawing.Size(118, 23);
     this.btnShowSaleOrders.TabIndex = 2;
     this.btnShowSaleOrders.Text = "&Show Sale Orders";
     this.btnShowSaleOrders.UseVisualStyleBackColor = true;
     this.btnShowSaleOrders.Click += new System.EventHandler(this.btnShowSaleOrders_Click);
     //
     // grpGrid
     //
     this.grpGrid.Controls.Add(this.CheckBox1);
     this.grpGrid.Controls.Add(this.c1_grdSaleOrders);
     this.grpGrid.Enabled = false;
     this.grpGrid.Location = new System.Drawing.Point(12, 104);
     this.grpGrid.Name = "grpGrid";
     this.grpGrid.Size = new System.Drawing.Size(747, 546);
     this.grpGrid.TabIndex = 4;
     this.grpGrid.TabStop = false;
     //
     // CheckBox1
     //
     this.CheckBox1.AutoSize = true;
     this.CheckBox1.Location = new System.Drawing.Point(20, 40);
     this.CheckBox1.Name = "CheckBox1";
     this.CheckBox1.Size = new System.Drawing.Size(15, 14);
     this.CheckBox1.TabIndex = 1;
     this.CheckBox1.UseVisualStyleBackColor = true;
     this.CheckBox1.CheckedChanged += new System.EventHandler(this.CheckBox1_CheckedChanged);
     //
     // c1_grdSaleOrders
     //
     this.c1_grdSaleOrders.AllowDrag = true;
     this.c1_grdSaleOrders.AllowDrop = true;
     this.c1_grdSaleOrders.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.c1_grdSaleOrders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.c1_grdSaleOrders.FilterBar = true;
     this.c1_grdSaleOrders.FlatStyle = C1.Win.C1TrueDBGrid.FlatModeEnum.Standard;
     this.c1_grdSaleOrders.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.c1_grdSaleOrders.Images.Add(((System.Drawing.Image)(resources.GetObject("c1_grdSaleOrders.Images"))));
     this.c1_grdSaleOrders.Location = new System.Drawing.Point(3, 17);
     this.c1_grdSaleOrders.MarqueeStyle = C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightRow;
     this.c1_grdSaleOrders.Name = "c1_grdSaleOrders";
     this.c1_grdSaleOrders.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.c1_grdSaleOrders.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.c1_grdSaleOrders.PreviewInfo.ZoomFactor = 75D;
     this.c1_grdSaleOrders.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1_grdSaleOrders.PrintInfo.PageSettings")));
     this.c1_grdSaleOrders.Size = new System.Drawing.Size(741, 526);
     this.c1_grdSaleOrders.TabIndex = 3;
     this.c1_grdSaleOrders.Text = "C1TrueDBGrid1";
     this.c1_grdSaleOrders.PropBag = resources.GetString("c1_grdSaleOrders.PropBag");
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(697, 653);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem1.Text = "Close Modules List";
     superToolTip3.Items.Add(toolTipItem1);
     this.btnExit.SuperTip = superToolTip3;
     this.btnExit.TabIndex = 80;
     this.btnExit.Text = " Exit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(636, 653);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem2.Text = "Save Module";
     superToolTip4.Items.Add(toolTipItem2);
     this.btnSave.SuperTip = superToolTip4;
     this.btnSave.TabIndex = 81;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // optSelect
     //
     this.optSelect.Appearance = System.Windows.Forms.Appearance.Button;
     this.optSelect.AutoSize = true;
     this.optSelect.Checked = true;
     this.optSelect.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.optSelect.FlatAppearance.BorderSize = 5;
     this.optSelect.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.optSelect.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.optSelect.Location = new System.Drawing.Point(460, 657);
     this.optSelect.Name = "optSelect";
     this.optSelect.Size = new System.Drawing.Size(78, 23);
     this.optSelect.TabIndex = 83;
     this.optSelect.TabStop = true;
     this.optSelect.Text = "S&elect All      ";
     this.optSelect.UseVisualStyleBackColor = true;
     this.optSelect.CheckedChanged += new System.EventHandler(this.optSelect_CheckedChanged);
     //
     // optUnSelect
     //
     this.optUnSelect.Appearance = System.Windows.Forms.Appearance.Button;
     this.optUnSelect.AutoSize = true;
     this.optUnSelect.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.optUnSelect.FlatAppearance.BorderSize = 5;
     this.optUnSelect.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.optUnSelect.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.optUnSelect.Location = new System.Drawing.Point(549, 657);
     this.optUnSelect.Name = "optUnSelect";
     this.optUnSelect.Size = new System.Drawing.Size(82, 23);
     this.optUnSelect.TabIndex = 82;
     this.optUnSelect.Text = "&Un Select All  ";
     this.optUnSelect.UseVisualStyleBackColor = true;
     this.optUnSelect.CheckedChanged += new System.EventHandler(this.optUnSelect_CheckedChanged);
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label3.Location = new System.Drawing.Point(579, 5);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(81, 13);
     this.Label3.TabIndex = 85;
     this.Label3.Text = "Previous Date :";
     //
     // mskpreviousDate
     //
     this.mskpreviousDate.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mskpreviousDate.Location = new System.Drawing.Point(677, 2);
     this.mskpreviousDate.Mask = "##/##/####";
     this.mskpreviousDate.Name = "mskpreviousDate";
     this.mskpreviousDate.Size = new System.Drawing.Size(78, 21);
     this.mskpreviousDate.TabIndex = 84;
     //
     // frmSaleInvoiceGeneration
     //
     this.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(766, 688);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.mskpreviousDate);
     this.Controls.Add(this.optSelect);
     this.Controls.Add(this.optUnSelect);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.grpGrid);
     this.Controls.Add(this.GroupBox2);
     this.Controls.Add(this.lblTitle);
     this.MaximizeBox = false;
     this.Name = "frmSaleInvoiceGeneration";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmSaleInvoiceGeneration";
     this.GroupBox2.ResumeLayout(false);
     this.GroupBox2.PerformLayout();
     this.grpGrid.ResumeLayout(false);
     this.grpGrid.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.c1_grdSaleOrders)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dataSet11           = new ToggleGroupRows.DataSet1();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.groupBox1           = new System.Windows.Forms.GroupBox();
     this.radioButton4        = new System.Windows.Forms.RadioButton();
     this.radioButton3        = new System.Windows.Forms.RadioButton();
     this.radioButton2        = new System.Windows.Forms.RadioButton();
     this.radioButton1        = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.DataSource = this.dataSet11.Orders;
     this.c1TrueDBGrid1.DataView   = C1.Win.C1TrueDBGrid.DataViewEnum.GroupBy;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location                         = new System.Drawing.Point(16, 16);
     this.c1TrueDBGrid1.Name                             = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location             = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size                 = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor           = 75D;
     this.c1TrueDBGrid1.PrintInfo.MeasurementDevice      = C1.Win.C1TrueDBGrid.PrintInfo.MeasurementDeviceEnum.Screen;
     this.c1TrueDBGrid1.PrintInfo.MeasurementPrinterName = null;
     this.c1TrueDBGrid1.PrintInfo.PageSettings           = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                             = new System.Drawing.Size(536, 217);
     this.c1TrueDBGrid1.TabIndex                         = 0;
     this.c1TrueDBGrid1.Text                             = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.RowColChange                    += new C1.Win.C1TrueDBGrid.RowColChangeEventHandler(this.c1TrueDBGrid1_RowColChange);
     this.c1TrueDBGrid1.PropBag                          = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Orders", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("OrderID", "OrderID"),
             new System.Data.Common.DataColumnMapping("CustomerID", "CustomerID"),
             new System.Data.Common.DataColumnMapping("EmployeeID", "EmployeeID"),
             new System.Data.Common.DataColumnMapping("OrderDate", "OrderDate"),
             new System.Data.Common.DataColumnMapping("RequiredDate", "RequiredDate"),
             new System.Data.Common.DataColumnMapping("ShippedDate", "ShippedDate"),
             new System.Data.Common.DataColumnMapping("ShipVia", "ShipVia"),
             new System.Data.Common.DataColumnMapping("Freight", "Freight"),
             new System.Data.Common.DataColumnMapping("ShipName", "ShipName"),
             new System.Data.Common.DataColumnMapping("ShipAddress", "ShipAddress"),
             new System.Data.Common.DataColumnMapping("ShipCity", "ShipCity"),
             new System.Data.Common.DataColumnMapping("ShipRegion", "ShipRegion"),
             new System.Data.Common.DataColumnMapping("ShipPostalCode", "ShipPostalCode"),
             new System.Data.Common.DataColumnMapping("ShipCountry", "ShipCountry")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = resources.GetString("oleDbInsertCommand1.CommandText");
     this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("CustomerID", System.Data.OleDb.OleDbType.VarWChar, 5, "CustomerID"),
         new System.Data.OleDb.OleDbParameter("EmployeeID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "EmployeeID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("Freight", System.Data.OleDb.OleDbType.Currency, 0, System.Data.ParameterDirection.Input, false, ((byte)(19)), ((byte)(0)), "Freight", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("OrderDate", System.Data.OleDb.OleDbType.DBDate, 0, "OrderDate"),
         new System.Data.OleDb.OleDbParameter("OrderID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "OrderID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("RequiredDate", System.Data.OleDb.OleDbType.DBDate, 0, "RequiredDate"),
         new System.Data.OleDb.OleDbParameter("ShipAddress", System.Data.OleDb.OleDbType.VarWChar, 60, "ShipAddress"),
         new System.Data.OleDb.OleDbParameter("ShipCity", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipCity"),
         new System.Data.OleDb.OleDbParameter("ShipCountry", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipCountry"),
         new System.Data.OleDb.OleDbParameter("ShipName", System.Data.OleDb.OleDbType.VarWChar, 40, "ShipName"),
         new System.Data.OleDb.OleDbParameter("ShippedDate", System.Data.OleDb.OleDbType.DBDate, 0, "ShippedDate"),
         new System.Data.OleDb.OleDbParameter("ShipPostalCode", System.Data.OleDb.OleDbType.VarWChar, 10, "ShipPostalCode"),
         new System.Data.OleDb.OleDbParameter("ShipRegion", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipRegion"),
         new System.Data.OleDb.OleDbParameter("ShipVia", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "ShipVia", System.Data.DataRowVersion.Current, null)
     });
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Program Files\\ComponentOne Studio" +
                                              ".NET 2.0\\Common\\C1Nwind.mdb;";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT CustomerID, EmployeeID, Freight, OrderDate, OrderID, RequiredDate, ShipAdd" +
                                            "ress, ShipCity, ShipCountry, ShipName, ShippedDate, ShipPostalCode, ShipRegion, " +
                                            "ShipVia FROM Orders";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radioButton4);
     this.groupBox1.Controls.Add(this.radioButton3);
     this.groupBox1.Controls.Add(this.radioButton2);
     this.groupBox1.Controls.Add(this.radioButton1);
     this.groupBox1.Location = new System.Drawing.Point(576, 24);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(168, 168);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "groupBox1";
     //
     // radioButton4
     //
     this.radioButton4.Location        = new System.Drawing.Point(16, 120);
     this.radioButton4.Name            = "radioButton4";
     this.radioButton4.Size            = new System.Drawing.Size(136, 24);
     this.radioButton4.TabIndex        = 3;
     this.radioButton4.Text            = "Collapse All";
     this.radioButton4.CheckedChanged += new System.EventHandler(this.radioButton4_CheckedChanged);
     //
     // radioButton3
     //
     this.radioButton3.Location        = new System.Drawing.Point(16, 88);
     this.radioButton3.Name            = "radioButton3";
     this.radioButton3.Size            = new System.Drawing.Size(136, 24);
     this.radioButton3.TabIndex        = 2;
     this.radioButton3.Text            = "Expand All";
     this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
     //
     // radioButton2
     //
     this.radioButton2.Checked         = true;
     this.radioButton2.Location        = new System.Drawing.Point(16, 48);
     this.radioButton2.Name            = "radioButton2";
     this.radioButton2.Size            = new System.Drawing.Size(144, 32);
     this.radioButton2.TabIndex        = 1;
     this.radioButton2.TabStop         = true;
     this.radioButton2.Text            = "Collapse Group row";
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radioButton1
     //
     this.radioButton1.Location        = new System.Drawing.Point(16, 24);
     this.radioButton1.Name            = "radioButton1";
     this.radioButton1.Size            = new System.Drawing.Size(144, 24);
     this.radioButton1.TabIndex        = 0;
     this.radioButton1.Text            = "Expand Group row";
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(760, 266);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSaleInvoice));
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
     this.lblTitle = new System.Windows.Forms.Label();
     this.lblDssId = new System.Windows.Forms.Label();
     this.lblGroup = new System.Windows.Forms.Label();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.btnFindPatientID = new DevExpress.XtraEditors.SimpleButton();
     this.btnFindCustomerID = new DevExpress.XtraEditors.SimpleButton();
     this.btnFindSalemanID = new DevExpress.XtraEditors.SimpleButton();
     this.btnFindTerrID = new DevExpress.XtraEditors.SimpleButton();
     this.btnFindInvoiceID = new DevExpress.XtraEditors.SimpleButton();
     this.txtSaleManName = new System.Windows.Forms.TextBox();
     this.txtSaleManId = new System.Windows.Forms.TextBox();
     this.Label16 = new System.Windows.Forms.Label();
     this.Label15 = new System.Windows.Forms.Label();
     this.txtBrickName = new System.Windows.Forms.TextBox();
     this.txtCustomerName = new System.Windows.Forms.TextBox();
     this.txtCustomerId = new System.Windows.Forms.TextBox();
     this.Label3 = new System.Windows.Forms.Label();
     this.mskInvoiceDate = new System.Windows.Forms.MaskedTextBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this.txtInvoiceId = new System.Windows.Forms.TextBox();
     this.grpRef = new System.Windows.Forms.GroupBox();
     this.mskRefDate = new System.Windows.Forms.MaskedTextBox();
     this.Label14 = new System.Windows.Forms.Label();
     this.txtRefNo = new System.Windows.Forms.TextBox();
     this.Label13 = new System.Windows.Forms.Label();
     this.mskDueDate = new System.Windows.Forms.MaskedTextBox();
     this.Label6 = new System.Windows.Forms.Label();
     this.txtDelManName = new System.Windows.Forms.TextBox();
     this.txtDelManId = new System.Windows.Forms.TextBox();
     this.txtEmployeeName = new System.Windows.Forms.TextBox();
     this.txtEmployeeId = new System.Windows.Forms.TextBox();
     this.Label4 = new System.Windows.Forms.Label();
     this.Label5 = new System.Windows.Forms.Label();
     this.tcSaleInvoice = new System.Windows.Forms.TabControl();
     this.tpInvoice = new System.Windows.Forms.TabPage();
     this.c1_grdInvoice = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.label17 = new System.Windows.Forms.Label();
     this.txtRemarks = new System.Windows.Forms.TextBox();
     this.Label8 = new System.Windows.Forms.Label();
     this.txtBonus = new System.Windows.Forms.TextBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.txtStock = new System.Windows.Forms.TextBox();
     this.txtNetAmount = new System.Windows.Forms.TextBox();
     this.txtSaleTax = new System.Windows.Forms.TextBox();
     this.Label10 = new System.Windows.Forms.Label();
     this.txtDiscount = new System.Windows.Forms.TextBox();
     this.Label9 = new System.Windows.Forms.Label();
     this.txtGrossAmt = new System.Windows.Forms.TextBox();
     this.Label12 = new System.Windows.Forms.Label();
     this.Label11 = new System.Windows.Forms.Label();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.lbllic = new System.Windows.Forms.Label();
     this.lblCubalance = new System.Windows.Forms.Label();
     this.txtBrickID = new System.Windows.Forms.TextBox();
     this.GroupBox1.SuspendLayout();
     this.grpRef.SuspendLayout();
     this.tcSaleInvoice.SuspendLayout();
     this.tpInvoice.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.c1_grdInvoice)).BeginInit();
     this.GroupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // lblTitle
     //
     this.lblTitle.BackColor = System.Drawing.Color.Gray;
     this.lblTitle.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.ForeColor = System.Drawing.Color.White;
     this.lblTitle.Location = new System.Drawing.Point(-1, 1);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(816, 26);
     this.lblTitle.TabIndex = 1;
     this.lblTitle.Text = "Sale Invoice - Normal";
     //
     // lblDssId
     //
     this.lblDssId.BackColor = System.Drawing.Color.Gray;
     this.lblDssId.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDssId.ForeColor = System.Drawing.SystemColors.Window;
     this.lblDssId.Location = new System.Drawing.Point(643, 1);
     this.lblDssId.Name = "lblDssId";
     this.lblDssId.Size = new System.Drawing.Size(149, 13);
     this.lblDssId.TabIndex = 71;
     this.lblDssId.Text = "DSS Id: 000241";
     this.lblDssId.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblGroup
     //
     this.lblGroup.BackColor = System.Drawing.Color.Gray;
     this.lblGroup.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGroup.ForeColor = System.Drawing.SystemColors.Window;
     this.lblGroup.Location = new System.Drawing.Point(643, 11);
     this.lblGroup.Name = "lblGroup";
     this.lblGroup.Size = new System.Drawing.Size(149, 13);
     this.lblGroup.TabIndex = 72;
     this.lblGroup.Text = "Group A";
     this.lblGroup.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.btnFindPatientID);
     this.GroupBox1.Controls.Add(this.btnFindCustomerID);
     this.GroupBox1.Controls.Add(this.btnFindSalemanID);
     this.GroupBox1.Controls.Add(this.btnFindTerrID);
     this.GroupBox1.Controls.Add(this.btnFindInvoiceID);
     this.GroupBox1.Controls.Add(this.txtSaleManName);
     this.GroupBox1.Controls.Add(this.txtSaleManId);
     this.GroupBox1.Controls.Add(this.Label16);
     this.GroupBox1.Controls.Add(this.Label15);
     this.GroupBox1.Controls.Add(this.txtBrickName);
     this.GroupBox1.Controls.Add(this.txtCustomerName);
     this.GroupBox1.Controls.Add(this.txtCustomerId);
     this.GroupBox1.Controls.Add(this.Label3);
     this.GroupBox1.Controls.Add(this.mskInvoiceDate);
     this.GroupBox1.Controls.Add(this.Label2);
     this.GroupBox1.Controls.Add(this.Label1);
     this.GroupBox1.Controls.Add(this.txtInvoiceId);
     this.GroupBox1.Controls.Add(this.grpRef);
     this.GroupBox1.Controls.Add(this.mskDueDate);
     this.GroupBox1.Controls.Add(this.Label6);
     this.GroupBox1.Controls.Add(this.txtDelManName);
     this.GroupBox1.Controls.Add(this.txtDelManId);
     this.GroupBox1.Controls.Add(this.txtEmployeeName);
     this.GroupBox1.Controls.Add(this.txtEmployeeId);
     this.GroupBox1.Controls.Add(this.Label4);
     this.GroupBox1.Controls.Add(this.Label5);
     this.GroupBox1.Location = new System.Drawing.Point(3, 30);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(798, 114);
     this.GroupBox1.TabIndex = 73;
     this.GroupBox1.TabStop = false;
     //
     // btnFindPatientID
     //
     this.btnFindPatientID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindPatientID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindPatientID.Appearance.Options.UseFont = true;
     this.btnFindPatientID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindPatientID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindPatientID.Location = new System.Drawing.Point(438, 42);
     this.btnFindPatientID.Name = "btnFindPatientID";
     this.btnFindPatientID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindPatientID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip12.Items.Add(toolTipTitleItem6);
     this.btnFindPatientID.SuperTip = superToolTip12;
     this.btnFindPatientID.TabIndex = 95;
     this.btnFindPatientID.Click += new System.EventHandler(this.btnFindPatientID_Click);
     //
     // btnFindCustomerID
     //
     this.btnFindCustomerID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindCustomerID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindCustomerID.Appearance.Options.UseFont = true;
     this.btnFindCustomerID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindCustomerID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindCustomerID.Location = new System.Drawing.Point(438, 15);
     this.btnFindCustomerID.Name = "btnFindCustomerID";
     this.btnFindCustomerID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindCustomerID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem7.Text = "Add New Entry";
     superToolTip13.Items.Add(toolTipTitleItem7);
     this.btnFindCustomerID.SuperTip = superToolTip13;
     this.btnFindCustomerID.TabIndex = 94;
     this.btnFindCustomerID.Click += new System.EventHandler(this.btnFindCustomerID_Click);
     //
     // btnFindSalemanID
     //
     this.btnFindSalemanID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindSalemanID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindSalemanID.Appearance.Options.UseFont = true;
     this.btnFindSalemanID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindSalemanID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindSalemanID.Location = new System.Drawing.Point(124, 68);
     this.btnFindSalemanID.Name = "btnFindSalemanID";
     this.btnFindSalemanID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindSalemanID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem8.Text = "Add New Entry";
     superToolTip14.Items.Add(toolTipTitleItem8);
     this.btnFindSalemanID.SuperTip = superToolTip14;
     this.btnFindSalemanID.TabIndex = 93;
     this.btnFindSalemanID.Click += new System.EventHandler(this.btnFindSalemanID_Click);
     //
     // btnFindTerrID
     //
     this.btnFindTerrID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindTerrID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindTerrID.Appearance.Options.UseFont = true;
     this.btnFindTerrID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindTerrID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindTerrID.Location = new System.Drawing.Point(124, 41);
     this.btnFindTerrID.Name = "btnFindTerrID";
     this.btnFindTerrID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindTerrID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem9.Text = "Add New Entry";
     superToolTip15.Items.Add(toolTipTitleItem9);
     this.btnFindTerrID.SuperTip = superToolTip15;
     this.btnFindTerrID.TabIndex = 92;
     this.btnFindTerrID.Click += new System.EventHandler(this.btnFindTerrID_Click);
     //
     // btnFindInvoiceID
     //
     this.btnFindInvoiceID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnFindInvoiceID.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnFindInvoiceID.Appearance.Options.UseFont = true;
     this.btnFindInvoiceID.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnFindInvoiceID.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnFindInvoiceID.Location = new System.Drawing.Point(145, 14);
     this.btnFindInvoiceID.Name = "btnFindInvoiceID";
     this.btnFindInvoiceID.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnFindInvoiceID.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem10.Text = "Add New Entry";
     superToolTip16.Items.Add(toolTipTitleItem10);
     this.btnFindInvoiceID.SuperTip = superToolTip16;
     this.btnFindInvoiceID.TabIndex = 91;
     this.btnFindInvoiceID.Click += new System.EventHandler(this.btnFindInvoiceID_Click);
     //
     // txtSaleManName
     //
     this.txtSaleManName.BackColor = System.Drawing.SystemColors.Control;
     this.txtSaleManName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtSaleManName.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSaleManName.ForeColor = System.Drawing.Color.Blue;
     this.txtSaleManName.Location = new System.Drawing.Point(149, 68);
     this.txtSaleManName.MaxLength = 30;
     this.txtSaleManName.Name = "txtSaleManName";
     this.txtSaleManName.Size = new System.Drawing.Size(165, 21);
     this.txtSaleManName.TabIndex = 77;
     this.txtSaleManName.TabStop = false;
     //
     // txtSaleManId
     //
     this.txtSaleManId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSaleManId.Location = new System.Drawing.Point(70, 68);
     this.txtSaleManId.MaxLength = 6;
     this.txtSaleManId.Name = "txtSaleManId";
     this.txtSaleManId.Size = new System.Drawing.Size(52, 21);
     this.txtSaleManId.TabIndex = 75;
     this.txtSaleManId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSaleManId_KeyDown);
     this.txtSaleManId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSaleManId_KeyPress);
     //
     // Label16
     //
     this.Label16.AutoSize = true;
     this.Label16.ForeColor = System.Drawing.Color.Red;
     this.Label16.Location = new System.Drawing.Point(3, 71);
     this.Label16.Name = "Label16";
     this.Label16.Size = new System.Drawing.Size(61, 13);
     this.Label16.TabIndex = 74;
     this.Label16.Text = "SaleMan ID";
     //
     // Label15
     //
     this.Label15.BackColor = System.Drawing.Color.Gray;
     this.Label15.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label15.ForeColor = System.Drawing.SystemColors.Window;
     this.Label15.Location = new System.Drawing.Point(502, -19);
     this.Label15.Name = "Label15";
     this.Label15.Size = new System.Drawing.Size(149, 13);
     this.Label15.TabIndex = 73;
     this.Label15.Text = "DSS Id: 000241";
     this.Label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtBrickName
     //
     this.txtBrickName.BackColor = System.Drawing.SystemColors.Control;
     this.txtBrickName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtBrickName.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBrickName.ForeColor = System.Drawing.Color.Blue;
     this.txtBrickName.Location = new System.Drawing.Point(678, 14);
     this.txtBrickName.MaxLength = 50;
     this.txtBrickName.Name = "txtBrickName";
     this.txtBrickName.Size = new System.Drawing.Size(107, 21);
     this.txtBrickName.TabIndex = 10;
     this.txtBrickName.TabStop = false;
     //
     // txtCustomerName
     //
     this.txtCustomerName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCustomerName.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCustomerName.Location = new System.Drawing.Point(463, 14);
     this.txtCustomerName.MaxLength = 50;
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.ReadOnly = true;
     this.txtCustomerName.Size = new System.Drawing.Size(214, 21);
     this.txtCustomerName.TabIndex = 9;
     //
     // txtCustomerId
     //
     this.txtCustomerId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCustomerId.Location = new System.Drawing.Point(386, 14);
     this.txtCustomerId.MaxLength = 5;
     this.txtCustomerId.Name = "txtCustomerId";
     this.txtCustomerId.Size = new System.Drawing.Size(50, 21);
     this.txtCustomerId.TabIndex = 7;
     this.txtCustomerId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCustomerId_KeyDown);
     this.txtCustomerId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtCustomerId_KeyPress);
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.ForeColor = System.Drawing.Color.Red;
     this.Label3.Location = new System.Drawing.Point(321, 17);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(67, 13);
     this.Label3.TabIndex = 6;
     this.Label3.Text = "Customer ID";
     //
     // mskInvoiceDate
     //
     this.mskInvoiceDate.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mskInvoiceDate.Location = new System.Drawing.Point(242, 14);
     this.mskInvoiceDate.Mask = "##/##/####";
     this.mskInvoiceDate.Name = "mskInvoiceDate";
     this.mskInvoiceDate.Size = new System.Drawing.Size(78, 21);
     this.mskInvoiceDate.TabIndex = 5;
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.ForeColor = System.Drawing.Color.Red;
     this.Label2.Location = new System.Drawing.Point(169, 17);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(68, 13);
     this.Label2.TabIndex = 4;
     this.Label2.Text = "Invoice Date";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.ForeColor = System.Drawing.Color.Red;
     this.Label1.Location = new System.Drawing.Point(4, 17);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(56, 13);
     this.Label1.TabIndex = 1;
     this.Label1.Text = "Invoice ID";
     //
     // txtInvoiceId
     //
     this.txtInvoiceId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtInvoiceId.Location = new System.Drawing.Point(70, 14);
     this.txtInvoiceId.MaxLength = 9;
     this.txtInvoiceId.Name = "txtInvoiceId";
     this.txtInvoiceId.Size = new System.Drawing.Size(72, 21);
     this.txtInvoiceId.TabIndex = 2;
     //
     // grpRef
     //
     this.grpRef.Controls.Add(this.mskRefDate);
     this.grpRef.Controls.Add(this.Label14);
     this.grpRef.Controls.Add(this.txtRefNo);
     this.grpRef.Controls.Add(this.Label13);
     this.grpRef.Location = new System.Drawing.Point(317, 62);
     this.grpRef.Name = "grpRef";
     this.grpRef.Size = new System.Drawing.Size(468, 35);
     this.grpRef.TabIndex = 21;
     this.grpRef.TabStop = false;
     this.grpRef.Visible = false;
     //
     // mskRefDate
     //
     this.mskRefDate.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mskRefDate.Location = new System.Drawing.Point(390, 13);
     this.mskRefDate.Mask = "##/##/####";
     this.mskRefDate.Name = "mskRefDate";
     this.mskRefDate.Size = new System.Drawing.Size(78, 21);
     this.mskRefDate.TabIndex = 12;
     //
     // Label14
     //
     this.Label14.AutoSize = true;
     this.Label14.ForeColor = System.Drawing.Color.Red;
     this.Label14.Location = new System.Drawing.Point(323, 16);
     this.Label14.Name = "Label14";
     this.Label14.Size = new System.Drawing.Size(54, 13);
     this.Label14.TabIndex = 11;
     this.Label14.Text = "Ref. Date";
     //
     // txtRefNo
     //
     this.txtRefNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRefNo.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRefNo.Location = new System.Drawing.Point(66, 13);
     this.txtRefNo.MaxLength = 50;
     this.txtRefNo.Name = "txtRefNo";
     this.txtRefNo.Size = new System.Drawing.Size(214, 21);
     this.txtRefNo.TabIndex = 10;
     //
     // Label13
     //
     this.Label13.AutoSize = true;
     this.Label13.ForeColor = System.Drawing.Color.Red;
     this.Label13.Location = new System.Drawing.Point(11, 17);
     this.Label13.Name = "Label13";
     this.Label13.Size = new System.Drawing.Size(48, 13);
     this.Label13.TabIndex = 2;
     this.Label13.Text = "Ref. No.";
     //
     // mskDueDate
     //
     this.mskDueDate.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mskDueDate.Location = new System.Drawing.Point(707, 40);
     this.mskDueDate.Mask = "##/##/####";
     this.mskDueDate.Name = "mskDueDate";
     this.mskDueDate.Size = new System.Drawing.Size(78, 21);
     this.mskDueDate.TabIndex = 20;
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.ForeColor = System.Drawing.Color.Red;
     this.Label6.Location = new System.Drawing.Point(642, 43);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(52, 13);
     this.Label6.TabIndex = 19;
     this.Label6.Text = "Due Date";
     //
     // txtDelManName
     //
     this.txtDelManName.BackColor = System.Drawing.SystemColors.Control;
     this.txtDelManName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtDelManName.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDelManName.ForeColor = System.Drawing.Color.Blue;
     this.txtDelManName.Location = new System.Drawing.Point(465, 41);
     this.txtDelManName.MaxLength = 30;
     this.txtDelManName.Name = "txtDelManName";
     this.txtDelManName.Size = new System.Drawing.Size(176, 21);
     this.txtDelManName.TabIndex = 18;
     this.txtDelManName.TabStop = false;
     //
     // txtDelManId
     //
     this.txtDelManId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDelManId.Location = new System.Drawing.Point(384, 41);
     this.txtDelManId.MaxLength = 6;
     this.txtDelManId.Name = "txtDelManId";
     this.txtDelManId.Size = new System.Drawing.Size(52, 21);
     this.txtDelManId.TabIndex = 16;
     this.txtDelManId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDelManId_KeyDown);
     this.txtDelManId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtDelManId_KeyPress);
     //
     // txtEmployeeName
     //
     this.txtEmployeeName.BackColor = System.Drawing.SystemColors.Control;
     this.txtEmployeeName.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtEmployeeName.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmployeeName.ForeColor = System.Drawing.Color.Blue;
     this.txtEmployeeName.Location = new System.Drawing.Point(149, 41);
     this.txtEmployeeName.MaxLength = 30;
     this.txtEmployeeName.Name = "txtEmployeeName";
     this.txtEmployeeName.Size = new System.Drawing.Size(165, 21);
     this.txtEmployeeName.TabIndex = 14;
     this.txtEmployeeName.TabStop = false;
     //
     // txtEmployeeId
     //
     this.txtEmployeeId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmployeeId.Location = new System.Drawing.Point(70, 41);
     this.txtEmployeeId.MaxLength = 4;
     this.txtEmployeeId.Name = "txtEmployeeId";
     this.txtEmployeeId.Size = new System.Drawing.Size(52, 21);
     this.txtEmployeeId.TabIndex = 12;
     this.txtEmployeeId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEmployeeId_KeyDown);
     this.txtEmployeeId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtEmployeeId_KeyPress);
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.ForeColor = System.Drawing.Color.Red;
     this.Label4.Location = new System.Drawing.Point(4, 44);
     this.Label4.Name = "Label4";
     this.Label4.Size = new System.Drawing.Size(41, 13);
     this.Label4.TabIndex = 11;
     this.Label4.Text = "Terr ID";
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.ForeColor = System.Drawing.Color.Red;
     this.Label5.Location = new System.Drawing.Point(321, 44);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(55, 13);
     this.Label5.TabIndex = 15;
     this.Label5.Text = "Patient ID";
     //
     // tcSaleInvoice
     //
     this.tcSaleInvoice.Controls.Add(this.tpInvoice);
     this.tcSaleInvoice.Location = new System.Drawing.Point(12, 150);
     this.tcSaleInvoice.Name = "tcSaleInvoice";
     this.tcSaleInvoice.SelectedIndex = 0;
     this.tcSaleInvoice.Size = new System.Drawing.Size(789, 389);
     this.tcSaleInvoice.TabIndex = 74;
     //
     // tpInvoice
     //
     this.tpInvoice.Controls.Add(this.c1_grdInvoice);
     this.tpInvoice.Controls.Add(this.GroupBox2);
     this.tpInvoice.Location = new System.Drawing.Point(4, 22);
     this.tpInvoice.Name = "tpInvoice";
     this.tpInvoice.Padding = new System.Windows.Forms.Padding(3);
     this.tpInvoice.Size = new System.Drawing.Size(781, 363);
     this.tpInvoice.TabIndex = 0;
     this.tpInvoice.Text = "Invoice";
     this.tpInvoice.UseVisualStyleBackColor = true;
     //
     // c1_grdInvoice
     //
     this.c1_grdInvoice.AllowAddNew = true;
     this.c1_grdInvoice.AllowColMove = false;
     this.c1_grdInvoice.AllowColSelect = false;
     this.c1_grdInvoice.AllowDelete = true;
     this.c1_grdInvoice.AllowFilter = false;
     this.c1_grdInvoice.BackColor = System.Drawing.SystemColors.Control;
     this.c1_grdInvoice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.c1_grdInvoice.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.c1_grdInvoice.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.c1_grdInvoice.Images.Add(((System.Drawing.Image)(resources.GetObject("c1_grdInvoice.Images"))));
     this.c1_grdInvoice.Location = new System.Drawing.Point(0, 0);
     this.c1_grdInvoice.MarqueeStyle = C1.Win.C1TrueDBGrid.MarqueeEnum.HighlightCell;
     this.c1_grdInvoice.Name = "c1_grdInvoice";
     this.c1_grdInvoice.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.c1_grdInvoice.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.c1_grdInvoice.PreviewInfo.ZoomFactor = 75D;
     this.c1_grdInvoice.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1_grdInvoice.PrintInfo.PageSettings")));
     this.c1_grdInvoice.Size = new System.Drawing.Size(778, 256);
     this.c1_grdInvoice.TabIndex = 22;
     this.c1_grdInvoice.Text = "C1TrueDBGrid1";
     this.c1_grdInvoice.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.c1_grdInvoice.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.c1_grdInvoice_AfterColUpdate);
     this.c1_grdInvoice.BeforeColEdit += new C1.Win.C1TrueDBGrid.BeforeColEditEventHandler(this.c1_grdInvoice_BeforeColEdit);
     this.c1_grdInvoice.KeyDown += new System.Windows.Forms.KeyEventHandler(this.c1_grdInvoice_KeyDown);
     this.c1_grdInvoice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.c1_grdInvoice_KeyPress);
     this.c1_grdInvoice.PropBag = resources.GetString("c1_grdInvoice.PropBag");
     //
     // GroupBox2
     //
     this.GroupBox2.Controls.Add(this.label17);
     this.GroupBox2.Controls.Add(this.txtRemarks);
     this.GroupBox2.Controls.Add(this.Label8);
     this.GroupBox2.Controls.Add(this.txtBonus);
     this.GroupBox2.Controls.Add(this.Label7);
     this.GroupBox2.Controls.Add(this.txtStock);
     this.GroupBox2.Controls.Add(this.txtNetAmount);
     this.GroupBox2.Controls.Add(this.txtSaleTax);
     this.GroupBox2.Controls.Add(this.Label10);
     this.GroupBox2.Controls.Add(this.txtDiscount);
     this.GroupBox2.Controls.Add(this.Label9);
     this.GroupBox2.Controls.Add(this.txtGrossAmt);
     this.GroupBox2.Controls.Add(this.Label12);
     this.GroupBox2.Controls.Add(this.Label11);
     this.GroupBox2.Location = new System.Drawing.Point(0, 254);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(778, 105);
     this.GroupBox2.TabIndex = 23;
     this.GroupBox2.TabStop = false;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label17.Location = new System.Drawing.Point(14, 17);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(48, 13);
     this.label17.TabIndex = 38;
     this.label17.Text = "Remarks";
     //
     // txtRemarks
     //
     this.txtRemarks.BackColor = System.Drawing.SystemColors.Control;
     this.txtRemarks.Location = new System.Drawing.Point(9, 36);
     this.txtRemarks.MaxLength = 100;
     this.txtRemarks.Multiline = true;
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(305, 63);
     this.txtRemarks.TabIndex = 37;
     //
     // Label8
     //
     this.Label8.AutoSize = true;
     this.Label8.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label8.Location = new System.Drawing.Point(318, 67);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(36, 13);
     this.Label8.TabIndex = 36;
     this.Label8.Text = "Bonus";
     //
     // txtBonus
     //
     this.txtBonus.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtBonus.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtBonus.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBonus.ForeColor = System.Drawing.Color.Blue;
     this.txtBonus.Location = new System.Drawing.Point(362, 64);
     this.txtBonus.MaxLength = 50;
     this.txtBonus.Name = "txtBonus";
     this.txtBonus.Size = new System.Drawing.Size(72, 20);
     this.txtBonus.TabIndex = 35;
     this.txtBonus.TabStop = false;
     this.txtBonus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label7.Location = new System.Drawing.Point(320, 42);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(33, 13);
     this.Label7.TabIndex = 34;
     this.Label7.Text = "Stock";
     //
     // txtStock
     //
     this.txtStock.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtStock.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtStock.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtStock.ForeColor = System.Drawing.Color.Blue;
     this.txtStock.Location = new System.Drawing.Point(363, 39);
     this.txtStock.MaxLength = 50;
     this.txtStock.Name = "txtStock";
     this.txtStock.Size = new System.Drawing.Size(71, 20);
     this.txtStock.TabIndex = 33;
     this.txtStock.TabStop = false;
     this.txtStock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtNetAmount
     //
     this.txtNetAmount.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNetAmount.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNetAmount.ForeColor = System.Drawing.Color.Blue;
     this.txtNetAmount.Location = new System.Drawing.Point(688, 83);
     this.txtNetAmount.MaxLength = 50;
     this.txtNetAmount.Name = "txtNetAmount";
     this.txtNetAmount.ReadOnly = true;
     this.txtNetAmount.Size = new System.Drawing.Size(84, 20);
     this.txtNetAmount.TabIndex = 31;
     this.txtNetAmount.TabStop = false;
     this.txtNetAmount.Text = "99999999.99";
     this.txtNetAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtSaleTax
     //
     this.txtSaleTax.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtSaleTax.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSaleTax.ForeColor = System.Drawing.Color.Blue;
     this.txtSaleTax.Location = new System.Drawing.Point(687, 59);
     this.txtSaleTax.MaxLength = 50;
     this.txtSaleTax.Name = "txtSaleTax";
     this.txtSaleTax.ReadOnly = true;
     this.txtSaleTax.Size = new System.Drawing.Size(85, 20);
     this.txtSaleTax.TabIndex = 29;
     this.txtSaleTax.TabStop = false;
     this.txtSaleTax.Text = "0.00";
     this.txtSaleTax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label10.Location = new System.Drawing.Point(627, 39);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(48, 13);
     this.Label10.TabIndex = 28;
     this.Label10.Text = "Discount";
     //
     // txtDiscount
     //
     this.txtDiscount.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtDiscount.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDiscount.ForeColor = System.Drawing.Color.Blue;
     this.txtDiscount.Location = new System.Drawing.Point(688, 36);
     this.txtDiscount.MaxLength = 50;
     this.txtDiscount.Name = "txtDiscount";
     this.txtDiscount.ReadOnly = true;
     this.txtDiscount.Size = new System.Drawing.Size(84, 20);
     this.txtDiscount.TabIndex = 27;
     this.txtDiscount.TabStop = false;
     this.txtDiscount.Text = "0.00";
     this.txtDiscount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label9
     //
     this.Label9.AutoSize = true;
     this.Label9.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label9.Location = new System.Drawing.Point(627, 15);
     this.Label9.Name = "Label9";
     this.Label9.Size = new System.Drawing.Size(34, 13);
     this.Label9.TabIndex = 26;
     this.Label9.Text = "Gross";
     //
     // txtGrossAmt
     //
     this.txtGrossAmt.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtGrossAmt.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtGrossAmt.ForeColor = System.Drawing.Color.Blue;
     this.txtGrossAmt.Location = new System.Drawing.Point(688, 12);
     this.txtGrossAmt.MaxLength = 50;
     this.txtGrossAmt.Name = "txtGrossAmt";
     this.txtGrossAmt.ReadOnly = true;
     this.txtGrossAmt.Size = new System.Drawing.Size(84, 20);
     this.txtGrossAmt.TabIndex = 25;
     this.txtGrossAmt.TabStop = false;
     this.txtGrossAmt.Text = "0.00";
     this.txtGrossAmt.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label12
     //
     this.Label12.AutoSize = true;
     this.Label12.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label12.Location = new System.Drawing.Point(627, 86);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(24, 13);
     this.Label12.TabIndex = 32;
     this.Label12.Text = "Net";
     //
     // Label11
     //
     this.Label11.AutoSize = true;
     this.Label11.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label11.Location = new System.Drawing.Point(627, 62);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(48, 13);
     this.Label11.TabIndex = 30;
     this.Label11.Text = "Sale Tax";
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(138, 542);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem7.Text = "Remove Module";
     superToolTip17.Items.Add(toolTipItem7);
     this.btnDelete.SuperTip = superToolTip17;
     this.btnDelete.TabIndex = 80;
     this.btnDelete.Text = "&Del";
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(740, 542);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem8.Text = "Close Modules List";
     superToolTip18.Items.Add(toolTipItem8);
     this.btnExit.SuperTip = superToolTip18;
     this.btnExit.TabIndex = 77;
     this.btnExit.Text = " Exit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(612, 542);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem9.Text = "Save Module";
     superToolTip19.Items.Add(toolTipItem9);
     this.btnSave.SuperTip = superToolTip19;
     this.btnSave.TabIndex = 79;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(75, 542);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem10.Text = "Edit Module Details";
     superToolTip20.Items.Add(toolTipItem10);
     this.btnEdit.SuperTip = superToolTip20;
     this.btnEdit.TabIndex = 76;
     this.btnEdit.Text = " &Edit ";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(13, 542);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(58, 32);
     toolTipItem11.Text = "Add New Module";
     superToolTip21.Items.Add(toolTipItem11);
     this.btnAdd.SuperTip = superToolTip21;
     this.btnAdd.TabIndex = 75;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(674, 542);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem12.Text = "Cancel Current Operation";
     superToolTip22.Items.Add(toolTipItem12);
     this.btnCancel.SuperTip = superToolTip22;
     this.btnCancel.TabIndex = 78;
     this.btnCancel.Text = "&Cancel";
     //
     // lbllic
     //
     this.lbllic.BackColor = System.Drawing.Color.Gray;
     this.lbllic.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbllic.ForeColor = System.Drawing.SystemColors.Window;
     this.lbllic.Location = new System.Drawing.Point(253, 5);
     this.lbllic.Name = "lbllic";
     this.lbllic.Size = new System.Drawing.Size(149, 13);
     this.lbllic.TabIndex = 82;
     this.lbllic.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblCubalance
     //
     this.lblCubalance.BackColor = System.Drawing.Color.Gray;
     this.lblCubalance.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCubalance.ForeColor = System.Drawing.SystemColors.Window;
     this.lblCubalance.Location = new System.Drawing.Point(408, 9);
     this.lblCubalance.Name = "lblCubalance";
     this.lblCubalance.Size = new System.Drawing.Size(149, 13);
     this.lblCubalance.TabIndex = 81;
     this.lblCubalance.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtBrickID
     //
     this.txtBrickID.BackColor = System.Drawing.SystemColors.Control;
     this.txtBrickID.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtBrickID.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBrickID.ForeColor = System.Drawing.Color.Blue;
     this.txtBrickID.Location = new System.Drawing.Point(573, 1);
     this.txtBrickID.MaxLength = 50;
     this.txtBrickID.Name = "txtBrickID";
     this.txtBrickID.Size = new System.Drawing.Size(107, 21);
     this.txtBrickID.TabIndex = 83;
     this.txtBrickID.TabStop = false;
     this.txtBrickID.Visible = false;
     //
     // frmSaleInvoice
     //
     this.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(811, 577);
     this.Controls.Add(this.txtBrickID);
     this.Controls.Add(this.lbllic);
     this.Controls.Add(this.lblCubalance);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.tcSaleInvoice);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.lblDssId);
     this.Controls.Add(this.lblGroup);
     this.Controls.Add(this.lblTitle);
     this.MaximizeBox = false;
     this.Name = "frmSaleInvoice";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmSaleInvoice";
     this.Load += new System.EventHandler(this.frmSaleInvoice_Load);
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.grpRef.ResumeLayout(false);
     this.grpRef.PerformLayout();
     this.tcSaleInvoice.ResumeLayout(false);
     this.tpInvoice.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.c1_grdInvoice)).EndInit();
     this.GroupBox2.ResumeLayout(false);
     this.GroupBox2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEmployeeTargets));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbCompanyWise = new DevExpress.XtraTab.XtraTabPage();
     this.grdCompanyWiseTargets = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbProductWise = new DevExpress.XtraTab.XtraTabPage();
     this.grdProductWiseTargets = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbInstitutionBusiness = new DevExpress.XtraTab.XtraTabPage();
     this.grdInstitutionBusiness = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbCompanyTargets = new DevExpress.XtraTab.XtraTabPage();
     this.grdCompanyTargets = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtYear = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtMonth = new DevExpress.XtraEditors.TextEdit();
     this.cmbTargetType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtID = new DevExpress.XtraEditors.TextEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtName = new DevExpress.XtraEditors.TextEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tbCompanyWise.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCompanyWiseTargets)).BeginInit();
     this.tbProductWise.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdProductWiseTargets)).BeginInit();
     this.tbInstitutionBusiness.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdInstitutionBusiness)).BeginInit();
     this.tbCompanyTargets.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCompanyTargets)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTargetType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.xtraTabControl1);
     this.groupControl3.Location = new System.Drawing.Point(1, 116);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(704, 258);
     this.groupControl3.TabIndex = 16;
     this.groupControl3.Text = "Details";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.xtraTabControl1.Location = new System.Drawing.Point(2, 21);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tbCompanyWise;
     this.xtraTabControl1.Size = new System.Drawing.Size(700, 235);
     this.xtraTabControl1.TabIndex = 5;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbCompanyWise,
     this.tbProductWise,
     this.tbInstitutionBusiness,
     this.tbCompanyTargets});
     //
     // tbCompanyWise
     //
     this.tbCompanyWise.Controls.Add(this.grdCompanyWiseTargets);
     this.tbCompanyWise.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tbCompanyWise.Name = "tbCompanyWise";
     this.tbCompanyWise.Size = new System.Drawing.Size(694, 203);
     this.tbCompanyWise.Text = "Company Wise Targets";
     //
     // grdCompanyWiseTargets
     //
     this.grdCompanyWiseTargets.AllowAddNew = true;
     this.grdCompanyWiseTargets.CaptionHeight = 17;
     this.grdCompanyWiseTargets.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCompanyWiseTargets.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCompanyWiseTargets.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCompanyWiseTargets.Images"))));
     this.grdCompanyWiseTargets.LinesPerRow = 1;
     this.grdCompanyWiseTargets.Location = new System.Drawing.Point(0, 0);
     this.grdCompanyWiseTargets.Name = "grdCompanyWiseTargets";
     this.grdCompanyWiseTargets.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCompanyWiseTargets.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCompanyWiseTargets.PreviewInfo.ZoomFactor = 75D;
     this.grdCompanyWiseTargets.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCompanyWiseTargets.PrintInfo.PageSettings")));
     this.grdCompanyWiseTargets.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdCompanyWiseTargets.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdCompanyWiseTargets.RowHeight = 23;
     this.grdCompanyWiseTargets.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdCompanyWiseTargets.Size = new System.Drawing.Size(694, 203);
     this.grdCompanyWiseTargets.TabIndex = 6;
     this.grdCompanyWiseTargets.Text = "c1TrueDBGrid1";
     this.grdCompanyWiseTargets.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCompanyWiseTargets.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdCompanyWiseTargets_AfterColUpdate);
     this.grdCompanyWiseTargets.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdCompanyWiseTargets_KeyPress);
     this.grdCompanyWiseTargets.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdCompanyWiseTargets_PreviewKeyDown);
     this.grdCompanyWiseTargets.PropBag = resources.GetString("grdCompanyWiseTargets.PropBag");
     //
     // tbProductWise
     //
     this.tbProductWise.Controls.Add(this.grdProductWiseTargets);
     this.tbProductWise.Name = "tbProductWise";
     this.tbProductWise.Size = new System.Drawing.Size(694, 203);
     this.tbProductWise.Text = "Product Wise Targets";
     this.tbProductWise.Tooltip = "Product Policies Details";
     //
     // grdProductWiseTargets
     //
     this.grdProductWiseTargets.AllowAddNew = true;
     this.grdProductWiseTargets.CaptionHeight = 17;
     this.grdProductWiseTargets.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdProductWiseTargets.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdProductWiseTargets.Images.Add(((System.Drawing.Image)(resources.GetObject("grdProductWiseTargets.Images"))));
     this.grdProductWiseTargets.LinesPerRow = 1;
     this.grdProductWiseTargets.Location = new System.Drawing.Point(0, 0);
     this.grdProductWiseTargets.Name = "grdProductWiseTargets";
     this.grdProductWiseTargets.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdProductWiseTargets.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdProductWiseTargets.PreviewInfo.ZoomFactor = 75D;
     this.grdProductWiseTargets.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdProductWiseTargets.PrintInfo.PageSettings")));
     this.grdProductWiseTargets.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductWiseTargets.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdProductWiseTargets.RowHeight = 23;
     this.grdProductWiseTargets.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductWiseTargets.Size = new System.Drawing.Size(694, 203);
     this.grdProductWiseTargets.TabIndex = 2;
     this.grdProductWiseTargets.Text = "c1TrueDBGrid1";
     this.grdProductWiseTargets.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdProductWiseTargets.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdProductWiseTargets_AfterColUpdate);
     this.grdProductWiseTargets.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdProductWiseTargets_KeyPress);
     this.grdProductWiseTargets.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdProductWiseTargets_PreviewKeyDown);
     this.grdProductWiseTargets.PropBag = resources.GetString("grdProductWiseTargets.PropBag");
     //
     // tbInstitutionBusiness
     //
     this.tbInstitutionBusiness.Controls.Add(this.grdInstitutionBusiness);
     this.tbInstitutionBusiness.Name = "tbInstitutionBusiness";
     this.tbInstitutionBusiness.Size = new System.Drawing.Size(694, 203);
     this.tbInstitutionBusiness.Text = "Institution Business";
     //
     // grdInstitutionBusiness
     //
     this.grdInstitutionBusiness.AllowAddNew = true;
     this.grdInstitutionBusiness.CaptionHeight = 17;
     this.grdInstitutionBusiness.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdInstitutionBusiness.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdInstitutionBusiness.Images.Add(((System.Drawing.Image)(resources.GetObject("grdInstitutionBusiness.Images"))));
     this.grdInstitutionBusiness.LinesPerRow = 1;
     this.grdInstitutionBusiness.Location = new System.Drawing.Point(0, 0);
     this.grdInstitutionBusiness.Name = "grdInstitutionBusiness";
     this.grdInstitutionBusiness.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdInstitutionBusiness.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdInstitutionBusiness.PreviewInfo.ZoomFactor = 75D;
     this.grdInstitutionBusiness.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdInstitutionBusiness.PrintInfo.PageSettings")));
     this.grdInstitutionBusiness.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdInstitutionBusiness.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdInstitutionBusiness.RowHeight = 23;
     this.grdInstitutionBusiness.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdInstitutionBusiness.Size = new System.Drawing.Size(694, 203);
     this.grdInstitutionBusiness.TabIndex = 2;
     this.grdInstitutionBusiness.Text = "c1TrueDBGrid1";
     this.grdInstitutionBusiness.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdInstitutionBusiness.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdInstitutionBusiness_AfterColUpdate);
     this.grdInstitutionBusiness.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdInstitutionBusiness_KeyPress);
     this.grdInstitutionBusiness.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdInstitutionBusiness_PreviewKeyDown);
     this.grdInstitutionBusiness.PropBag = resources.GetString("grdInstitutionBusiness.PropBag");
     //
     // tbCompanyTargets
     //
     this.tbCompanyTargets.Controls.Add(this.grdCompanyTargets);
     this.tbCompanyTargets.Name = "tbCompanyTargets";
     this.tbCompanyTargets.Size = new System.Drawing.Size(694, 203);
     this.tbCompanyTargets.Text = "Company Targets";
     //
     // grdCompanyTargets
     //
     this.grdCompanyTargets.AllowAddNew = true;
     this.grdCompanyTargets.CaptionHeight = 17;
     this.grdCompanyTargets.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCompanyTargets.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCompanyTargets.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCompanyTargets.Images"))));
     this.grdCompanyTargets.LinesPerRow = 1;
     this.grdCompanyTargets.Location = new System.Drawing.Point(0, 0);
     this.grdCompanyTargets.Name = "grdCompanyTargets";
     this.grdCompanyTargets.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCompanyTargets.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCompanyTargets.PreviewInfo.ZoomFactor = 75D;
     this.grdCompanyTargets.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCompanyTargets.PrintInfo.PageSettings")));
     this.grdCompanyTargets.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdCompanyTargets.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdCompanyTargets.RowHeight = 23;
     this.grdCompanyTargets.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdCompanyTargets.Size = new System.Drawing.Size(694, 203);
     this.grdCompanyTargets.TabIndex = 2;
     this.grdCompanyTargets.Text = "c1TrueDBGrid1";
     this.grdCompanyTargets.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCompanyTargets.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdCompanyTargets_AfterColUpdate);
     this.grdCompanyTargets.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdCompanyTargets_KeyPress);
     this.grdCompanyTargets.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdCompanyTargets_PreviewKeyDown);
     this.grdCompanyTargets.PropBag = resources.GetString("grdCompanyTargets.PropBag");
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtYear);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtMonth);
     this.groupControl1.Controls.Add(this.cmbTargetType);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.txtID);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.txtName);
     this.groupControl1.Location = new System.Drawing.Point(1, 1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(704, 109);
     this.groupControl1.TabIndex = 15;
     this.groupControl1.Text = "Employee Information";
     //
     // txtYear
     //
     this.txtYear.EnterMoveNextControl = true;
     this.txtYear.Location = new System.Drawing.Point(231, 81);
     this.txtYear.Name = "txtYear";
     this.txtYear.Properties.MaxLength = 4;
     this.txtYear.Size = new System.Drawing.Size(94, 20);
     this.txtYear.TabIndex = 4;
     this.txtYear.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtYear_KeyPress);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(185, 84);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(35, 13);
     this.labelControl4.TabIndex = 19;
     this.labelControl4.Text = "T. Year";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(20, 84);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(43, 13);
     this.labelControl3.TabIndex = 18;
     this.labelControl3.Text = "T. Month";
     //
     // txtMonth
     //
     this.txtMonth.EnterMoveNextControl = true;
     this.txtMonth.Location = new System.Drawing.Point(81, 81);
     this.txtMonth.Name = "txtMonth";
     this.txtMonth.Properties.MaxLength = 2;
     this.txtMonth.Size = new System.Drawing.Size(94, 20);
     this.txtMonth.TabIndex = 3;
     this.txtMonth.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMonth_KeyPress);
     this.txtMonth.Leave += new System.EventHandler(this.txtMonth_Leave);
     //
     // cmbTargetType
     //
     this.cmbTargetType.Location = new System.Drawing.Point(81, 29);
     this.cmbTargetType.Name = "cmbTargetType";
     this.cmbTargetType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbTargetType.Properties.Items.AddRange(new object[] {
     "Company",
     "Institution",
     "Territory"});
     this.cmbTargetType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbTargetType.Size = new System.Drawing.Size(94, 20);
     this.cmbTargetType.TabIndex = 0;
     this.cmbTargetType.SelectedIndexChanged += new System.EventHandler(this.cmbTargetType_SelectedIndexChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(20, 32);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(32, 13);
     this.labelControl2.TabIndex = 15;
     this.labelControl2.Text = "Target";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(20, 60);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(11, 13);
     this.labelControl7.TabIndex = 14;
     this.labelControl7.Text = "ID";
     //
     // txtID
     //
     this.txtID.Location = new System.Drawing.Point(81, 55);
     this.txtID.Name = "txtID";
     this.txtID.Properties.MaxLength = 6;
     this.txtID.Size = new System.Drawing.Size(65, 20);
     this.txtID.TabIndex = 1;
     this.txtID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtID_KeyPress);
     this.txtID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtID_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(153, 55);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(22, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btnPickList.SuperTip = superToolTip1;
     this.btnPickList.TabIndex = 2;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(185, 58);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(27, 13);
     this.labelControl1.TabIndex = 11;
     this.labelControl1.Text = "Name";
     //
     // txtName
     //
     this.txtName.Enabled = false;
     this.txtName.EnterMoveNextControl = true;
     this.txtName.Location = new System.Drawing.Point(231, 55);
     this.txtName.Name = "txtName";
     this.txtName.Properties.MaxLength = 30;
     this.txtName.Size = new System.Drawing.Size(169, 20);
     this.txtName.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnSave);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Controls.Add(this.btnEdit);
     this.groupControl2.Controls.Add(this.btnDelete);
     this.groupControl2.Location = new System.Drawing.Point(1, 380);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(704, 49);
     this.groupControl2.TabIndex = 14;
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(635, 8);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem1.Text = "Close Modules List";
     superToolTip2.Items.Add(toolTipItem1);
     this.btnExit.SuperTip = superToolTip2;
     this.btnExit.TabIndex = 6;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(507, 8);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem2.Text = "Save Module";
     superToolTip3.Items.Add(toolTipItem2);
     this.btnSave.SuperTip = superToolTip3;
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(11, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(58, 32);
     toolTipItem3.Text = "Add New Module";
     superToolTip4.Items.Add(toolTipItem3);
     this.btnAdd.SuperTip = superToolTip4;
     this.btnAdd.TabIndex = 7;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(571, 8);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Cancel Current Operation";
     superToolTip5.Items.Add(toolTipItem4);
     this.btnCancel.SuperTip = superToolTip5;
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(75, 8);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem5.Text = "Edit Module Details";
     superToolTip6.Items.Add(toolTipItem5);
     this.btnEdit.SuperTip = superToolTip6;
     this.btnEdit.TabIndex = 2;
     this.btnEdit.Text = " &Edit ";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(443, 8);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem6.Text = "Remove Module";
     superToolTip7.Items.Add(toolTipItem6);
     this.btnDelete.SuperTip = superToolTip7;
     this.btnDelete.TabIndex = 4;
     this.btnDelete.Text = "&Del";
     this.btnDelete.Visible = false;
     //
     // frmEmployeeTargets
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(706, 430);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "frmEmployeeTargets";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmEmployeeTargets";
     this.Load += new System.EventHandler(this.frmEmployeeTargets_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tbCompanyWise.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCompanyWiseTargets)).EndInit();
     this.tbProductWise.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdProductWiseTargets)).EndInit();
     this.tbInstitutionBusiness.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdInstitutionBusiness)).EndInit();
     this.tbCompanyTargets.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCompanyTargets)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTargetType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#25
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(Form1));
     this.dataSet11           = new Zoom.DataSet1();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.mainMenu1           = new System.Windows.Forms.MainMenu(this.components);
     this.menuItem1           = new System.Windows.Forms.MenuItem();
     this.menuItem2           = new System.Windows.Forms.MenuItem();
     this.menuItem3           = new System.Windows.Forms.MenuItem();
     this.menuItem4           = new System.Windows.Forms.MenuItem();
     this.menuItem5           = new System.Windows.Forms.MenuItem();
     this.menuItem6           = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Orders", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("OrderID", "OrderID"),
             new System.Data.Common.DataColumnMapping("CustomerID", "CustomerID"),
             new System.Data.Common.DataColumnMapping("EmployeeID", "EmployeeID"),
             new System.Data.Common.DataColumnMapping("OrderDate", "OrderDate"),
             new System.Data.Common.DataColumnMapping("RequiredDate", "RequiredDate"),
             new System.Data.Common.DataColumnMapping("ShippedDate", "ShippedDate"),
             new System.Data.Common.DataColumnMapping("ShipVia", "ShipVia"),
             new System.Data.Common.DataColumnMapping("Freight", "Freight"),
             new System.Data.Common.DataColumnMapping("ShipName", "ShipName"),
             new System.Data.Common.DataColumnMapping("ShipAddress", "ShipAddress"),
             new System.Data.Common.DataColumnMapping("ShipCity", "ShipCity"),
             new System.Data.Common.DataColumnMapping("ShipRegion", "ShipRegion"),
             new System.Data.Common.DataColumnMapping("ShipPostalCode", "ShipPostalCode"),
             new System.Data.Common.DataColumnMapping("ShipCountry", "ShipCountry")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = resources.GetString("oleDbInsertCommand1.CommandText");
     this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("CustomerID", System.Data.OleDb.OleDbType.VarWChar, 5, "CustomerID"),
         new System.Data.OleDb.OleDbParameter("EmployeeID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "EmployeeID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("Freight", System.Data.OleDb.OleDbType.Currency, 0, System.Data.ParameterDirection.Input, false, ((byte)(19)), ((byte)(0)), "Freight", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("OrderDate", System.Data.OleDb.OleDbType.DBDate, 0, "OrderDate"),
         new System.Data.OleDb.OleDbParameter("OrderID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "OrderID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("RequiredDate", System.Data.OleDb.OleDbType.DBDate, 0, "RequiredDate"),
         new System.Data.OleDb.OleDbParameter("ShipAddress", System.Data.OleDb.OleDbType.VarWChar, 60, "ShipAddress"),
         new System.Data.OleDb.OleDbParameter("ShipCity", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipCity"),
         new System.Data.OleDb.OleDbParameter("ShipCountry", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipCountry"),
         new System.Data.OleDb.OleDbParameter("ShipName", System.Data.OleDb.OleDbType.VarWChar, 40, "ShipName"),
         new System.Data.OleDb.OleDbParameter("ShippedDate", System.Data.OleDb.OleDbType.DBDate, 0, "ShippedDate"),
         new System.Data.OleDb.OleDbParameter("ShipPostalCode", System.Data.OleDb.OleDbType.VarWChar, 10, "ShipPostalCode"),
         new System.Data.OleDb.OleDbParameter("ShipRegion", System.Data.OleDb.OleDbType.VarWChar, 15, "ShipRegion"),
         new System.Data.OleDb.OleDbParameter("ShipVia", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "ShipVia", System.Data.DataRowVersion.Current, null)
     });
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Program Files\\ComponentOne Studi" +
                                              "o.NET 2.0\\Common\\C1Nwind.mdb;";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT CustomerID, EmployeeID, Freight, OrderDate, OrderID, RequiredDate, ShipAdd" +
                                            "ress, ShipCity, ShipCountry, ShipName, ShippedDate, ShipPostalCode, ShipRegion, " +
                                            "ShipVia FROM Orders";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.DataSource = this.dataSet11.Orders;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 32);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(416, 208);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem1
     });
     //
     // menuItem1
     //
     this.menuItem1.Index = 0;
     this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem2
     });
     this.menuItem1.Text = "View";
     //
     // menuItem2
     //
     this.menuItem2.Index = 0;
     this.menuItem2.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem3,
         this.menuItem4,
         this.menuItem5,
         this.menuItem6
     });
     this.menuItem2.Text = "Zoom";
     //
     // menuItem3
     //
     this.menuItem3.Index  = 0;
     this.menuItem3.Text   = "50%";
     this.menuItem3.Click += new System.EventHandler(this.menuItem3_Click);
     //
     // menuItem4
     //
     this.menuItem4.Index  = 1;
     this.menuItem4.Text   = "80%";
     this.menuItem4.Click += new System.EventHandler(this.menuItem4_Click);
     //
     // menuItem5
     //
     this.menuItem5.Index  = 2;
     this.menuItem5.Text   = "100%";
     this.menuItem5.Click += new System.EventHandler(this.menuItem5_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index  = 3;
     this.menuItem6.Text   = "120%";
     this.menuItem6.Click += new System.EventHandler(this.menuItem6_Click);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(432, 266);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Menu  = this.mainMenu1;
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     this.ResumeLayout(false);
 }
示例#26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOpenRSS));
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.lblRSSCount = new DevExpress.XtraEditors.LabelControl();
     this.grdDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.lblOcGroupId = new DevExpress.XtraEditors.LabelControl();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDetails)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl3
     //
     this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupControl3.AppearanceCaption.Options.UseFont = true;
     this.groupControl3.Controls.Add(this.lblRSSCount);
     this.groupControl3.Controls.Add(this.grdDetails);
     this.groupControl3.Controls.Add(this.lblOcGroupId);
     this.groupControl3.Location = new System.Drawing.Point(0, 1);
     this.groupControl3.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(619, 258);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Open RSS";
     //
     // lblRSSCount
     //
     this.lblRSSCount.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblRSSCount.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRSSCount.Location = new System.Drawing.Point(578, 2);
     this.lblRSSCount.Name = "lblRSSCount";
     this.lblRSSCount.Size = new System.Drawing.Size(3, 13);
     this.lblRSSCount.TabIndex = 213258;
     this.lblRSSCount.Text = ":";
     //
     // grdDetails
     //
     this.grdDetails.AllowAddNew = true;
     this.grdDetails.CaptionHeight = 17;
     this.grdDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdDetails.Images"))));
     this.grdDetails.LinesPerRow = 1;
     this.grdDetails.Location = new System.Drawing.Point(2, 21);
     this.grdDetails.Name = "grdDetails";
     this.grdDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdDetails.PrintInfo.PageSettings")));
     this.grdDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdDetails.RowHeight = 23;
     this.grdDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdDetails.Size = new System.Drawing.Size(615, 235);
     this.grdDetails.TabIndex = 10;
     this.grdDetails.Text = "c1TrueDBGrid1";
     this.grdDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdDetails.KeyUp += new System.Windows.Forms.KeyEventHandler(this.grdDetails_KeyUp);
     this.grdDetails.PropBag = resources.GetString("grdDetails.PropBag");
     //
     // lblOcGroupId
     //
     this.lblOcGroupId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblOcGroupId.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblOcGroupId.Location = new System.Drawing.Point(507, 3);
     this.lblOcGroupId.Name = "lblOcGroupId";
     this.lblOcGroupId.Size = new System.Drawing.Size(66, 13);
     this.lblOcGroupId.TabIndex = 213257;
     this.lblOcGroupId.Text = "Total RSS =";
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(562, 260);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(55, 32);
     toolTipItem3.Text = "Close Modules List";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnExit.SuperTip = superToolTip3;
     this.btnExit.TabIndex = 21;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(501, 260);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(55, 32);
     toolTipItem4.Text = "Cancel Current Operation";
     superToolTip4.Items.Add(toolTipItem4);
     this.btnCancel.SuperTip = superToolTip4;
     this.btnCancel.TabIndex = 20;
     this.btnCancel.Text = "&Close";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // OpenRSS
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(621, 294);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.groupControl3);
     this.MaximizeBox = false;
     this.Name = "OpenRSS";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "OpenRSS";
     this.Load += new System.EventHandler(this.OpenRSS_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDetails)).EndInit();
     this.ResumeLayout(false);
 }
示例#27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dsCustomers1        = new Tutorial_20.DsCustomers();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
     this.comboBox1           = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCustomers1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.AllowDelete    = true;
     this.c1TrueDBGrid1.AllowUpdate    = false;
     this.c1TrueDBGrid1.Caption        = "C1True DBGrid .Net";
     this.c1TrueDBGrid1.CaptionHeight  = 17;
     this.c1TrueDBGrid1.DataMember     = "Customer";
     this.c1TrueDBGrid1.DataSource     = this.dsCustomers1;
     this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 48);
     this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
     this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBGrid1.RowHeight              = 15;
     this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(432, 296);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Company\" Da" +
                                                 "taField=\"Company\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=" +
                                                 "\"0\" Caption=\"Contacted\" DataField=\"Contacted\"><ValueItems /><GroupInfo /></C1Dat" +
                                                 "aColumn><C1DataColumn Level=\"0\" Caption=\"CustType\" DataField=\"CustType\"><ValueIt" +
                                                 "ems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"FirstName\" Da" +
                                                 "taField=\"FirstName\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Leve" +
                                                 "l=\"0\" Caption=\"LastName\" DataField=\"LastName\"><ValueItems /><GroupInfo /></C1Dat" +
                                                 "aColumn><C1DataColumn Level=\"0\" Caption=\"Phone\" DataField=\"Phone\"><ValueItems />" +
                                                 "<GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"UserCode\" DataField" +
                                                 "=\"UserCode\"><ValueItems /><GroupInfo /></C1DataColumn></DataCols><Styles type=\"C" +
                                                 "1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>HighlightRow{ForeColor:Highlight" +
                                                 "Text;BackColor:Highlight;}Style50{}Style51{}Style52{}Style53{}Style54{}Caption{A" +
                                                 "lignHorz:Center;}Style56{}Normal{}Style25{}Selected{ForeColor:HighlightText;Back" +
                                                 "Color:Highlight;}Style55{}Editor{}Style18{AlignHorz:Far;}Style19{AlignHorz:Far;}" +
                                                 "Style14{AlignHorz:Near;}Style15{AlignHorz:Near;}Style16{}Style17{}Style10{AlignH" +
                                                 "orz:Near;}Style11{}OddRow{}Style13{}Style44{}Style45{}Style46{}Style47{}Style38{" +
                                                 "AlignHorz:Near;}Style37{}Style34{AlignHorz:Far;}Style35{AlignHorz:Far;}Style32{}" +
                                                 "Style33{}Style31{AlignHorz:Near;}Footer{}Style29{}Style28{}Style27{AlignHorz:Nea" +
                                                 "r;}Style26{AlignHorz:Near;}RecordSelector{AlignImage:Center;}Style24{}Style23{Al" +
                                                 "ignHorz:Far;}Style22{AlignHorz:Far;}Style21{}Style20{}Style57{}Inactive{ForeColo" +
                                                 "r:InactiveCaptionText;BackColor:InactiveCaption;}EvenRow{BackColor:Aqua;}Heading" +
                                                 "{Wrap:True;AlignVert:Center;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;Back" +
                                                 "Color:Control;}Style49{}Style48{}Style41{}Style40{}Style43{}FilterBar{}Style42{}" +
                                                 "Style5{}Style4{}Style9{}Style8{}Style39{AlignHorz:Near;}Style36{}Style12{}Group{" +
                                                 "BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVert:Center;}Style7{}Style6{}" +
                                                 "Style1{}Style30{AlignHorz:Near;}Style3{}Style2{}</Data></Styles><Splits><C1.Win." +
                                                 "C1TrueDBGrid.MergeView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" Colum" +
                                                 "nFooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefR" +
                                                 "ecSelWidth=\"17\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0," +
                                                 " 17, 428, 275</ClientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"Style2" +
                                                 "\" me=\"Style10\" /><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent" +
                                                 "=\"EvenRow\" me=\"Style8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><Foot" +
                                                 "erStyle parent=\"Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" />" +
                                                 "<HeadingStyle parent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"Highligh" +
                                                 "tRow\" me=\"Style7\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle " +
                                                 "parent=\"OddRow\" me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"S" +
                                                 "tyle11\" /><SelectedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" " +
                                                 "me=\"Style1\" /><internalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"S" +
                                                 "tyle14\" /><Style parent=\"Style1\" me=\"Style15\" /><FooterStyle parent=\"Style3\" me=" +
                                                 "\"Style16\" /><EditorStyle parent=\"Style5\" me=\"Style17\" /><GroupHeaderStyle parent" +
                                                 "=\"Style1\" me=\"Style45\" /><GroupFooterStyle parent=\"Style1\" me=\"Style44\" /><Visib" +
                                                 "le>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Heigh" +
                                                 "t><DCIdx>0</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style" +
                                                 "2\" me=\"Style18\" /><Style parent=\"Style1\" me=\"Style19\" /><FooterStyle parent=\"Sty" +
                                                 "le3\" me=\"Style20\" /><EditorStyle parent=\"Style5\" me=\"Style21\" /><GroupHeaderStyl" +
                                                 "e parent=\"Style1\" me=\"Style47\" /><GroupFooterStyle parent=\"Style1\" me=\"Style46\" " +
                                                 "/><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>1" +
                                                 "5</Height><DCIdx>1</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle paren" +
                                                 "t=\"Style2\" me=\"Style22\" /><Style parent=\"Style1\" me=\"Style23\" /><FooterStyle par" +
                                                 "ent=\"Style3\" me=\"Style24\" /><EditorStyle parent=\"Style5\" me=\"Style25\" /><GroupHe" +
                                                 "aderStyle parent=\"Style1\" me=\"Style49\" /><GroupFooterStyle parent=\"Style1\" me=\"S" +
                                                 "tyle48\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><" +
                                                 "Height>15</Height><DCIdx>2</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingSty" +
                                                 "le parent=\"Style2\" me=\"Style26\" /><Style parent=\"Style1\" me=\"Style27\" /><FooterS" +
                                                 "tyle parent=\"Style3\" me=\"Style28\" /><EditorStyle parent=\"Style5\" me=\"Style29\" />" +
                                                 "<GroupHeaderStyle parent=\"Style1\" me=\"Style51\" /><GroupFooterStyle parent=\"Style" +
                                                 "1\" me=\"Style50\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnD" +
                                                 "ivider><Height>15</Height><DCIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><He" +
                                                 "adingStyle parent=\"Style2\" me=\"Style30\" /><Style parent=\"Style1\" me=\"Style31\" />" +
                                                 "<FooterStyle parent=\"Style3\" me=\"Style32\" /><EditorStyle parent=\"Style5\" me=\"Sty" +
                                                 "le33\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style53\" /><GroupFooterStyle paren" +
                                                 "t=\"Style1\" me=\"Style52\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single<" +
                                                 "/ColumnDivider><Height>15</Height><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayCo" +
                                                 "lumn><HeadingStyle parent=\"Style2\" me=\"Style34\" /><Style parent=\"Style1\" me=\"Sty" +
                                                 "le35\" /><FooterStyle parent=\"Style3\" me=\"Style36\" /><EditorStyle parent=\"Style5\"" +
                                                 " me=\"Style37\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style55\" /><GroupFooterSty" +
                                                 "le parent=\"Style1\" me=\"Style54\" /><Visible>True</Visible><ColumnDivider>DarkGray" +
                                                 ",Single</ColumnDivider><Height>15</Height><DCIdx>5</DCIdx></C1DisplayColumn><C1D" +
                                                 "isplayColumn><HeadingStyle parent=\"Style2\" me=\"Style38\" /><Style parent=\"Style1\"" +
                                                 " me=\"Style39\" /><FooterStyle parent=\"Style3\" me=\"Style40\" /><EditorStyle parent=" +
                                                 "\"Style5\" me=\"Style41\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style57\" /><GroupF" +
                                                 "ooterStyle parent=\"Style1\" me=\"Style56\" /><Visible>True</Visible><ColumnDivider>" +
                                                 "DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>6</DCIdx></C1DisplayCol" +
                                                 "umn></internalCols></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style " +
                                                 "parent=\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Hea" +
                                                 "ding\" me=\"Footer\" /><Style parent=\"Heading\" me=\"Caption\" /><Style parent=\"Headin" +
                                                 "g\" me=\"Inactive\" /><Style parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\"" +
                                                 " me=\"Editor\" /><Style parent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\"" +
                                                 " me=\"EvenRow\" /><Style parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=" +
                                                 "\"RecordSelector\" /><Style parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Captio" +
                                                 "n\" me=\"Group\" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplit" +
                                                 "s><Layout>Modified</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientAre" +
                                                 "a>0, 0, 428, 292</ClientArea><PrintPageHeaderStyle parent=\"\" me=\"Style42\" /><Pri" +
                                                 "ntPageFooterStyle parent=\"\" me=\"Style43\" /></Blob>";
     //
     // dsCustomers1
     //
     this.dsCustomers1.DataSetName = "DsCustomers";
     this.dsCustomers1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsCustomers1.Namespace   = "http://www.tempuri.org/DsCustomers.xsd";
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.DeleteCommand = this.oleDbDeleteCommand1;
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Customer", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("UserCode", "UserCode"),
             new System.Data.Common.DataColumnMapping("LastName", "LastName"),
             new System.Data.Common.DataColumnMapping("FirstName", "FirstName"),
             new System.Data.Common.DataColumnMapping("Company", "Company"),
             new System.Data.Common.DataColumnMapping("Contacted", "Contacted"),
             new System.Data.Common.DataColumnMapping("Phone", "Phone"),
             new System.Data.Common.DataColumnMapping("CustType", "CustType")
         })
     });
     this.oleDbDataAdapter1.UpdateCommand = this.oleDbUpdateCommand1;
     //
     // oleDbDeleteCommand1
     //
     this.oleDbDeleteCommand1.CommandText = @"DELETE FROM Customer WHERE (UserCode = ?) AND (Company = ? OR ? IS NULL AND Company IS NULL) AND (Contacted = ? OR ? IS NULL AND Contacted IS NULL) AND (CustType = ? OR ? IS NULL AND CustType IS NULL) AND (FirstName = ? OR ? IS NULL AND FirstName IS NULL) AND (LastName = ? OR ? IS NULL AND LastName IS NULL) AND (Phone = ? OR ? IS NULL AND Phone IS NULL)";
     this.oleDbDeleteCommand1.Connection  = this.oleDbConnection1;
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "UserCode", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company1", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType1", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName1", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone1", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=5;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO Customer(Company, Contacted, CustType, FirstName, LastName, Phone, U" +
                                            "serCode) VALUES (?, ?, ?, ?, ?, ?, ?)";
     this.oleDbInsertCommand1.Connection = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.VarWChar, 30, "Company"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.DBDate, 0, "Contacted"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Current, null));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, "FirstName"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.VarWChar, 15, "LastName"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Current, null));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, "UserCode"));
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Company, Contacted, CustType, FirstName, LastName, Phone, UserCode FROM Cu" +
                                            "stomer";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // oleDbUpdateCommand1
     //
     this.oleDbUpdateCommand1.CommandText = @"UPDATE Customer SET Company = ?, Contacted = ?, CustType = ?, FirstName = ?, LastName = ?, Phone = ?, UserCode = ? WHERE (UserCode = ?) AND (Company = ? OR ? IS NULL AND Company IS NULL) AND (Contacted = ? OR ? IS NULL AND Contacted IS NULL) AND (CustType = ? OR ? IS NULL AND CustType IS NULL) AND (FirstName = ? OR ? IS NULL AND FirstName IS NULL) AND (LastName = ? OR ? IS NULL AND LastName IS NULL) AND (Phone = ? OR ? IS NULL AND Phone IS NULL)";
     this.oleDbUpdateCommand1.Connection  = this.oleDbConnection1;
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.VarWChar, 30, "Company"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.DBDate, 0, "Contacted"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Current, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, "FirstName"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.VarWChar, 15, "LastName"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Current, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, "UserCode"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "UserCode", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company1", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType1", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName1", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone1", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     //
     // comboBox1
     //
     this.comboBox1.Items.AddRange(new object[] {
         "Normal",
         "Inverted",
         "Form",
         "GroupBy",
         "MultipleLines",
         "Hierarchical"
     });
     this.comboBox1.Location              = new System.Drawing.Point(8, 16);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(256, 21);
     this.comboBox1.TabIndex              = 1;
     this.comboBox1.Text                  = "comboBox1";
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(464, 382);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.comboBox1,
         this.c1TrueDBGrid1
     });
     this.Name  = "Form1";
     this.Text  = "Tutorial 20";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCustomers1)).EndInit();
     this.ResumeLayout(false);
 }
示例#28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSaleReturn));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grdDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks = new System.Windows.Forms.TextBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtDiscount = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtSalesTax = new DevExpress.XtraEditors.TextEdit();
     this.txtNetAmount = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtGrossAmount = new DevExpress.XtraEditors.TextEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.chkSMReturn = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.plinvoiceid = new DevExpress.XtraEditors.SimpleButton();
     this.txtInvoiceid = new System.Windows.Forms.MaskedTextBox();
     this.lblInvoice = new DevExpress.XtraEditors.LabelControl();
     this.lblcmbclaimtype = new DevExpress.XtraEditors.LabelControl();
     this.cmbReason = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtInvoiceValue = new DevExpress.XtraEditors.TextEdit();
     this.plCustomer = new DevExpress.XtraEditors.SimpleButton();
     this.txtCustomerId = new System.Windows.Forms.MaskedTextBox();
     this.lblOcGroupId = new DevExpress.XtraEditors.LabelControl();
     this.mskReturnDate = new System.Windows.Forms.MaskedTextBox();
     this.plEmployee = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.plreturnid = new DevExpress.XtraEditors.SimpleButton();
     this.txtEmployeeid = new System.Windows.Forms.MaskedTextBox();
     this.txtEmployeeName = new DevExpress.XtraEditors.TextEdit();
     this.plTerritory = new DevExpress.XtraEditors.SimpleButton();
     this.txtReturnid = new System.Windows.Forms.MaskedTextBox();
     this.txtTerritoryid = new System.Windows.Forms.MaskedTextBox();
     this.txtTerritoryName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.lblReturnid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.lblGroup = new DevExpress.XtraEditors.LabelControl();
     this.lblRSSID = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalesTax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGrossAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkSMReturn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbReason.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmployeeName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTerritoryName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.grdDetails);
     this.groupControl3.Location = new System.Drawing.Point(2, 140);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(787, 253);
     this.groupControl3.TabIndex = 2;
     this.groupControl3.Text = "Details";
     //
     // grdDetails
     //
     this.grdDetails.AllowAddNew = true;
     this.grdDetails.CaptionHeight = 17;
     this.grdDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdDetails.Images"))));
     this.grdDetails.LinesPerRow = 1;
     this.grdDetails.Location = new System.Drawing.Point(2, 21);
     this.grdDetails.Name = "grdDetails";
     this.grdDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdDetails.PrintInfo.PageSettings")));
     this.grdDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdDetails.RowHeight = 23;
     this.grdDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdDetails.Size = new System.Drawing.Size(783, 230);
     this.grdDetails.TabIndex = 10;
     this.grdDetails.Text = "c1TrueDBGrid1";
     this.grdDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdDetails.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdOrderDetails_AfterColUpdate);
     this.grdDetails.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grdDetails_KeyDown);
     this.grdDetails.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdOrderDetails_KeyPress);
     this.grdDetails.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdOrderDetails_PreviewKeyDown);
     this.grdDetails.PropBag = resources.GetString("grdDetails.PropBag");
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.txtRemarks);
     this.groupControl4.Location = new System.Drawing.Point(4, 395);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(247, 97);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text = "Remarks";
     //
     // txtRemarks
     //
     this.txtRemarks.Location = new System.Drawing.Point(7, 23);
     this.txtRemarks.MaxLength = 100;
     this.txtRemarks.Multiline = true;
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(232, 65);
     this.txtRemarks.TabIndex = 1;
     this.txtRemarks.TabStop = false;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(576, 468);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(57, 13);
     this.labelControl11.TabIndex = 30;
     this.labelControl11.Text = "Net Amount";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(576, 424);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(41, 13);
     this.labelControl9.TabIndex = 31;
     this.labelControl9.Text = "Discount";
     //
     // txtDiscount
     //
     this.txtDiscount.Location = new System.Drawing.Point(649, 421);
     this.txtDiscount.Name = "txtDiscount";
     this.txtDiscount.Properties.MaxLength = 8;
     this.txtDiscount.Properties.NullValuePrompt = "0.00";
     this.txtDiscount.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtDiscount.Size = new System.Drawing.Size(136, 20);
     this.txtDiscount.TabIndex = 25;
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(576, 445);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(46, 13);
     this.labelControl10.TabIndex = 28;
     this.labelControl10.Text = "Sales Tax";
     //
     // txtSalesTax
     //
     this.txtSalesTax.Location = new System.Drawing.Point(649, 442);
     this.txtSalesTax.Name = "txtSalesTax";
     this.txtSalesTax.Properties.MaxLength = 8;
     this.txtSalesTax.Properties.NullValuePrompt = "0.00";
     this.txtSalesTax.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtSalesTax.Size = new System.Drawing.Size(136, 20);
     this.txtSalesTax.TabIndex = 26;
     //
     // txtNetAmount
     //
     this.txtNetAmount.Location = new System.Drawing.Point(649, 465);
     this.txtNetAmount.Name = "txtNetAmount";
     this.txtNetAmount.Properties.MaxLength = 8;
     this.txtNetAmount.Properties.NullValuePrompt = "0.00";
     this.txtNetAmount.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtNetAmount.Size = new System.Drawing.Size(136, 20);
     this.txtNetAmount.TabIndex = 27;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(576, 403);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(67, 13);
     this.labelControl3.TabIndex = 29;
     this.labelControl3.Text = "Gross Amount";
     //
     // txtGrossAmount
     //
     this.txtGrossAmount.Location = new System.Drawing.Point(649, 400);
     this.txtGrossAmount.Name = "txtGrossAmount";
     this.txtGrossAmount.Properties.MaxLength = 8;
     this.txtGrossAmount.Size = new System.Drawing.Size(136, 20);
     this.txtGrossAmount.TabIndex = 24;
     //
     // groupControl2
     //
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnPost);
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnSave);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Controls.Add(this.btnEdit);
     this.groupControl2.Controls.Add(this.btnDelete);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 497);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(790, 49);
     this.groupControl2.TabIndex = 32;
     //
     // btnPost
     //
     this.btnPost.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(132, 8);
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(58, 32);
     toolTipItem1.Text = "Remove Module";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnPost.SuperTip = superToolTip1;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = "&Post";
     this.btnPost.Visible = false;
     this.btnPost.Click += new System.EventHandler(this.btnPost_Click);
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(726, 8);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem2.Text = "Close Modules List";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnExit.SuperTip = superToolTip2;
     this.btnExit.TabIndex = 19;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(603, 8);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem3.Text = "Save Module";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnSave.SuperTip = superToolTip3;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(7, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Add New Module";
     superToolTip4.Items.Add(toolTipItem4);
     this.btnAdd.SuperTip = superToolTip4;
     this.btnAdd.TabIndex = 15;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(665, 8);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem5.Text = "Cancel Current Operation";
     superToolTip5.Items.Add(toolTipItem5);
     this.btnCancel.SuperTip = superToolTip5;
     this.btnCancel.TabIndex = 18;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(71, 8);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem6.Text = "Edit Module Details";
     superToolTip6.Items.Add(toolTipItem6);
     this.btnEdit.SuperTip = superToolTip6;
     this.btnEdit.TabIndex = 16;
     this.btnEdit.Text = " &Edit ";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(193, 8);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem7.Text = "Remove Module";
     superToolTip7.Items.Add(toolTipItem7);
     this.btnDelete.SuperTip = superToolTip7;
     this.btnDelete.TabIndex = 4;
     this.btnDelete.Text = "&Del";
     this.btnDelete.Visible = false;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.chkSMReturn);
     this.groupControl1.Controls.Add(this.chkSaleBase);
     this.groupControl1.Controls.Add(this.plinvoiceid);
     this.groupControl1.Controls.Add(this.txtInvoiceid);
     this.groupControl1.Controls.Add(this.lblInvoice);
     this.groupControl1.Controls.Add(this.lblcmbclaimtype);
     this.groupControl1.Controls.Add(this.cmbReason);
     this.groupControl1.Controls.Add(this.txtInvoiceValue);
     this.groupControl1.Controls.Add(this.plCustomer);
     this.groupControl1.Controls.Add(this.txtCustomerId);
     this.groupControl1.Controls.Add(this.lblOcGroupId);
     this.groupControl1.Controls.Add(this.mskReturnDate);
     this.groupControl1.Controls.Add(this.plEmployee);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.plreturnid);
     this.groupControl1.Controls.Add(this.txtEmployeeid);
     this.groupControl1.Controls.Add(this.txtEmployeeName);
     this.groupControl1.Controls.Add(this.plTerritory);
     this.groupControl1.Controls.Add(this.txtReturnid);
     this.groupControl1.Controls.Add(this.txtTerritoryid);
     this.groupControl1.Controls.Add(this.txtTerritoryName);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.txtCustomerName);
     this.groupControl1.Controls.Add(this.labelControl41);
     this.groupControl1.Controls.Add(this.lblReturnid);
     this.groupControl1.Location = new System.Drawing.Point(4, 43);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(783, 94);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Details";
     //
     // chkSMReturn
     //
     this.chkSMReturn.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.chkSMReturn.Location = new System.Drawing.Point(670, 15);
     this.chkSMReturn.Name = "chkSMReturn";
     this.chkSMReturn.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSMReturn.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSMReturn.Properties.Appearance.Options.UseFont = true;
     this.chkSMReturn.Properties.Appearance.Options.UseForeColor = true;
     this.chkSMReturn.Properties.Caption = "SM Return";
     this.chkSMReturn.Size = new System.Drawing.Size(108, 19);
     this.chkSMReturn.TabIndex = 213264;
     this.chkSMReturn.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSMReturn_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.chkSaleBase.Location = new System.Drawing.Point(670, 37);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(108, 19);
     this.chkSaleBase.TabIndex = 213265;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // plinvoiceid
     //
     this.plinvoiceid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plinvoiceid.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plinvoiceid.Appearance.Options.UseFont = true;
     this.plinvoiceid.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plinvoiceid.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plinvoiceid.Location = new System.Drawing.Point(155, 63);
     this.plinvoiceid.Name = "plinvoiceid";
     this.plinvoiceid.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plinvoiceid.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip8.Items.Add(toolTipTitleItem1);
     this.plinvoiceid.SuperTip = superToolTip8;
     this.plinvoiceid.TabIndex = 213234;
     this.plinvoiceid.TabStop = false;
     this.plinvoiceid.Click += new System.EventHandler(this.plinvoiceid_Click);
     //
     // txtInvoiceid
     //
     this.txtInvoiceid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtInvoiceid.Location = new System.Drawing.Point(80, 63);
     this.txtInvoiceid.Name = "txtInvoiceid";
     this.txtInvoiceid.Size = new System.Drawing.Size(73, 21);
     this.txtInvoiceid.TabIndex = 213263;
     this.txtInvoiceid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInvoiceid_PreviewKeyDown);
     //
     // lblInvoice
     //
     this.lblInvoice.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblInvoice.Location = new System.Drawing.Point(14, 67);
     this.lblInvoice.Name = "lblInvoice";
     this.lblInvoice.Size = new System.Drawing.Size(49, 13);
     this.lblInvoice.TabIndex = 213262;
     this.lblInvoice.Text = "Invoice ID";
     //
     // lblcmbclaimtype
     //
     this.lblcmbclaimtype.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblcmbclaimtype.Location = new System.Drawing.Point(184, 17);
     this.lblcmbclaimtype.Name = "lblcmbclaimtype";
     this.lblcmbclaimtype.Size = new System.Drawing.Size(36, 13);
     this.lblcmbclaimtype.TabIndex = 213261;
     this.lblcmbclaimtype.Text = "Reason";
     //
     // cmbReason
     //
     this.cmbReason.Location = new System.Drawing.Point(221, 14);
     this.cmbReason.Name = "cmbReason";
     this.cmbReason.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbReason.Properties.Items.AddRange(new object[] {
     "Breakge",
     "Expiry"});
     this.cmbReason.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbReason.Size = new System.Drawing.Size(115, 20);
     this.cmbReason.TabIndex = 213233;
     this.cmbReason.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbReason_PreviewKeyDown);
     //
     // txtInvoiceValue
     //
     this.txtInvoiceValue.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtInvoiceValue.Location = new System.Drawing.Point(182, 63);
     this.txtInvoiceValue.Name = "txtInvoiceValue";
     this.txtInvoiceValue.Properties.MaxLength = 30;
     this.txtInvoiceValue.Size = new System.Drawing.Size(154, 20);
     this.txtInvoiceValue.TabIndex = 213260;
     //
     // plCustomer
     //
     this.plCustomer.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plCustomer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plCustomer.Appearance.Options.UseFont = true;
     this.plCustomer.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plCustomer.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plCustomer.Location = new System.Drawing.Point(479, 14);
     this.plCustomer.Name = "plCustomer";
     this.plCustomer.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plCustomer.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip9.Items.Add(toolTipTitleItem2);
     this.plCustomer.SuperTip = superToolTip9;
     this.plCustomer.TabIndex = 213257;
     this.plCustomer.TabStop = false;
     this.plCustomer.Click += new System.EventHandler(this.plCustomer_Click);
     //
     // txtCustomerId
     //
     this.txtCustomerId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtCustomerId.Location = new System.Drawing.Point(404, 13);
     this.txtCustomerId.Name = "txtCustomerId";
     this.txtCustomerId.Size = new System.Drawing.Size(73, 21);
     this.txtCustomerId.TabIndex = 213255;
     this.txtCustomerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCustomerId_PreviewKeyDown);
     //
     // lblOcGroupId
     //
     this.lblOcGroupId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblOcGroupId.Location = new System.Drawing.Point(340, 17);
     this.lblOcGroupId.Name = "lblOcGroupId";
     this.lblOcGroupId.Size = new System.Drawing.Size(59, 13);
     this.lblOcGroupId.TabIndex = 213256;
     this.lblOcGroupId.Text = "Customer Id";
     //
     // mskReturnDate
     //
     this.mskReturnDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.mskReturnDate.Enabled = false;
     this.mskReturnDate.Location = new System.Drawing.Point(404, 64);
     this.mskReturnDate.Mask = "00/00/0000";
     this.mskReturnDate.Name = "mskReturnDate";
     this.mskReturnDate.Size = new System.Drawing.Size(73, 21);
     this.mskReturnDate.TabIndex = 213249;
     this.mskReturnDate.ValidatingType = typeof(System.DateTime);
     this.mskReturnDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.mskReturnDate_PreviewKeyDown);
     //
     // plEmployee
     //
     this.plEmployee.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plEmployee.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plEmployee.Appearance.Options.UseFont = true;
     this.plEmployee.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plEmployee.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plEmployee.Location = new System.Drawing.Point(479, 38);
     this.plEmployee.Name = "plEmployee";
     this.plEmployee.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plEmployee.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem3);
     this.plEmployee.SuperTip = superToolTip10;
     this.plEmployee.TabIndex = 213240;
     this.plEmployee.TabStop = false;
     this.plEmployee.Click += new System.EventHandler(this.plEmployee_Click);
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.Location = new System.Drawing.Point(342, 67);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(59, 13);
     this.labelControl4.TabIndex = 213248;
     this.labelControl4.Text = "Return Date";
     //
     // plreturnid
     //
     this.plreturnid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plreturnid.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plreturnid.Appearance.Options.UseFont = true;
     this.plreturnid.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plreturnid.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plreturnid.Location = new System.Drawing.Point(155, 15);
     this.plreturnid.Name = "plreturnid";
     this.plreturnid.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plreturnid.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem4);
     this.plreturnid.SuperTip = superToolTip11;
     this.plreturnid.TabIndex = 213237;
     this.plreturnid.TabStop = false;
     this.plreturnid.Click += new System.EventHandler(this.plreturnid_Click);
     //
     // txtEmployeeid
     //
     this.txtEmployeeid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtEmployeeid.Location = new System.Drawing.Point(404, 38);
     this.txtEmployeeid.Name = "txtEmployeeid";
     this.txtEmployeeid.Size = new System.Drawing.Size(73, 21);
     this.txtEmployeeid.TabIndex = 213238;
     this.txtEmployeeid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtEmployeeid_PreviewKeyDown);
     //
     // txtEmployeeName
     //
     this.txtEmployeeName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtEmployeeName.Location = new System.Drawing.Point(506, 38);
     this.txtEmployeeName.Name = "txtEmployeeName";
     this.txtEmployeeName.Properties.MaxLength = 30;
     this.txtEmployeeName.Size = new System.Drawing.Size(154, 20);
     this.txtEmployeeName.TabIndex = 213252;
     this.txtEmployeeName.TabStop = false;
     //
     // plTerritory
     //
     this.plTerritory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plTerritory.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plTerritory.Appearance.Options.UseFont = true;
     this.plTerritory.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plTerritory.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plTerritory.Location = new System.Drawing.Point(155, 40);
     this.plTerritory.Name = "plTerritory";
     this.plTerritory.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plTerritory.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip12.Items.Add(toolTipTitleItem5);
     this.plTerritory.SuperTip = superToolTip12;
     this.plTerritory.TabIndex = 213243;
     this.plTerritory.TabStop = false;
     this.plTerritory.Click += new System.EventHandler(this.plTerritory_Click);
     //
     // txtReturnid
     //
     this.txtReturnid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtReturnid.Location = new System.Drawing.Point(80, 15);
     this.txtReturnid.Name = "txtReturnid";
     this.txtReturnid.Size = new System.Drawing.Size(74, 21);
     this.txtReturnid.TabIndex = 213235;
     this.txtReturnid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReturnid_PreviewKeyDown);
     //
     // txtTerritoryid
     //
     this.txtTerritoryid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtTerritoryid.Location = new System.Drawing.Point(80, 39);
     this.txtTerritoryid.Name = "txtTerritoryid";
     this.txtTerritoryid.Size = new System.Drawing.Size(74, 21);
     this.txtTerritoryid.TabIndex = 213241;
     this.txtTerritoryid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBookingid_PreviewKeyDown);
     //
     // txtTerritoryName
     //
     this.txtTerritoryName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtTerritoryName.Enabled = false;
     this.txtTerritoryName.EnterMoveNextControl = true;
     this.txtTerritoryName.Location = new System.Drawing.Point(182, 40);
     this.txtTerritoryName.Name = "txtTerritoryName";
     this.txtTerritoryName.Properties.MaxLength = 30;
     this.txtTerritoryName.Size = new System.Drawing.Size(154, 20);
     this.txtTerritoryName.TabIndex = 213245;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.Location = new System.Drawing.Point(340, 42);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(59, 13);
     this.labelControl2.TabIndex = 213239;
     this.labelControl2.Text = "Employee Id";
     //
     // txtCustomerName
     //
     this.txtCustomerName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtCustomerName.Enabled = false;
     this.txtCustomerName.Location = new System.Drawing.Point(506, 15);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Properties.MaxLength = 30;
     this.txtCustomerName.Size = new System.Drawing.Size(154, 20);
     this.txtCustomerName.TabIndex = 213247;
     //
     // labelControl41
     //
     this.labelControl41.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl41.Location = new System.Drawing.Point(14, 43);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(55, 13);
     this.labelControl41.TabIndex = 213242;
     this.labelControl41.Text = "Territory Id";
     //
     // lblReturnid
     //
     this.lblReturnid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblReturnid.Location = new System.Drawing.Point(14, 18);
     this.lblReturnid.Name = "lblReturnid";
     this.lblReturnid.Size = new System.Drawing.Size(46, 13);
     this.lblReturnid.TabIndex = 213236;
     this.lblReturnid.Text = "Return Id";
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.labelControl5);
     this.groupControl5.Controls.Add(this.lblGroup);
     this.groupControl5.Controls.Add(this.lblRSSID);
     this.groupControl5.Controls.Add(this.labelControl1);
     this.groupControl5.Location = new System.Drawing.Point(4, 2);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(783, 39);
     this.groupControl5.TabIndex = 5;
     this.groupControl5.Text = "Remarks";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl5.Location = new System.Drawing.Point(6, 8);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(97, 22);
     this.labelControl5.TabIndex = 213266;
     this.labelControl5.Text = "Sale Return";
     //
     // lblGroup
     //
     this.lblGroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblGroup.Appearance.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblGroup.Location = new System.Drawing.Point(611, 9);
     this.lblGroup.Name = "lblGroup";
     this.lblGroup.Size = new System.Drawing.Size(0, 19);
     this.lblGroup.TabIndex = 213267;
     //
     // lblRSSID
     //
     this.lblRSSID.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblRSSID.Appearance.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRSSID.Location = new System.Drawing.Point(514, 9);
     this.lblRSSID.Name = "lblRSSID";
     this.lblRSSID.Size = new System.Drawing.Size(0, 19);
     this.lblRSSID.TabIndex = 213266;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Location = new System.Drawing.Point(464, 12);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(44, 15);
     this.labelControl1.TabIndex = 213266;
     this.labelControl1.Text = "&RSS ID:";
     //
     // frmSaleReturn
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(790, 546);
     this.Controls.Add(this.groupControl5);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.labelControl11);
     this.Controls.Add(this.labelControl9);
     this.Controls.Add(this.txtDiscount);
     this.Controls.Add(this.labelControl10);
     this.Controls.Add(this.txtSalesTax);
     this.Controls.Add(this.txtNetAmount);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.txtGrossAmount);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl3);
     this.MaximizeBox = false;
     this.Name = "frmSaleReturn";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load += new System.EventHandler(this.frmSaleReturn_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalesTax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGrossAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkSMReturn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbReason.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmployeeName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTerritoryName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCashCollection));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.mskCloseDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.btnCreditAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnCashALL = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtDriverName = new DevExpress.XtraEditors.TextEdit();
     this.plDriver = new DevExpress.XtraEditors.SimpleButton();
     this.txtDriverId = new System.Windows.Forms.MaskedTextBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtDeliveryManName = new DevExpress.XtraEditors.TextEdit();
     this.plDeliveryManid = new DevExpress.XtraEditors.SimpleButton();
     this.txtDeliveryManId = new System.Windows.Forms.MaskedTextBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txtDSSid = new System.Windows.Forms.MaskedTextBox();
     this.plDssid = new DevExpress.XtraEditors.SimpleButton();
     this.mskDSSDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grdDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblTotalInv = new DevExpress.XtraEditors.LabelControl();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.txtTotal = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txtCash = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtCheque = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txtReturn = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtCredit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtReciept = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txtBalance = new DevExpress.XtraEditors.TextEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.txtOnline = new DevExpress.XtraEditors.TextEdit();
     this.CreditNote = new DevExpress.XtraEditors.LabelControl();
     this.txtCreditNote = new DevExpress.XtraEditors.TextEdit();
     this.Pending = new DevExpress.XtraEditors.LabelControl();
     this.txtPending = new DevExpress.XtraEditors.TextEdit();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txtSB = new DevExpress.XtraEditors.TextEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txtchqRoun = new DevExpress.XtraEditors.TextEdit();
     this.txtComm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.txtIns = new DevExpress.XtraEditors.TextEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txtTax = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDriverName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeliveryManName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCash.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCheque.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReturn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCredit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReciept.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOnline.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditNote.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPending.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtchqRoun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIns.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTax.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl5
     //
     this.groupControl5.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl5.Appearance.Options.UseBackColor = true;
     this.groupControl5.Controls.Add(this.mskCloseDate);
     this.groupControl5.Controls.Add(this.labelControl18);
     this.groupControl5.Controls.Add(this.btnCreditAll);
     this.groupControl5.Controls.Add(this.btnCashALL);
     this.groupControl5.Controls.Add(this.labelControl3);
     this.groupControl5.Controls.Add(this.txtDriverName);
     this.groupControl5.Controls.Add(this.plDriver);
     this.groupControl5.Controls.Add(this.txtDriverId);
     this.groupControl5.Controls.Add(this.labelControl1);
     this.groupControl5.Controls.Add(this.txtDeliveryManName);
     this.groupControl5.Controls.Add(this.plDeliveryManid);
     this.groupControl5.Controls.Add(this.txtDeliveryManId);
     this.groupControl5.Controls.Add(this.labelControl2);
     this.groupControl5.Controls.Add(this.txtDSSid);
     this.groupControl5.Controls.Add(this.plDssid);
     this.groupControl5.Controls.Add(this.mskDSSDate);
     this.groupControl5.Controls.Add(this.labelControl4);
     this.groupControl5.Location = new System.Drawing.Point(2, 1);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(762, 77);
     this.groupControl5.TabIndex = 213277;
     this.groupControl5.Text = "groupControl5";
     //
     // mskCloseDate
     //
     this.mskCloseDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.mskCloseDate.Enabled = false;
     this.mskCloseDate.Location = new System.Drawing.Point(398, 12);
     this.mskCloseDate.Mask = "00/00/0000";
     this.mskCloseDate.Name = "mskCloseDate";
     this.mskCloseDate.Size = new System.Drawing.Size(73, 21);
     this.mskCloseDate.TabIndex = 213281;
     this.mskCloseDate.ValidatingType = typeof(System.DateTime);
     //
     // labelControl18
     //
     this.labelControl18.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl18.Location = new System.Drawing.Point(343, 15);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(52, 13);
     this.labelControl18.TabIndex = 213280;
     this.labelControl18.Text = "Close Date";
     //
     // btnCreditAll
     //
     this.btnCreditAll.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCreditAll.Image = ((System.Drawing.Image)(resources.GetObject("btnCreditAll.Image")));
     this.btnCreditAll.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCreditAll.Location = new System.Drawing.Point(508, 37);
     this.btnCreditAll.Name = "btnCreditAll";
     this.btnCreditAll.Size = new System.Drawing.Size(102, 32);
     toolTipItem1.Text = "Remove Module";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnCreditAll.SuperTip = superToolTip1;
     this.btnCreditAll.TabIndex = 213279;
     this.btnCreditAll.Text = "&Credit All";
     this.btnCreditAll.Click += new System.EventHandler(this.btnCreditAll_Click);
     //
     // btnCashALL
     //
     this.btnCashALL.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCashALL.Image = ((System.Drawing.Image)(resources.GetObject("btnCashALL.Image")));
     this.btnCashALL.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCashALL.Location = new System.Drawing.Point(397, 37);
     this.btnCashALL.Name = "btnCashALL";
     this.btnCashALL.Size = new System.Drawing.Size(102, 32);
     toolTipItem2.Text = "Remove Module";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnCashALL.SuperTip = superToolTip2;
     this.btnCashALL.TabIndex = 21;
     this.btnCashALL.Text = "&Cash All";
     this.btnCashALL.Click += new System.EventHandler(this.btnCashALL_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(475, 16);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(29, 13);
     this.labelControl3.TabIndex = 213278;
     this.labelControl3.Text = "Driver";
     //
     // txtDriverName
     //
     this.txtDriverName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDriverName.Enabled = false;
     this.txtDriverName.Location = new System.Drawing.Point(599, 13);
     this.txtDriverName.Name = "txtDriverName";
     this.txtDriverName.Properties.MaxLength = 30;
     this.txtDriverName.Size = new System.Drawing.Size(154, 20);
     this.txtDriverName.TabIndex = 213277;
     this.txtDriverName.TabStop = false;
     //
     // plDriver
     //
     this.plDriver.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plDriver.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plDriver.Appearance.Options.UseFont = true;
     this.plDriver.Enabled = false;
     this.plDriver.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plDriver.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plDriver.Location = new System.Drawing.Point(569, 13);
     this.plDriver.Name = "plDriver";
     this.plDriver.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plDriver.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem1);
     this.plDriver.SuperTip = superToolTip3;
     this.plDriver.TabIndex = 213276;
     this.plDriver.TabStop = false;
     //
     // txtDriverId
     //
     this.txtDriverId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDriverId.Enabled = false;
     this.txtDriverId.Location = new System.Drawing.Point(509, 12);
     this.txtDriverId.Name = "txtDriverId";
     this.txtDriverId.Size = new System.Drawing.Size(56, 21);
     this.txtDriverId.TabIndex = 213275;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl1.Location = new System.Drawing.Point(22, 43);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(62, 13);
     this.labelControl1.TabIndex = 213274;
     this.labelControl1.Text = "Delivery Man";
     //
     // txtDeliveryManName
     //
     this.txtDeliveryManName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDeliveryManName.Enabled = false;
     this.txtDeliveryManName.Location = new System.Drawing.Point(181, 39);
     this.txtDeliveryManName.Name = "txtDeliveryManName";
     this.txtDeliveryManName.Properties.MaxLength = 30;
     this.txtDeliveryManName.Size = new System.Drawing.Size(154, 20);
     this.txtDeliveryManName.TabIndex = 213273;
     this.txtDeliveryManName.TabStop = false;
     //
     // plDeliveryManid
     //
     this.plDeliveryManid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plDeliveryManid.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plDeliveryManid.Appearance.Options.UseFont = true;
     this.plDeliveryManid.Enabled = false;
     this.plDeliveryManid.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plDeliveryManid.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plDeliveryManid.Location = new System.Drawing.Point(151, 40);
     this.plDeliveryManid.Name = "plDeliveryManid";
     this.plDeliveryManid.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plDeliveryManid.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem2);
     this.plDeliveryManid.SuperTip = superToolTip4;
     this.plDeliveryManid.TabIndex = 213272;
     this.plDeliveryManid.TabStop = false;
     //
     // txtDeliveryManId
     //
     this.txtDeliveryManId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDeliveryManId.Enabled = false;
     this.txtDeliveryManId.Location = new System.Drawing.Point(91, 39);
     this.txtDeliveryManId.Name = "txtDeliveryManId";
     this.txtDeliveryManId.Size = new System.Drawing.Size(56, 21);
     this.txtDeliveryManId.TabIndex = 213271;
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.Location = new System.Drawing.Point(22, 18);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(32, 13);
     this.labelControl2.TabIndex = 213259;
     this.labelControl2.Text = "DSS Id";
     //
     // txtDSSid
     //
     this.txtDSSid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtDSSid.Location = new System.Drawing.Point(91, 14);
     this.txtDSSid.Name = "txtDSSid";
     this.txtDSSid.Size = new System.Drawing.Size(56, 21);
     this.txtDSSid.TabIndex = 213258;
     this.txtDSSid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtDSSid_PreviewKeyDown);
     //
     // plDssid
     //
     this.plDssid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.plDssid.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.plDssid.Appearance.Options.UseFont = true;
     this.plDssid.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.plDssid.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.plDssid.Location = new System.Drawing.Point(151, 14);
     this.plDssid.Name = "plDssid";
     this.plDssid.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.plDssid.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem3);
     this.plDssid.SuperTip = superToolTip5;
     this.plDssid.TabIndex = 213260;
     this.plDssid.TabStop = false;
     this.plDssid.Click += new System.EventHandler(this.plDssid_Click);
     //
     // mskDSSDate
     //
     this.mskDSSDate.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.mskDSSDate.Enabled = false;
     this.mskDSSDate.Location = new System.Drawing.Point(262, 13);
     this.mskDSSDate.Mask = "00/00/0000";
     this.mskDSSDate.Name = "mskDSSDate";
     this.mskDSSDate.Size = new System.Drawing.Size(73, 21);
     this.mskDSSDate.TabIndex = 213270;
     this.mskDSSDate.ValidatingType = typeof(System.DateTime);
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.Location = new System.Drawing.Point(185, 16);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(45, 13);
     this.labelControl4.TabIndex = 213269;
     this.labelControl4.Text = "DSS Date";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.grdDetails);
     this.groupControl3.Location = new System.Drawing.Point(2, 80);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(763, 266);
     this.groupControl3.TabIndex = 213278;
     this.groupControl3.Text = "Details";
     //
     // grdDetails
     //
     this.grdDetails.AllowAddNew = true;
     this.grdDetails.CaptionHeight = 17;
     this.grdDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdDetails.Images"))));
     this.grdDetails.LinesPerRow = 1;
     this.grdDetails.Location = new System.Drawing.Point(2, 21);
     this.grdDetails.Name = "grdDetails";
     this.grdDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdDetails.PrintInfo.PageSettings")));
     this.grdDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdDetails.RowHeight = 23;
     this.grdDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdDetails.Size = new System.Drawing.Size(759, 243);
     this.grdDetails.TabIndex = 10;
     this.grdDetails.Text = "c1TrueDBGrid1";
     this.grdDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdDetails.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdDetails_AfterColUpdate);
     this.grdDetails.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdDetails_KeyPress);
     this.grdDetails.PropBag = resources.GetString("grdDetails.PropBag");
     //
     // groupControl2
     //
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.lblTotalInv);
     this.groupControl2.Controls.Add(this.btnPost);
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnSave);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Controls.Add(this.btnEdit);
     this.groupControl2.Controls.Add(this.btnDelete);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 422);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(766, 42);
     this.groupControl2.TabIndex = 213279;
     //
     // lblTotalInv
     //
     this.lblTotalInv.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.lblTotalInv.Location = new System.Drawing.Point(266, 17);
     this.lblTotalInv.Name = "lblTotalInv";
     this.lblTotalInv.Size = new System.Drawing.Size(0, 13);
     this.lblTotalInv.TabIndex = 213270;
     //
     // btnPost
     //
     this.btnPost.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(89, 5);
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(82, 32);
     toolTipItem3.Text = "Remove Module";
     superToolTip6.Items.Add(toolTipItem3);
     this.btnPost.SuperTip = superToolTip6;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = "&Close DSS";
     this.btnPost.Click += new System.EventHandler(this.btnPost_Click);
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(704, 5);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Close Modules List";
     superToolTip7.Items.Add(toolTipItem4);
     this.btnExit.SuperTip = superToolTip7;
     this.btnExit.TabIndex = 19;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave.Location = new System.Drawing.Point(581, 5);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem5.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem5);
     this.btnSave.SuperTip = superToolTip8;
     this.btnSave.TabIndex = 17;
     this.btnSave.Text = " &Save ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(5, 5);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(82, 32);
     toolTipItem6.Text = "Add New Module";
     superToolTip9.Items.Add(toolTipItem6);
     this.btnAdd.SuperTip = superToolTip9;
     this.btnAdd.TabIndex = 15;
     this.btnAdd.Text = " &Collection";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(643, 5);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem7.Text = "Cancel Current Operation";
     superToolTip10.Items.Add(toolTipItem7);
     this.btnCancel.SuperTip = superToolTip10;
     this.btnCancel.TabIndex = 18;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit.Location = new System.Drawing.Point(233, 5);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem8.Text = "Edit Module Details";
     superToolTip11.Items.Add(toolTipItem8);
     this.btnEdit.SuperTip = superToolTip11;
     this.btnEdit.TabIndex = 16;
     this.btnEdit.Text = " &Edit ";
     this.btnEdit.Visible = false;
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(173, 5);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem9.Text = "Remove Module";
     superToolTip12.Items.Add(toolTipItem9);
     this.btnDelete.SuperTip = superToolTip12;
     this.btnDelete.TabIndex = 4;
     this.btnDelete.Text = "&Del";
     this.btnDelete.Visible = false;
     //
     // txtTotal
     //
     this.txtTotal.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtTotal.EditValue = "0.00";
     this.txtTotal.Enabled = false;
     this.txtTotal.Location = new System.Drawing.Point(44, 350);
     this.txtTotal.Name = "txtTotal";
     this.txtTotal.Properties.MaxLength = 30;
     this.txtTotal.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtTotal.Size = new System.Drawing.Size(70, 20);
     this.txtTotal.TabIndex = 213280;
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.Location = new System.Drawing.Point(7, 353);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(24, 13);
     this.labelControl5.TabIndex = 213280;
     this.labelControl5.Text = "Total";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.Location = new System.Drawing.Point(118, 353);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(24, 13);
     this.labelControl6.TabIndex = 213281;
     this.labelControl6.Text = "Cash";
     //
     // txtCash
     //
     this.txtCash.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtCash.EditValue = "0.00";
     this.txtCash.Enabled = false;
     this.txtCash.Location = new System.Drawing.Point(145, 350);
     this.txtCash.Name = "txtCash";
     this.txtCash.Properties.MaxLength = 30;
     this.txtCash.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtCash.Size = new System.Drawing.Size(70, 20);
     this.txtCash.TabIndex = 213282;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.Location = new System.Drawing.Point(217, 353);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(37, 13);
     this.labelControl7.TabIndex = 213283;
     this.labelControl7.Text = "Cheque";
     //
     // txtCheque
     //
     this.txtCheque.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtCheque.EditValue = "0.00";
     this.txtCheque.Enabled = false;
     this.txtCheque.Location = new System.Drawing.Point(256, 350);
     this.txtCheque.Name = "txtCheque";
     this.txtCheque.Properties.MaxLength = 30;
     this.txtCheque.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtCheque.Size = new System.Drawing.Size(70, 20);
     this.txtCheque.TabIndex = 213284;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.Location = new System.Drawing.Point(328, 354);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(33, 13);
     this.labelControl8.TabIndex = 213285;
     this.labelControl8.Text = "Return";
     //
     // txtReturn
     //
     this.txtReturn.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtReturn.EditValue = "0.00";
     this.txtReturn.Enabled = false;
     this.txtReturn.Location = new System.Drawing.Point(364, 350);
     this.txtReturn.Name = "txtReturn";
     this.txtReturn.Properties.MaxLength = 30;
     this.txtReturn.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtReturn.Size = new System.Drawing.Size(70, 20);
     this.txtReturn.TabIndex = 213286;
     //
     // labelControl9
     //
     this.labelControl9.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl9.Location = new System.Drawing.Point(435, 354);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(29, 13);
     this.labelControl9.TabIndex = 213287;
     this.labelControl9.Text = "Credit";
     //
     // txtCredit
     //
     this.txtCredit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtCredit.EditValue = "0.00";
     this.txtCredit.Enabled = false;
     this.txtCredit.Location = new System.Drawing.Point(473, 350);
     this.txtCredit.Name = "txtCredit";
     this.txtCredit.Properties.MaxLength = 30;
     this.txtCredit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtCredit.Size = new System.Drawing.Size(70, 20);
     this.txtCredit.TabIndex = 213288;
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.Location = new System.Drawing.Point(547, 354);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(22, 13);
     this.labelControl10.TabIndex = 213289;
     this.labelControl10.Text = "Rec.";
     //
     // txtReciept
     //
     this.txtReciept.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtReciept.EditValue = "0.00";
     this.txtReciept.Enabled = false;
     this.txtReciept.Location = new System.Drawing.Point(569, 350);
     this.txtReciept.Name = "txtReciept";
     this.txtReciept.Properties.MaxLength = 30;
     this.txtReciept.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtReciept.Size = new System.Drawing.Size(70, 20);
     this.txtReciept.TabIndex = 213290;
     //
     // labelControl11
     //
     this.labelControl11.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl11.Location = new System.Drawing.Point(642, 353);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(37, 13);
     this.labelControl11.TabIndex = 213291;
     this.labelControl11.Text = "Balance";
     //
     // txtBalance
     //
     this.txtBalance.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtBalance.EditValue = "0.00";
     this.txtBalance.Enabled = false;
     this.txtBalance.Location = new System.Drawing.Point(694, 350);
     this.txtBalance.Name = "txtBalance";
     this.txtBalance.Properties.MaxLength = 30;
     this.txtBalance.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtBalance.Size = new System.Drawing.Size(70, 20);
     this.txtBalance.TabIndex = 213292;
     //
     // labelControl12
     //
     this.labelControl12.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl12.Location = new System.Drawing.Point(217, 374);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(30, 13);
     this.labelControl12.TabIndex = 213293;
     this.labelControl12.Text = "Online";
     //
     // txtOnline
     //
     this.txtOnline.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtOnline.EditValue = "0.00";
     this.txtOnline.Enabled = false;
     this.txtOnline.Location = new System.Drawing.Point(256, 373);
     this.txtOnline.Name = "txtOnline";
     this.txtOnline.Properties.MaxLength = 30;
     this.txtOnline.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtOnline.Size = new System.Drawing.Size(69, 20);
     this.txtOnline.TabIndex = 213294;
     //
     // CreditNote
     //
     this.CreditNote.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.CreditNote.Location = new System.Drawing.Point(642, 378);
     this.CreditNote.Name = "CreditNote";
     this.CreditNote.Size = new System.Drawing.Size(52, 13);
     this.CreditNote.TabIndex = 213295;
     this.CreditNote.Text = "CreditNote";
     //
     // txtCreditNote
     //
     this.txtCreditNote.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtCreditNote.EditValue = "0.00";
     this.txtCreditNote.Enabled = false;
     this.txtCreditNote.Location = new System.Drawing.Point(694, 374);
     this.txtCreditNote.Name = "txtCreditNote";
     this.txtCreditNote.Properties.MaxLength = 30;
     this.txtCreditNote.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtCreditNote.Size = new System.Drawing.Size(70, 20);
     this.txtCreditNote.TabIndex = 213296;
     //
     // Pending
     //
     this.Pending.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Pending.Location = new System.Drawing.Point(435, 376);
     this.Pending.Name = "Pending";
     this.Pending.Size = new System.Drawing.Size(38, 13);
     this.Pending.TabIndex = 213297;
     this.Pending.Text = "Pending";
     //
     // txtPending
     //
     this.txtPending.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPending.EditValue = "0.00";
     this.txtPending.Enabled = false;
     this.txtPending.Location = new System.Drawing.Point(474, 374);
     this.txtPending.Name = "txtPending";
     this.txtPending.Properties.MaxLength = 30;
     this.txtPending.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtPending.Size = new System.Drawing.Size(70, 20);
     this.txtPending.TabIndex = 213298;
     //
     // labelControl13
     //
     this.labelControl13.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl13.Location = new System.Drawing.Point(547, 378);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(16, 13);
     this.labelControl13.TabIndex = 213299;
     this.labelControl13.Text = "S.B";
     //
     // txtSB
     //
     this.txtSB.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtSB.EditValue = "0.00";
     this.txtSB.Enabled = false;
     this.txtSB.Location = new System.Drawing.Point(569, 374);
     this.txtSB.Name = "txtSB";
     this.txtSB.Properties.MaxLength = 30;
     this.txtSB.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtSB.Size = new System.Drawing.Size(70, 20);
     this.txtSB.TabIndex = 213300;
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.Location = new System.Drawing.Point(7, 374);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(29, 13);
     this.labelControl14.TabIndex = 213301;
     this.labelControl14.Text = "Chq R";
     //
     // txtchqRoun
     //
     this.txtchqRoun.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtchqRoun.EditValue = "0.00";
     this.txtchqRoun.Enabled = false;
     this.txtchqRoun.Location = new System.Drawing.Point(44, 371);
     this.txtchqRoun.Name = "txtchqRoun";
     this.txtchqRoun.Properties.MaxLength = 30;
     this.txtchqRoun.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtchqRoun.Size = new System.Drawing.Size(70, 20);
     this.txtchqRoun.TabIndex = 213302;
     //
     // txtComm
     //
     this.txtComm.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtComm.EditValue = "0.00";
     this.txtComm.Enabled = false;
     this.txtComm.Location = new System.Drawing.Point(364, 372);
     this.txtComm.Name = "txtComm";
     this.txtComm.Properties.MaxLength = 30;
     this.txtComm.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtComm.Size = new System.Drawing.Size(70, 20);
     this.txtComm.TabIndex = 213304;
     //
     // labelControl15
     //
     this.labelControl15.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl15.Location = new System.Drawing.Point(328, 375);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(33, 13);
     this.labelControl15.TabIndex = 213303;
     this.labelControl15.Text = "Comm.";
     //
     // txtIns
     //
     this.txtIns.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtIns.EditValue = "0.00";
     this.txtIns.Enabled = false;
     this.txtIns.Location = new System.Drawing.Point(144, 372);
     this.txtIns.Name = "txtIns";
     this.txtIns.Properties.MaxLength = 30;
     this.txtIns.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtIns.Size = new System.Drawing.Size(70, 20);
     this.txtIns.TabIndex = 213306;
     //
     // labelControl16
     //
     this.labelControl16.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl16.Location = new System.Drawing.Point(118, 375);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(15, 13);
     this.labelControl16.TabIndex = 213305;
     this.labelControl16.Text = "Ins";
     //
     // labelControl17
     //
     this.labelControl17.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl17.Location = new System.Drawing.Point(642, 400);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(18, 13);
     this.labelControl17.TabIndex = 213307;
     this.labelControl17.Text = "Tax";
     //
     // txtTax
     //
     this.txtTax.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtTax.EditValue = "0.00";
     this.txtTax.Enabled = false;
     this.txtTax.Location = new System.Drawing.Point(694, 397);
     this.txtTax.Name = "txtTax";
     this.txtTax.Properties.MaxLength = 30;
     this.txtTax.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.txtTax.Size = new System.Drawing.Size(70, 20);
     this.txtTax.TabIndex = 213308;
     //
     // frmCashCollection
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(766, 464);
     this.Controls.Add(this.labelControl17);
     this.Controls.Add(this.txtTax);
     this.Controls.Add(this.labelControl16);
     this.Controls.Add(this.txtIns);
     this.Controls.Add(this.labelControl13);
     this.Controls.Add(this.txtSB);
     this.Controls.Add(this.txtComm);
     this.Controls.Add(this.labelControl15);
     this.Controls.Add(this.Pending);
     this.Controls.Add(this.labelControl14);
     this.Controls.Add(this.txtchqRoun);
     this.Controls.Add(this.txtPending);
     this.Controls.Add(this.CreditNote);
     this.Controls.Add(this.txtCreditNote);
     this.Controls.Add(this.labelControl12);
     this.Controls.Add(this.txtOnline);
     this.Controls.Add(this.labelControl11);
     this.Controls.Add(this.txtBalance);
     this.Controls.Add(this.labelControl10);
     this.Controls.Add(this.txtReciept);
     this.Controls.Add(this.labelControl9);
     this.Controls.Add(this.txtCredit);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this.txtReturn);
     this.Controls.Add(this.labelControl7);
     this.Controls.Add(this.txtCheque);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.txtCash);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.groupControl5);
     this.MaximizeBox = false;
     this.Name = "frmCashCollection";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Cash Collection";
     this.Load += new System.EventHandler(this.frmCashCollection_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDriverName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDeliveryManName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCash.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCheque.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReturn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCredit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReciept.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOnline.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditNote.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPending.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtchqRoun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtComm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIns.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTax.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#30
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
            this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();

            this.dsCustomers1        = new tutorial_4.DSCustomers();
            this.button1             = new System.Windows.Forms.Button();
            this.button2             = new System.Windows.Forms.Button();
            this.button3             = new System.Windows.Forms.Button();
            this.button4             = new System.Windows.Forms.Button();
            this.button5             = new System.Windows.Forms.Button();
            this.button6             = new System.Windows.Forms.Button();
            this.button7             = new System.Windows.Forms.Button();
            this.textBox1            = new System.Windows.Forms.TextBox();
            this.textBox2            = new System.Windows.Forms.TextBox();
            this.textBox3            = new System.Windows.Forms.TextBox();
            this.listBox1            = new System.Windows.Forms.ListBox();
            this.label1              = new System.Windows.Forms.Label();
            this.label2              = new System.Windows.Forms.Label();
            this.label3              = new System.Windows.Forms.Label();
            this.label4              = new System.Windows.Forms.Label();
            this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
            this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
            this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsCustomers1)).BeginInit();
            this.SuspendLayout();
            //
            // c1TrueDBGrid1
            //
            this.c1TrueDBGrid1.AllowAddNew    = true;
            this.c1TrueDBGrid1.AllowDelete    = true;
            this.c1TrueDBGrid1.Caption        = "C1True DBGrid .Net";
            this.c1TrueDBGrid1.CaptionHeight  = 17;
            this.c1TrueDBGrid1.DataMember     = "Customer";
            this.c1TrueDBGrid1.DataSource     = this.dsCustomers1;
            this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
            this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
            this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 8);
            this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
            this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
            this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
            this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
            this.c1TrueDBGrid1.RowHeight              = 15;
            this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(384, 224);
            this.c1TrueDBGrid1.TabIndex               = 0;
            this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Company\" Da" +
                                                        "taField=\"Company\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=" +
                                                        "\"0\" Caption=\"Contacted\" DataField=\"Contacted\"><ValueItems /><GroupInfo /></C1Dat" +
                                                        "aColumn><C1DataColumn Level=\"0\" Caption=\"FirstName\" DataField=\"FirstName\"><Value" +
                                                        "Items /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"LastName\" D" +
                                                        "ataField=\"LastName\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Leve" +
                                                        "l=\"0\" Caption=\"Phone\" DataField=\"Phone\"><ValueItems /><GroupInfo /></C1DataColum" +
                                                        "n><C1DataColumn Level=\"0\" Caption=\"UserCode\" DataField=\"UserCode\"><ValueItems />" +
                                                        "<GroupInfo /></C1DataColumn></DataCols><Styles type=\"C1.Win.C1TrueDBGrid.Design." +
                                                        "ContextWrapper\"><Data>Style39{}Style50{}Style51{}Caption{AlignHorz:Center;}Style" +
                                                        "27{AlignHorz:Near;}Normal{}Style25{}Style24{}Editor{}Style48{}Style18{AlignHorz:" +
                                                        "Far;}Style19{AlignHorz:Far;}Style14{AlignHorz:Near;}Style15{AlignHorz:Near;}Styl" +
                                                        "e16{}Style17{}Style10{AlignHorz:Near;}Style11{}OddRow{}Style13{}Style42{}Style43" +
                                                        "{}Style44{}Style45{}Style46{}Style47{}Style38{}Style12{}Style29{}Style28{}Highli" +
                                                        "ghtRow{ForeColor:HighlightText;BackColor:Highlight;}Style26{AlignHorz:Near;}Reco" +
                                                        "rdSelector{AlignImage:Center;}Footer{}Style23{AlignHorz:Near;}Style22{AlignHorz:" +
                                                        "Near;}Style21{}Style20{}Group{AlignVert:Center;Border:None,,0, 0, 0, 0;BackColor" +
                                                        ":ControlDark;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}" +
                                                        "EvenRow{BackColor:Aqua;}Heading{Wrap:True;BackColor:Control;Border:Raised,,1, 1," +
                                                        " 1, 1;ForeColor:ControlText;AlignVert:Center;}Style49{}Style3{}Style5{}Style41{}" +
                                                        "Style7{}Style6{}FilterBar{}Style40{}Selected{ForeColor:HighlightText;BackColor:H" +
                                                        "ighlight;}Style4{}Style9{}Style8{}Style1{}Style36{}Style37{}Style34{AlignHorz:Ne" +
                                                        "ar;}Style35{AlignHorz:Near;}Style32{}Style33{}Style30{AlignHorz:Far;}Style31{Ali" +
                                                        "gnHorz:Far;}Style2{}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView Name=" +
                                                        "\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight=\"17\" MarqueeSt" +
                                                        "yle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRecSelWidth=\"17\" VerticalScro" +
                                                        "llGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 17, 380, 203</ClientRect><B" +
                                                        "orderSide>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"Style10\" /><EditorStyl" +
                                                        "e parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"Style8\" /><Fi" +
                                                        "lterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"Footer\" me=\"" +
                                                        "Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle parent=\"Headin" +
                                                        "g\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\" /><Inactiv" +
                                                        "eStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style9\" " +
                                                        "/><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><SelectedStyle par" +
                                                        "ent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /><internalCols>" +
                                                        "<C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style14\" /><Style parent=\"Sty" +
                                                        "le1\" me=\"Style15\" /><FooterStyle parent=\"Style3\" me=\"Style16\" /><EditorStyle par" +
                                                        "ent=\"Style5\" me=\"Style17\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style41\" /><Gr" +
                                                        "oupFooterStyle parent=\"Style1\" me=\"Style40\" /><Visible>True</Visible><ColumnDivi" +
                                                        "der>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>0</DCIdx></C1Displa" +
                                                        "yColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style18\" /><Style par" +
                                                        "ent=\"Style1\" me=\"Style19\" /><FooterStyle parent=\"Style3\" me=\"Style20\" /><EditorS" +
                                                        "tyle parent=\"Style5\" me=\"Style21\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style4" +
                                                        "3\" /><GroupFooterStyle parent=\"Style1\" me=\"Style42\" /><Visible>True</Visible><Co" +
                                                        "lumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>1</DCIdx></" +
                                                        "C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style22\" /><S" +
                                                        "tyle parent=\"Style1\" me=\"Style23\" /><FooterStyle parent=\"Style3\" me=\"Style24\" />" +
                                                        "<EditorStyle parent=\"Style5\" me=\"Style25\" /><GroupHeaderStyle parent=\"Style1\" me" +
                                                        "=\"Style45\" /><GroupFooterStyle parent=\"Style1\" me=\"Style44\" /><Visible>True</Vis" +
                                                        "ible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>2</" +
                                                        "DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style" +
                                                        "26\" /><Style parent=\"Style1\" me=\"Style27\" /><FooterStyle parent=\"Style3\" me=\"Sty" +
                                                        "le28\" /><EditorStyle parent=\"Style5\" me=\"Style29\" /><GroupHeaderStyle parent=\"St" +
                                                        "yle1\" me=\"Style47\" /><GroupFooterStyle parent=\"Style1\" me=\"Style46\" /><Visible>T" +
                                                        "rue</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><D" +
                                                        "CIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" m" +
                                                        "e=\"Style30\" /><Style parent=\"Style1\" me=\"Style31\" /><FooterStyle parent=\"Style3\"" +
                                                        " me=\"Style32\" /><EditorStyle parent=\"Style5\" me=\"Style33\" /><GroupHeaderStyle pa" +
                                                        "rent=\"Style1\" me=\"Style49\" /><GroupFooterStyle parent=\"Style1\" me=\"Style48\" /><V" +
                                                        "isible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</H" +
                                                        "eight><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"S" +
                                                        "tyle2\" me=\"Style34\" /><Style parent=\"Style1\" me=\"Style35\" /><FooterStyle parent=" +
                                                        "\"Style3\" me=\"Style36\" /><EditorStyle parent=\"Style5\" me=\"Style37\" /><GroupHeader" +
                                                        "Style parent=\"Style1\" me=\"Style51\" /><GroupFooterStyle parent=\"Style1\" me=\"Style" +
                                                        "50\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Heig" +
                                                        "ht>15</Height><DCIdx>5</DCIdx></C1DisplayColumn></internalCols></C1.Win.C1TrueDB" +
                                                        "Grid.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /><Style paren" +
                                                        "t=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /><Style parent=\"H" +
                                                        "eading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /><Style parent=\"No" +
                                                        "rmal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal" +
                                                        "\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Norma" +
                                                        "l\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><Style parent=\"No" +
                                                        "rmal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></NamedStyles><vertS" +
                                                        "plits>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified</Layout><DefaultR" +
                                                        "ecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 380, 220</ClientArea><PrintP" +
                                                        "ageHeaderStyle parent=\"\" me=\"Style38\" /><PrintPageFooterStyle parent=\"\" me=\"Styl" +
                                                        "e39\" /></Blob>";
            //
            // dsCustomers1
            //
            this.dsCustomers1.DataSetName = "DSCustomers";
            this.dsCustomers1.Locale      = new System.Globalization.CultureInfo("en-US");
            this.dsCustomers1.Namespace   = "http://www.tempuri.org/DSCustomers.xsd";
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(408, 24);
            this.button1.Name     = "button1";
            this.button1.Size     = new System.Drawing.Size(88, 32);
            this.button1.TabIndex = 1;
            this.button1.Text     = "&Update";
            this.button1.Click   += new System.EventHandler(this.button1_Click);
            //
            // button2
            //
            this.button2.Location = new System.Drawing.Point(408, 64);
            this.button2.Name     = "button2";
            this.button2.Size     = new System.Drawing.Size(88, 32);
            this.button2.TabIndex = 2;
            this.button2.Text     = "&Delete";
            this.button2.Click   += new System.EventHandler(this.button2_Click);
            //
            // button3
            //
            this.button3.Location = new System.Drawing.Point(408, 104);
            this.button3.Name     = "button3";
            this.button3.Size     = new System.Drawing.Size(88, 32);
            this.button3.TabIndex = 3;
            this.button3.Text     = "&Add New";
            this.button3.Click   += new System.EventHandler(this.button3_Click);
            //
            // button4
            //
            this.button4.Location = new System.Drawing.Point(408, 168);
            this.button4.Name     = "button4";
            this.button4.Size     = new System.Drawing.Size(88, 32);
            this.button4.TabIndex = 4;
            this.button4.Text     = "&First";
            this.button4.Click   += new System.EventHandler(this.button4_Click);
            //
            // button5
            //
            this.button5.Location = new System.Drawing.Point(408, 208);
            this.button5.Name     = "button5";
            this.button5.Size     = new System.Drawing.Size(88, 32);
            this.button5.TabIndex = 5;
            this.button5.Text     = "&Next";
            this.button5.Click   += new System.EventHandler(this.button5_Click);
            //
            // button6
            //
            this.button6.Location = new System.Drawing.Point(408, 248);
            this.button6.Name     = "button6";
            this.button6.Size     = new System.Drawing.Size(88, 32);
            this.button6.TabIndex = 6;
            this.button6.Text     = "&Previous";
            this.button6.Click   += new System.EventHandler(this.button6_Click);
            //
            // button7
            //
            this.button7.Location = new System.Drawing.Point(408, 288);
            this.button7.Name     = "button7";
            this.button7.Size     = new System.Drawing.Size(88, 32);
            this.button7.TabIndex = 7;
            this.button7.Text     = "&Last";
            this.button7.Click   += new System.EventHandler(this.button7_Click);
            //
            // textBox1
            //
            this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsCustomers1, "Customer.FirstName"));
            this.textBox1.Location = new System.Drawing.Point(168, 264);
            this.textBox1.Name     = "textBox1";
            this.textBox1.Size     = new System.Drawing.Size(184, 20);
            this.textBox1.TabIndex = 8;
            this.textBox1.Text     = "textBox1";
            //
            // textBox2
            //
            this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsCustomers1, "Customer.LastName"));
            this.textBox2.Location = new System.Drawing.Point(168, 312);
            this.textBox2.Name     = "textBox2";
            this.textBox2.Size     = new System.Drawing.Size(184, 20);
            this.textBox2.TabIndex = 9;
            this.textBox2.Text     = "textBox2";
            //
            // textBox3
            //
            this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dsCustomers1, "Customer.Company"));
            this.textBox3.Location = new System.Drawing.Point(168, 360);
            this.textBox3.Name     = "textBox3";
            this.textBox3.Size     = new System.Drawing.Size(184, 20);
            this.textBox3.TabIndex = 10;
            this.textBox3.Text     = "textBox3";
            //
            // listBox1
            //
            this.listBox1.DataSource    = this.dsCustomers1;
            this.listBox1.DisplayMember = "Customer.LastName";
            this.listBox1.Location      = new System.Drawing.Point(8, 264);
            this.listBox1.Name          = "listBox1";
            this.listBox1.Size          = new System.Drawing.Size(120, 121);
            this.listBox1.TabIndex      = 11;
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(168, 248);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(120, 16);
            this.label1.TabIndex = 12;
            this.label1.Text     = "First Name:";
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(168, 296);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(128, 16);
            this.label2.TabIndex = 13;
            this.label2.Text     = "Last Name:";
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(168, 344);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(56, 16);
            this.label3.TabIndex = 14;
            this.label3.Text     = "Company:";
            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(8, 248);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(120, 16);
            this.label4.TabIndex = 15;
            this.label4.Text     = "Last Name List:";
            //
            // oleDbDataAdapter1
            //
            this.oleDbDataAdapter1.DeleteCommand = this.oleDbDeleteCommand1;
            this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
            this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
            this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "Customer", new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("UserCode", "UserCode"),
                    new System.Data.Common.DataColumnMapping("LastName", "LastName"),
                    new System.Data.Common.DataColumnMapping("FirstName", "FirstName"),
                    new System.Data.Common.DataColumnMapping("Company", "Company"),
                    new System.Data.Common.DataColumnMapping("Contacted", "Contacted"),
                    new System.Data.Common.DataColumnMapping("Phone", "Phone")
                })
            });
            this.oleDbDataAdapter1.UpdateCommand = this.oleDbUpdateCommand1;
            //
            // oleDbDeleteCommand1
            //
            this.oleDbDeleteCommand1.CommandText = "DELETE FROM Customer\r\nWHERE        (UserCode = ?)";
            this.oleDbDeleteCommand1.Connection  = this.oleDbConnection1;
            this.oleDbDeleteCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
                new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.WChar, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "UserCode", System.Data.DataRowVersion.Original, null)
            });
            //
            // oleDbConnection1
            //
            this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=5;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
            //
            // oleDbInsertCommand1
            //
            this.oleDbInsertCommand1.CommandText = "INSERT INTO Customer(Company, Contacted, FirstName, LastName, Phone, UserCode) VA" +
                                                   "LUES (?, ?, ?, ?, ?, ?)";
            this.oleDbInsertCommand1.Connection = this.oleDbConnection1;
            this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
                new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.VarWChar, 30, "Company"),
                new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.DBDate, 0, "Contacted"),
                new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, "FirstName"),
                new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.VarWChar, 15, "LastName"),
                new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((byte)(15)), ((byte)(0)), "Phone", System.Data.DataRowVersion.Current, null),
                new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, "UserCode")
            });
            //
            // oleDbSelectCommand1
            //
            this.oleDbSelectCommand1.CommandText = "SELECT Company, Contacted, FirstName, LastName, Phone, UserCode FROM Customer";
            this.oleDbSelectCommand1.Connection  = this.oleDbConnection1;
            //
            // oleDbUpdateCommand1
            //
            this.oleDbUpdateCommand1.CommandText = "UPDATE       Customer\r\nSET                LastName = ?, FirstName = ?, Company = " +
                                                   "?, Contacted = ?, Phone = ?\r\nWHERE        (UserCode = ?)";
            this.oleDbUpdateCommand1.Connection = this.oleDbConnection1;
            this.oleDbUpdateCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
                new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.WChar, 15, "LastName"),
                new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.WChar, 10, "FirstName"),
                new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.WChar, 30, "Company"),
                new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.Date, 0, "Contacted"),
                new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((byte)(15)), ((byte)(0)), "Phone", System.Data.DataRowVersion.Current, null),
                new System.Data.OleDb.OleDbParameter("Original_UserCode", System.Data.OleDb.OleDbType.WChar, 4, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "UserCode", System.Data.DataRowVersion.Original, null)
            });
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(504, 397);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.label4,
                this.label3,
                this.label2,
                this.label1,
                this.listBox1,
                this.textBox3,
                this.textBox2,
                this.textBox1,
                this.button7,
                this.button6,
                this.button5,
                this.button4,
                this.button3,
                this.button2,
                this.button1,
                this.c1TrueDBGrid1
            });
            this.Name  = "Form1";
            this.Text  = "Tutorial 04";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsCustomers1)).EndInit();
            this.ResumeLayout(false);
        }
示例#31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(InvalidCPO));
     this.btnClose            = new System.Windows.Forms.Button();
     this.tgridOverCapacityWC = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.lblMessage          = new System.Windows.Forms.Label();
     this.ctxmnuClipboard     = new System.Windows.Forms.ContextMenu();
     this.mnuCopy             = new System.Windows.Forms.MenuItem();
     this.mnuSelectAll        = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.tgridOverCapacityWC)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.btnClose.Location     = new System.Drawing.Point(566, 374);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(60, 22);
     this.btnClose.TabIndex     = 60;
     this.btnClose.Text         = "&Close";
     //
     // tgridOverCapacityWC
     //
     this.tgridOverCapacityWC.AllowUpdate = false;
     this.tgridOverCapacityWC.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.tgridOverCapacityWC.CaptionHeight  = 17;
     this.tgridOverCapacityWC.CollapseColor  = System.Drawing.Color.Black;
     this.tgridOverCapacityWC.ContextMenu    = this.ctxmnuClipboard;
     this.tgridOverCapacityWC.ExpandColor    = System.Drawing.Color.Black;
     this.tgridOverCapacityWC.GroupByCaption = "Drag a column header here to group by that column";
     this.tgridOverCapacityWC.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
     this.tgridOverCapacityWC.Location                    = new System.Drawing.Point(6, 32);
     this.tgridOverCapacityWC.MarqueeStyle                = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.tgridOverCapacityWC.Name                        = "tgridOverCapacityWC";
     this.tgridOverCapacityWC.PreviewInfo.Location        = new System.Drawing.Point(0, 0);
     this.tgridOverCapacityWC.PreviewInfo.Size            = new System.Drawing.Size(0, 0);
     this.tgridOverCapacityWC.PreviewInfo.ZoomFactor      = 75;
     this.tgridOverCapacityWC.PrintInfo.ShowOptionsDialog = false;
     this.tgridOverCapacityWC.RecordSelectorWidth         = 16;
     this.tgridOverCapacityWC.RowDivider.Color            = System.Drawing.Color.DarkGray;
     this.tgridOverCapacityWC.RowDivider.Style            = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.tgridOverCapacityWC.RowHeight                   = 15;
     this.tgridOverCapacityWC.RowSubDividerColor          = System.Drawing.Color.DarkGray;
     this.tgridOverCapacityWC.Size                        = new System.Drawing.Size(620, 334);
     this.tgridOverCapacityWC.TabIndex                    = 59;
     this.tgridOverCapacityWC.PropBag                     = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"CPO No\" Dat" +
                                                            "aField=\"CPOID\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\"" +
                                                            " Caption=\"WOLineID\" DataField=\"WorkOrderDetailID\"><ValueItems /><GroupInfo /></C" +
                                                            "1DataColumn><C1DataColumn Level=\"0\" Caption=\"Start Date\" DataField=\"StartDate\"><" +
                                                            "ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Due Da" +
                                                            "te\" DataField=\"DueDate\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn " +
                                                            "Level=\"0\" Caption=\"Quantity\" DataField=\"Quantity\"><ValueItems /><GroupInfo /></C" +
                                                            "1DataColumn><C1DataColumn Level=\"0\" Caption=\"Error Reason\" DataField=\"ErrorReaso" +
                                                            "n\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Pa" +
                                                            "rt Number\" DataField=\"Code\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataCol" +
                                                            "umn Level=\"0\" Caption=\"Part Name\" DataField=\"Description\"><ValueItems /><GroupIn" +
                                                            "fo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Model\" DataField=\"Revision\"" +
                                                            "><ValueItems /><GroupInfo /></C1DataColumn></DataCols><Styles type=\"C1.Win.C1Tru" +
                                                            "eDBGrid.Design.ContextWrapper\"><Data>HighlightRow{ForeColor:HighlightText;BackCo" +
                                                            "lor:Highlight;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;" +
                                                            "}Selected{ForeColor:HighlightText;BackColor:Highlight;}Editor{}FilterBar{}Headin" +
                                                            "g{Wrap:True;AlignVert:Center;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;Bac" +
                                                            "kColor:Control;}Style18{}Style19{}Style14{}Style15{}Style16{AlignHorz:Near;}Styl" +
                                                            "e17{AlignHorz:Near;}Style10{AlignHorz:Near;}Style11{}Style12{}Style13{}Style27{}" +
                                                            "Style29{AlignHorz:Near;}Style28{AlignHorz:Near;}Style26{}Style25{}Style9{}Style8" +
                                                            "{}Style24{}Style23{AlignHorz:Near;}Style5{}Style4{}Style7{}Style6{}Style1{}Style" +
                                                            "22{AlignHorz:Near;}Style3{}Style2{}Style21{}Style20{}OddRow{}Style38{}Style39{}S" +
                                                            "tyle36{}Style37{}Style34{AlignHorz:Near;}Style35{AlignHorz:Near;}Style32{}Style3" +
                                                            "3{}Style30{}Style49{}Style48{}Style31{}Normal{Font:Tahoma, 11world;}Style41{Alig" +
                                                            "nHorz:Near;}Style40{AlignHorz:Near;}Style43{}Style42{}Style45{}Style44{}Style47{" +
                                                            "AlignHorz:Near;}Style46{AlignHorz:Near;}EvenRow{BackColor:Aqua;}Style59{AlignHor" +
                                                            "z:Near;}Style58{AlignHorz:Near;}RecordSelector{AlignImage:Center;}Style51{}Style" +
                                                            "50{}Footer{}Style52{AlignHorz:Near;}Style53{AlignHorz:Near;}Style54{}Style55{}St" +
                                                            "yle56{}Style57{}Caption{AlignHorz:Center;}Style69{}Style68{}Style63{}Style62{}St" +
                                                            "yle61{}Style60{}Style67{}Style66{}Style65{AlignHorz:Near;}Style64{AlignHorz:Near" +
                                                            ";}Group{BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVert:Center;}</Data><" +
                                                            "/Styles><Splits><C1.Win.C1TrueDBGrid.MergeView Name=\"\" AllowRowSizing=\"None\" Cap" +
                                                            "tionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight=\"17\" MarqueeStyle=\"D" +
                                                            "ottedCellBorder\" RecordSelectorWidth=\"16\" DefRecSelWidth=\"16\" VerticalScrollGrou" +
                                                            "p=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 0, 616, 330</ClientRect><BorderSi" +
                                                            "de>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"Style10\" /><EditorStyle paren" +
                                                            "t=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"Style8\" /><FilterBar" +
                                                            "Style parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"Footer\" me=\"Style3\"" +
                                                            " /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle parent=\"Heading\" me=\"" +
                                                            "Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\" /><InactiveStyle " +
                                                            "parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style9\" /><Reco" +
                                                            "rdSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><SelectedStyle parent=\"Se" +
                                                            "lected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /><internalCols><C1Disp" +
                                                            "layColumn><HeadingStyle parent=\"Style2\" me=\"Style22\" /><Style parent=\"Style1\" me" +
                                                            "=\"Style23\" /><FooterStyle parent=\"Style3\" me=\"Style24\" /><EditorStyle parent=\"St" +
                                                            "yle5\" me=\"Style25\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style27\" /><GroupFoot" +
                                                            "erStyle parent=\"Style1\" me=\"Style26\" /><Visible>True</Visible><ColumnDivider>Dar" +
                                                            "kGray,Single</ColumnDivider><Width>62</Width><Height>15</Height><DCIdx>0</DCIdx>" +
                                                            "</C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style28\" />" +
                                                            "<Style parent=\"Style1\" me=\"Style29\" /><FooterStyle parent=\"Style3\" me=\"Style30\" " +
                                                            "/><EditorStyle parent=\"Style5\" me=\"Style31\" /><GroupHeaderStyle parent=\"Style1\" " +
                                                            "me=\"Style33\" /><GroupFooterStyle parent=\"Style1\" me=\"Style32\" /><ColumnDivider>D" +
                                                            "arkGray,Single</ColumnDivider><Height>15</Height><DCIdx>1</DCIdx></C1DisplayColu" +
                                                            "mn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style16\" /><Style parent=\"" +
                                                            "Style1\" me=\"Style17\" /><FooterStyle parent=\"Style3\" me=\"Style18\" /><EditorStyle " +
                                                            "parent=\"Style5\" me=\"Style19\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style21\" />" +
                                                            "<GroupFooterStyle parent=\"Style1\" me=\"Style20\" /><Visible>True</Visible><ColumnD" +
                                                            "ivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>6</DCIdx></C1Dis" +
                                                            "playColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style58\" /><Style " +
                                                            "parent=\"Style1\" me=\"Style59\" /><FooterStyle parent=\"Style3\" me=\"Style60\" /><Edit" +
                                                            "orStyle parent=\"Style5\" me=\"Style61\" /><GroupHeaderStyle parent=\"Style1\" me=\"Sty" +
                                                            "le63\" /><GroupFooterStyle parent=\"Style1\" me=\"Style62\" /><Visible>True</Visible>" +
                                                            "<ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>7</DCIdx" +
                                                            "></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style64\" /" +
                                                            "><Style parent=\"Style1\" me=\"Style65\" /><FooterStyle parent=\"Style3\" me=\"Style66\"" +
                                                            " /><EditorStyle parent=\"Style5\" me=\"Style67\" /><GroupHeaderStyle parent=\"Style1\"" +
                                                            " me=\"Style69\" /><GroupFooterStyle parent=\"Style1\" me=\"Style68\" /><Visible>True</" +
                                                            "Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>" +
                                                            "8</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"St" +
                                                            "yle34\" /><Style parent=\"Style1\" me=\"Style35\" /><FooterStyle parent=\"Style3\" me=\"" +
                                                            "Style36\" /><EditorStyle parent=\"Style5\" me=\"Style37\" /><GroupHeaderStyle parent=" +
                                                            "\"Style1\" me=\"Style39\" /><GroupFooterStyle parent=\"Style1\" me=\"Style38\" /><Visibl" +
                                                            "e>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height" +
                                                            "><DCIdx>2</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2" +
                                                            "\" me=\"Style40\" /><Style parent=\"Style1\" me=\"Style41\" /><FooterStyle parent=\"Styl" +
                                                            "e3\" me=\"Style42\" /><EditorStyle parent=\"Style5\" me=\"Style43\" /><GroupHeaderStyle" +
                                                            " parent=\"Style1\" me=\"Style45\" /><GroupFooterStyle parent=\"Style1\" me=\"Style44\" /" +
                                                            "><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15" +
                                                            "</Height><DCIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent" +
                                                            "=\"Style2\" me=\"Style46\" /><Style parent=\"Style1\" me=\"Style47\" /><FooterStyle pare" +
                                                            "nt=\"Style3\" me=\"Style48\" /><EditorStyle parent=\"Style5\" me=\"Style49\" /><GroupHea" +
                                                            "derStyle parent=\"Style1\" me=\"Style51\" /><GroupFooterStyle parent=\"Style1\" me=\"St" +
                                                            "yle50\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><W" +
                                                            "idth>65</Width><Height>15</Height><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayCo" +
                                                            "lumn><HeadingStyle parent=\"Style2\" me=\"Style52\" /><Style parent=\"Style1\" me=\"Sty" +
                                                            "le53\" /><FooterStyle parent=\"Style3\" me=\"Style54\" /><EditorStyle parent=\"Style5\"" +
                                                            " me=\"Style55\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style57\" /><GroupFooterSty" +
                                                            "le parent=\"Style1\" me=\"Style56\" /><Visible>True</Visible><ColumnDivider>DarkGray" +
                                                            ",Single</ColumnDivider><Width>172</Width><Height>15</Height><DCIdx>5</DCIdx></C1" +
                                                            "DisplayColumn></internalCols></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyl" +
                                                            "es><Style parent=\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"Heading\" /><Style p" +
                                                            "arent=\"Heading\" me=\"Footer\" /><Style parent=\"Heading\" me=\"Caption\" /><Style pare" +
                                                            "nt=\"Heading\" me=\"Inactive\" /><Style parent=\"Normal\" me=\"Selected\" /><Style paren" +
                                                            "t=\"Normal\" me=\"Editor\" /><Style parent=\"Normal\" me=\"HighlightRow\" /><Style paren" +
                                                            "t=\"Normal\" me=\"EvenRow\" /><Style parent=\"Normal\" me=\"OddRow\" /><Style parent=\"He" +
                                                            "ading\" me=\"RecordSelector\" /><Style parent=\"Normal\" me=\"FilterBar\" /><Style pare" +
                                                            "nt=\"Caption\" me=\"Group\" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1<" +
                                                            "/horzSplits><Layout>Modified</Layout><DefaultRecSelWidth>16</DefaultRecSelWidth>" +
                                                            "<ClientArea>0, 0, 616, 330</ClientArea><PrintPageHeaderStyle parent=\"\" me=\"Style" +
                                                            "14\" /><PrintPageFooterStyle parent=\"\" me=\"Style15\" /></Blob>";
     //
     // lblMessage
     //
     this.lblMessage.Location = new System.Drawing.Point(6, 6);
     this.lblMessage.Name     = "lblMessage";
     this.lblMessage.Size     = new System.Drawing.Size(620, 20);
     this.lblMessage.TabIndex = 61;
     this.lblMessage.Text     = "The following CPO and/or Work Order Lines are not valid. Please check and fix bef" +
                                "ore running DCP again !";
     this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ctxmnuClipboard
     //
     this.ctxmnuClipboard.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuSelectAll,
         this.mnuCopy
     });
     //
     // mnuCopy
     //
     this.mnuCopy.Index  = 1;
     this.mnuCopy.Text   = "Copy";
     this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
     //
     // mnuSelectAll
     //
     this.mnuSelectAll.Index  = 0;
     this.mnuSelectAll.Text   = "Select All";
     this.mnuSelectAll.Click += new System.EventHandler(this.mnuSelectAll_Click);
     //
     // InvalidCPO
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(632, 403);
     this.Controls.Add(this.lblMessage);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.tgridOverCapacityWC);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "InvalidCPO";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Invalid CPOs and Work Order Lines";
     this.Load           += new System.EventHandler(this.InvalidCPO_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tgridOverCapacityWC)).EndInit();
     this.ResumeLayout(false);
 }
示例#32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dsComposer1         = new Tutorial14.DsComposer();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsComposer1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.AllowDelete    = true;
     this.c1TrueDBGrid1.Caption        = "C1TrueDBGrid.Net";
     this.c1TrueDBGrid1.CaptionHeight  = 17;
     this.c1TrueDBGrid1.DataMember     = "Composer";
     this.c1TrueDBGrid1.DataSource     = this.dsComposer1;
     this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 8);
     this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
     this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBGrid1.RowHeight              = 15;
     this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(464, 240);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Last\" DataF" +
                                                 "ield=\"Last\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Ca" +
                                                 "ption=\"First\" DataField=\"First\"><ValueItems /><GroupInfo /></C1DataColumn><C1Dat" +
                                                 "aColumn Level=\"0\" Caption=\"Country\" DataField=\"Country\"><ValueItems /><GroupInfo" +
                                                 " /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Birth\" DataField=\"Birth\"><Val" +
                                                 "ueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Death\" Da" +
                                                 "taField=\"Death\"><ValueItems /><GroupInfo /></C1DataColumn></DataCols><Styles typ" +
                                                 "e=\"C1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>RecordSelector{AlignImage:Ce" +
                                                 "nter;}Caption{AlignHorz:Center;}Normal{}Style24{}Editor{}Style18{AlignHorz:Near;" +
                                                 "}Style19{AlignHorz:Near;}Style14{AlignHorz:Far;}Style15{AlignHorz:Far;}Style16{}" +
                                                 "Style17{}Style10{AlignHorz:Near;}Style11{}Style12{}Style13{}Style42{}Style38{}St" +
                                                 "yle37{}Style34{}Style35{}OddRow{}Style29{}Style28{}Style27{AlignHorz:Near;}Style" +
                                                 "26{AlignHorz:Near;}Style25{}Footer{}Style23{AlignHorz:Far;}Style22{AlignHorz:Far" +
                                                 ";}Style21{}Style20{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCap" +
                                                 "tion;}EvenRow{BackColor:Aqua;}Heading{Wrap:True;BackColor:Control;Border:Raised," +
                                                 ",1, 1, 1, 1;ForeColor:ControlText;AlignVert:Center;}Style2{}Style9{}Style6{}Styl" +
                                                 "e1{}Style3{}Style41{}Style40{}Style43{}FilterBar{}Style45{}Selected{ForeColor:Hi" +
                                                 "ghlightText;BackColor:Highlight;}Style4{}Style44{}Style8{}Style39{}Style36{}Styl" +
                                                 "e5{}Group{AlignVert:Center;Border:None,,0, 0, 0, 0;BackColor:ControlDark;}Style7" +
                                                 "{}Style32{}Style33{}Style30{AlignHorz:Near;}Style31{AlignHorz:Near;}HighlightRow" +
                                                 "{ForeColor:HighlightText;BackColor:Highlight;}</Data></Styles><Splits><C1.Win.C1" +
                                                 "TrueDBGrid.MergeView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnF" +
                                                 "ooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRec" +
                                                 "SelWidth=\"17\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 1" +
                                                 "7, 460, 219</ClientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"Style2\" " +
                                                 "me=\"Style10\" /><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"" +
                                                 "EvenRow\" me=\"Style8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><Footer" +
                                                 "Style parent=\"Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><H" +
                                                 "eadingStyle parent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightR" +
                                                 "ow\" me=\"Style7\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle pa" +
                                                 "rent=\"OddRow\" me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Sty" +
                                                 "le11\" /><SelectedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me" +
                                                 "=\"Style1\" /><internalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Sty" +
                                                 "le26\" /><Style parent=\"Style1\" me=\"Style27\" /><FooterStyle parent=\"Style3\" me=\"S" +
                                                 "tyle28\" /><EditorStyle parent=\"Style5\" me=\"Style29\" /><GroupHeaderStyle parent=\"" +
                                                 "Style1\" me=\"Style37\" /><GroupFooterStyle parent=\"Style1\" me=\"Style36\" /><Visible" +
                                                 ">True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height>" +
                                                 "<DCIdx>1</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\"" +
                                                 " me=\"Style30\" /><Style parent=\"Style1\" me=\"Style31\" /><FooterStyle parent=\"Style" +
                                                 "3\" me=\"Style32\" /><EditorStyle parent=\"Style5\" me=\"Style33\" /><GroupHeaderStyle " +
                                                 "parent=\"Style1\" me=\"Style39\" /><GroupFooterStyle parent=\"Style1\" me=\"Style38\" />" +
                                                 "<Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15<" +
                                                 "/Height><DCIdx>0</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=" +
                                                 "\"Style2\" me=\"Style18\" /><Style parent=\"Style1\" me=\"Style19\" /><FooterStyle paren" +
                                                 "t=\"Style3\" me=\"Style20\" /><EditorStyle parent=\"Style5\" me=\"Style21\" /><GroupHead" +
                                                 "erStyle parent=\"Style1\" me=\"Style41\" /><GroupFooterStyle parent=\"Style1\" me=\"Sty" +
                                                 "le40\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><He" +
                                                 "ight>15</Height><DCIdx>2</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle" +
                                                 " parent=\"Style2\" me=\"Style14\" /><Style parent=\"Style1\" me=\"Style15\" /><FooterSty" +
                                                 "le parent=\"Style3\" me=\"Style16\" /><EditorStyle parent=\"Style5\" me=\"Style17\" /><G" +
                                                 "roupHeaderStyle parent=\"Style1\" me=\"Style43\" /><GroupFooterStyle parent=\"Style1\"" +
                                                 " me=\"Style42\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDiv" +
                                                 "ider><Height>15</Height><DCIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><Head" +
                                                 "ingStyle parent=\"Style2\" me=\"Style22\" /><Style parent=\"Style1\" me=\"Style23\" /><F" +
                                                 "ooterStyle parent=\"Style3\" me=\"Style24\" /><EditorStyle parent=\"Style5\" me=\"Style" +
                                                 "25\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style45\" /><GroupFooterStyle parent=" +
                                                 "\"Style1\" me=\"Style44\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</C" +
                                                 "olumnDivider><Height>15</Height><DCIdx>4</DCIdx></C1DisplayColumn></internalCols" +
                                                 "></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"Norm" +
                                                 "al\" /><Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" " +
                                                 "/><Style parent=\"Heading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /" +
                                                 "><Style parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><St" +
                                                 "yle parent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><S" +
                                                 "tyle parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /" +
                                                 "><Style parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></" +
                                                 "NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified" +
                                                 "</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 460, 236</" +
                                                 "ClientArea><PrintPageHeaderStyle parent=\"\" me=\"Style34\" /><PrintPageFooterStyle " +
                                                 "parent=\"\" me=\"Style35\" /></Blob>";
     //
     // dsComposer1
     //
     this.dsComposer1.DataSetName = "DsComposer";
     this.dsComposer1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsComposer1.Namespace   = "http://www.tempuri.org/DsComposer.xsd";
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Composer", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("First", "First"),
             new System.Data.Common.DataColumnMapping("Last", "Last"),
             new System.Data.Common.DataColumnMapping("Country", "Country"),
             new System.Data.Common.DataColumnMapping("Birth", "Birth"),
             new System.Data.Common.DataColumnMapping("Death", "Death")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO Composer(Birth, Country, Death, First, Last) VALUES (?, ?, ?, ?, ?)";
     this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"));
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=4;Jet OLEDB:Database Locking Mode=0;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Birth, Country, Death, First, Last FROM Composer";
     this.oleDbSelectCommand1.Connection  = this.oleDbConnection1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(488, 254);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.c1TrueDBGrid1
     });
     this.Name  = "Form1";
     this.Text  = "Tutorial 14";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsComposer1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEmailManager));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem13 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem14 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem15 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem16 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem17 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem18 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem19 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem20 = new DevExpress.Utils.ToolTipItem();
     DevExpress.XtraEditors.TileItemElement tileItemElement1 = new DevExpress.XtraEditors.TileItemElement();
     this.panel7 = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.navButton4 = new DevExpress.XtraBars.Navigation.NavButton();
     this.navButton6 = new DevExpress.XtraBars.Navigation.NavButton();
     this.navButton5 = new DevExpress.XtraBars.Navigation.NavButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbAddressBook = new DevExpress.XtraTab.XtraTabPage();
     this.panel3 = new System.Windows.Forms.Panel();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddressAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddressCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddressExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddressEdit = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddressSave = new DevExpress.XtraEditors.SimpleButton();
     this.chkDisable = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.txtHomeAddress = new System.Windows.Forms.TextBox();
     this.txtOfficeAddress = new System.Windows.Forms.TextBox();
     this.txtPostalAddress = new System.Windows.Forms.TextBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txtCompanyID = new DevExpress.XtraEditors.TextEdit();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtHomePhone = new DevExpress.XtraEditors.TextEdit();
     this.txtExtension = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtOfficePhone = new DevExpress.XtraEditors.TextEdit();
     this.txtMobileNo2 = new DevExpress.XtraEditors.TextEdit();
     this.txtMobileNo1 = new DevExpress.XtraEditors.TextEdit();
     this.cmbTitle = new System.Windows.Forms.ComboBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnCompanyPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.btnEmailPickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtLastName = new DevExpress.XtraEditors.TextEdit();
     this.txtFirstName = new DevExpress.XtraEditors.TextEdit();
     this.tbEmailManager = new DevExpress.XtraTab.XtraTabPage();
     this.panel9 = new System.Windows.Forms.Panel();
     this.btnMainExit = new DevExpress.XtraEditors.SimpleButton();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tbGroups = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.lblEditGroup = new System.Windows.Forms.LinkLabel();
     this.lblAddNewGroup = new System.Windows.Forms.LinkLabel();
     this.lblContactsFound = new DevExpress.XtraEditors.LabelControl();
     this.panel5 = new System.Windows.Forms.Panel();
     this.btnGroupsCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnGroupsExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnGroupsSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnShowEmails = new DevExpress.XtraEditors.SimpleButton();
     this.grdOrderDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.lbl = new DevExpress.XtraEditors.LabelControl();
     this.cmbManagerEmailGroupd = new System.Windows.Forms.ComboBox();
     this.txtNewGroupName = new DevExpress.XtraEditors.TextEdit();
     this.tbNavigatorSetup = new DevExpress.XtraTab.XtraTabPage();
     this.panel6 = new System.Windows.Forms.Panel();
     this.btnAdd_NavigatorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel_NavigatorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit_NavigatorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.btnEdit_NavigatorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton17 = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave_NavigatorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.grdNavigatorSetup = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.btnLoadParameters_NavigtorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.chkDisabled_NavigatorSetup = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportID_NavigatorSetup = new DevExpress.XtraEditors.TextEdit();
     this.btn = new DevExpress.XtraEditors.SimpleButton();
     this.cmbEmailGroup_NavigatorSetup = new System.Windows.Forms.ComboBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.txtEmailID_NavigatorSetup = new DevExpress.XtraEditors.TextEdit();
     this.cmbFileType_NavigatorSetup = new System.Windows.Forms.ComboBox();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.cmbEmailType_NavigatorSetup = new System.Windows.Forms.ComboBox();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.btnEmailPickList_NavigatorSetup = new DevExpress.XtraEditors.SimpleButton();
     this.tbNavigator = new DevExpress.XtraTab.XtraTabPage();
     this.panel8 = new System.Windows.Forms.Panel();
     this.btnSendEmail_EmailNavigator = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton22 = new DevExpress.XtraEditors.SimpleButton();
     this.chkMarkUnmarkAll = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.grdEmailNavigator = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tileNavPane1 = new DevExpress.XtraBars.Navigation.TileNavPane();
     this.navHome = new DevExpress.XtraBars.Navigation.NavButton();
     this.navAddressBook = new DevExpress.XtraBars.Navigation.NavButton();
     this.navGroups = new DevExpress.XtraBars.Navigation.NavButton();
     this.navNavigatorSetup = new DevExpress.XtraBars.Navigation.NavButton();
     this.navEmailNavigator = new DevExpress.XtraBars.Navigation.NavButton();
     this.tileNavSubItem1 = new DevExpress.XtraBars.Navigation.TileNavSubItem();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tbAddressBook.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkDisable.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHomePhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtExtension.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOfficePhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName.Properties)).BeginInit();
     this.tbEmailManager.SuspendLayout();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tbGroups.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrderDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewGroupName.Properties)).BeginInit();
     this.tbNavigatorSetup.SuspendLayout();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdNavigatorSetup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDisabled_NavigatorSetup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportID_NavigatorSetup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmailID_NavigatorSetup.Properties)).BeginInit();
     this.tbNavigator.SuspendLayout();
     this.panel8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkMarkUnmarkAll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdEmailNavigator)).BeginInit();
     this.SuspendLayout();
     //
     // panel7
     //
     this.panel7.BackColor = System.Drawing.Color.Black;
     this.panel7.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel7.Location = new System.Drawing.Point(0, 0);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(1, 444);
     this.panel7.TabIndex = 15;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Black;
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(758, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1, 444);
     this.panel1.TabIndex = 16;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.Black;
     this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel4.Location = new System.Drawing.Point(1, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(757, 1);
     this.panel4.TabIndex = 17;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Black;
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(1, 443);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(757, 1);
     this.panel2.TabIndex = 17;
     //
     // navButton4
     //
     this.navButton4.Caption = null;
     this.navButton4.Name = "navButton4";
     //
     // navButton6
     //
     this.navButton6.Caption = null;
     this.navButton6.Name = "navButton6";
     //
     // navButton5
     //
     this.navButton5.Caption = null;
     this.navButton5.Name = "navButton5";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.xtraTabControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xtraTabControl1.Appearance.Options.UseFont = true;
     this.xtraTabControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.xtraTabControl1.BorderStylePage = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 51);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tbAddressBook;
     this.xtraTabControl1.ShowTabHeader = DevExpress.Utils.DefaultBoolean.True;
     this.xtraTabControl1.Size = new System.Drawing.Size(763, 400);
     this.xtraTabControl1.TabIndex = 25;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbEmailManager,
     this.tbAddressBook,
     this.tbGroups,
     this.tbNavigatorSetup,
     this.tbNavigator});
     //
     // tbAddressBook
     //
     this.tbAddressBook.Controls.Add(this.panel3);
     this.tbAddressBook.Controls.Add(this.chkDisable);
     this.tbAddressBook.Controls.Add(this.groupControl2);
     this.tbAddressBook.Controls.Add(this.groupControl1);
     this.tbAddressBook.Name = "tbAddressBook";
     this.tbAddressBook.Size = new System.Drawing.Size(757, 372);
     this.tbAddressBook.Text = "Address Book";
     this.tbAddressBook.Leave += new System.EventHandler(this.tbAddressBook_Leave);
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(131)))), ((int)(((byte)(143)))));
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.btnPost);
     this.panel3.Controls.Add(this.btnAddressAdd);
     this.panel3.Controls.Add(this.btnAddressCancel);
     this.panel3.Controls.Add(this.btnAddressExit);
     this.panel3.Controls.Add(this.btnAddressEdit);
     this.panel3.Controls.Add(this.btnDelete);
     this.panel3.Controls.Add(this.btnAddressSave);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel3.Location = new System.Drawing.Point(0, 328);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(757, 44);
     this.panel3.TabIndex = 27;
     //
     // btnPost
     //
     this.btnPost.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(138, 4);
     this.btnPost.LookAndFeel.SkinMaskColor = System.Drawing.Color.White;
     this.btnPost.LookAndFeel.SkinMaskColor2 = System.Drawing.Color.White;
     this.btnPost.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnPost.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(58, 32);
     toolTipItem1.Text = "Edit Module Details";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnPost.SuperTip = superToolTip1;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = " &Post ";
     //
     // btnAddressAdd
     //
     this.btnAddressAdd.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAddressAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAddressAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAddressAdd.Location = new System.Drawing.Point(10, 4);
     this.btnAddressAdd.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnAddressAdd.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAddressAdd.Name = "btnAddressAdd";
     this.btnAddressAdd.Size = new System.Drawing.Size(58, 32);
     toolTipItem2.Text = "Add New Module";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnAddressAdd.SuperTip = superToolTip2;
     this.btnAddressAdd.TabIndex = 15;
     this.btnAddressAdd.Text = " &Add ";
     this.btnAddressAdd.Click += new System.EventHandler(this.btnAddressAdd_Click);
     //
     // btnAddressCancel
     //
     this.btnAddressCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAddressCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnAddressCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAddressCancel.Location = new System.Drawing.Point(622, 4);
     this.btnAddressCancel.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnAddressCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAddressCancel.Name = "btnAddressCancel";
     this.btnAddressCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnAddressCancel.SuperTip = superToolTip3;
     this.btnAddressCancel.TabIndex = 18;
     this.btnAddressCancel.Text = "&Cancel";
     this.btnAddressCancel.Click += new System.EventHandler(this.btnAddressCancel_Click);
     //
     // btnAddressExit
     //
     this.btnAddressExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAddressExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnAddressExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAddressExit.Location = new System.Drawing.Point(686, 4);
     this.btnAddressExit.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnAddressExit.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAddressExit.Name = "btnAddressExit";
     this.btnAddressExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem4.Text = "Close Modules List";
     superToolTip4.Items.Add(toolTipItem4);
     this.btnAddressExit.SuperTip = superToolTip4;
     this.btnAddressExit.TabIndex = 19;
     this.btnAddressExit.Text = "E&xit  ";
     this.btnAddressExit.Click += new System.EventHandler(this.btnAddressExit_Click);
     //
     // btnAddressEdit
     //
     this.btnAddressEdit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAddressEdit.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnAddressEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAddressEdit.Location = new System.Drawing.Point(74, 4);
     this.btnAddressEdit.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnAddressEdit.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAddressEdit.Name = "btnAddressEdit";
     this.btnAddressEdit.Size = new System.Drawing.Size(58, 32);
     toolTipItem5.Text = "Edit Module Details";
     superToolTip5.Items.Add(toolTipItem5);
     this.btnAddressEdit.SuperTip = superToolTip5;
     this.btnAddressEdit.TabIndex = 16;
     this.btnAddressEdit.Text = " &Edit ";
     this.btnAddressEdit.Click += new System.EventHandler(this.btnAddressEdit_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnDelete.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.btnDelete.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnDelete.Location = new System.Drawing.Point(494, 4);
     this.btnDelete.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(58, 32);
     toolTipItem6.Text = "Remove Module";
     superToolTip6.Items.Add(toolTipItem6);
     this.btnDelete.SuperTip = superToolTip6;
     this.btnDelete.TabIndex = 4;
     this.btnDelete.Text = "&Del";
     this.btnDelete.Visible = false;
     //
     // btnAddressSave
     //
     this.btnAddressSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAddressSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnAddressSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAddressSave.Location = new System.Drawing.Point(558, 4);
     this.btnAddressSave.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnAddressSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAddressSave.Name = "btnAddressSave";
     this.btnAddressSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem7.Text = "Save Module";
     superToolTip7.Items.Add(toolTipItem7);
     this.btnAddressSave.SuperTip = superToolTip7;
     this.btnAddressSave.TabIndex = 17;
     this.btnAddressSave.Text = " &Save ";
     this.btnAddressSave.Click += new System.EventHandler(this.btnAddressSave_Click);
     //
     // chkDisable
     //
     this.chkDisable.Location = new System.Drawing.Point(310, 310);
     this.chkDisable.Name = "chkDisable";
     this.chkDisable.Properties.Caption = "Disable";
     this.chkDisable.Size = new System.Drawing.Size(56, 19);
     this.chkDisable.TabIndex = 90;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupControl2.Controls.Add(this.labelControl9);
     this.groupControl2.Controls.Add(this.txtHomeAddress);
     this.groupControl2.Controls.Add(this.txtOfficeAddress);
     this.groupControl2.Controls.Add(this.txtPostalAddress);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Location = new System.Drawing.Point(387, 38);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(306, 266);
     this.groupControl2.TabIndex = 89;
     this.groupControl2.Text = "Address Information";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(25, 180);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(69, 13);
     this.labelControl9.TabIndex = 96;
     this.labelControl9.Text = "Home Address";
     //
     // txtHomeAddress
     //
     this.txtHomeAddress.Location = new System.Drawing.Point(25, 199);
     this.txtHomeAddress.MaxLength = 100;
     this.txtHomeAddress.Multiline = true;
     this.txtHomeAddress.Name = "txtHomeAddress";
     this.txtHomeAddress.Size = new System.Drawing.Size(257, 51);
     this.txtHomeAddress.TabIndex = 12;
     //
     // txtOfficeAddress
     //
     this.txtOfficeAddress.Location = new System.Drawing.Point(25, 123);
     this.txtOfficeAddress.MaxLength = 100;
     this.txtOfficeAddress.Multiline = true;
     this.txtOfficeAddress.Name = "txtOfficeAddress";
     this.txtOfficeAddress.Size = new System.Drawing.Size(257, 51);
     this.txtOfficeAddress.TabIndex = 11;
     //
     // txtPostalAddress
     //
     this.txtPostalAddress.Location = new System.Drawing.Point(25, 47);
     this.txtPostalAddress.MaxLength = 100;
     this.txtPostalAddress.Multiline = true;
     this.txtPostalAddress.Name = "txtPostalAddress";
     this.txtPostalAddress.Size = new System.Drawing.Size(257, 51);
     this.txtPostalAddress.TabIndex = 10;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(25, 28);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(71, 13);
     this.labelControl11.TabIndex = 94;
     this.labelControl11.Text = "Postal Address";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(25, 104);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 13);
     this.labelControl10.TabIndex = 94;
     this.labelControl10.Text = "Office Address";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupControl1.Controls.Add(this.txtCompanyName);
     this.groupControl1.Controls.Add(this.labelControl18);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.txtCompanyID);
     this.groupControl1.Controls.Add(this.txtEmail);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.txtHomePhone);
     this.groupControl1.Controls.Add(this.txtExtension);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtOfficePhone);
     this.groupControl1.Controls.Add(this.txtMobileNo2);
     this.groupControl1.Controls.Add(this.txtMobileNo1);
     this.groupControl1.Controls.Add(this.cmbTitle);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.btnCompanyPickList);
     this.groupControl1.Controls.Add(this.labelControl13);
     this.groupControl1.Controls.Add(this.btnEmailPickList);
     this.groupControl1.Controls.Add(this.txtLastName);
     this.groupControl1.Controls.Add(this.txtFirstName);
     this.groupControl1.Location = new System.Drawing.Point(59, 38);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(306, 266);
     this.groupControl1.TabIndex = 88;
     this.groupControl1.Text = "Personal Information";
     //
     // txtCompanyName
     //
     this.txtCompanyName.Enabled = false;
     this.txtCompanyName.EnterMoveNextControl = true;
     this.txtCompanyName.Location = new System.Drawing.Point(164, 134);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Properties.MaxLength = 50;
     this.txtCompanyName.Size = new System.Drawing.Size(107, 20);
     this.txtCompanyName.TabIndex = 99;
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(30, 136);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(59, 13);
     this.labelControl18.TabIndex = 98;
     this.labelControl18.Text = "Company ID";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(30, 110);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(24, 13);
     this.labelControl8.TabIndex = 96;
     this.labelControl8.Text = "Email";
     //
     // txtCompanyID
     //
     this.txtCompanyID.EnterMoveNextControl = true;
     this.txtCompanyID.Location = new System.Drawing.Point(95, 133);
     this.txtCompanyID.Name = "txtCompanyID";
     this.txtCompanyID.Properties.MaxLength = 50;
     this.txtCompanyID.Size = new System.Drawing.Size(43, 20);
     this.txtCompanyID.TabIndex = 3;
     this.txtCompanyID.Leave += new System.EventHandler(this.txtEmail_Leave);
     //
     // txtEmail
     //
     this.txtEmail.EnterMoveNextControl = true;
     this.txtEmail.Location = new System.Drawing.Point(95, 107);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.MaxLength = 50;
     this.txtEmail.Size = new System.Drawing.Size(150, 20);
     this.txtEmail.TabIndex = 3;
     this.txtEmail.Leave += new System.EventHandler(this.txtEmail_Leave);
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(30, 241);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(46, 13);
     this.labelControl7.TabIndex = 94;
     this.labelControl7.Text = "Home Ph.";
     //
     // txtHomePhone
     //
     this.txtHomePhone.EnterMoveNextControl = true;
     this.txtHomePhone.Location = new System.Drawing.Point(95, 238);
     this.txtHomePhone.Name = "txtHomePhone";
     this.txtHomePhone.Properties.MaxLength = 20;
     this.txtHomePhone.Size = new System.Drawing.Size(176, 20);
     this.txtHomePhone.TabIndex = 9;
     this.txtHomePhone.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericTextBoxes_KeyPress);
     //
     // txtExtension
     //
     this.txtExtension.EnterMoveNextControl = true;
     this.txtExtension.Location = new System.Drawing.Point(197, 212);
     this.txtExtension.Name = "txtExtension";
     this.txtExtension.Properties.MaxLength = 10;
     this.txtExtension.Size = new System.Drawing.Size(74, 20);
     this.txtExtension.TabIndex = 8;
     this.txtExtension.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericTextBoxes_KeyPress);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(171, 215);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(20, 13);
     this.labelControl6.TabIndex = 91;
     this.labelControl6.Text = "Ext.";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(30, 215);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(44, 13);
     this.labelControl5.TabIndex = 90;
     this.labelControl5.Text = "Office Ph";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(30, 189);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(59, 13);
     this.labelControl4.TabIndex = 90;
     this.labelControl4.Text = "Mobile No. 2";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(30, 163);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(59, 13);
     this.labelControl3.TabIndex = 90;
     this.labelControl3.Text = "Mobile No. 1";
     //
     // txtOfficePhone
     //
     this.txtOfficePhone.EnterMoveNextControl = true;
     this.txtOfficePhone.Location = new System.Drawing.Point(95, 212);
     this.txtOfficePhone.Name = "txtOfficePhone";
     this.txtOfficePhone.Properties.MaxLength = 20;
     this.txtOfficePhone.Size = new System.Drawing.Size(70, 20);
     this.txtOfficePhone.TabIndex = 7;
     this.txtOfficePhone.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericTextBoxes_KeyPress);
     //
     // txtMobileNo2
     //
     this.txtMobileNo2.EnterMoveNextControl = true;
     this.txtMobileNo2.Location = new System.Drawing.Point(95, 186);
     this.txtMobileNo2.Name = "txtMobileNo2";
     this.txtMobileNo2.Properties.MaxLength = 20;
     this.txtMobileNo2.Size = new System.Drawing.Size(176, 20);
     this.txtMobileNo2.TabIndex = 6;
     this.txtMobileNo2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericTextBoxes_KeyPress);
     //
     // txtMobileNo1
     //
     this.txtMobileNo1.EnterMoveNextControl = true;
     this.txtMobileNo1.Location = new System.Drawing.Point(95, 160);
     this.txtMobileNo1.Name = "txtMobileNo1";
     this.txtMobileNo1.Properties.MaxLength = 20;
     this.txtMobileNo1.Size = new System.Drawing.Size(176, 20);
     this.txtMobileNo1.TabIndex = 5;
     this.txtMobileNo1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumericTextBoxes_KeyPress);
     //
     // cmbTitle
     //
     this.cmbTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTitle.FormattingEnabled = true;
     this.cmbTitle.Items.AddRange(new object[] {
     "Mr.",
     "Mrs.",
     "Miss"});
     this.cmbTitle.Location = new System.Drawing.Point(95, 28);
     this.cmbTitle.Name = "cmbTitle";
     this.cmbTitle.Size = new System.Drawing.Size(176, 21);
     this.cmbTitle.TabIndex = 0;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(30, 33);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(20, 13);
     this.labelControl2.TabIndex = 87;
     this.labelControl2.Text = "Title";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(30, 84);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(50, 13);
     this.labelControl1.TabIndex = 85;
     this.labelControl1.Text = "Last Name";
     //
     // btnCompanyPickList
     //
     this.btnCompanyPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnCompanyPickList.Appearance.Options.UseFont = true;
     this.btnCompanyPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnCompanyPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCompanyPickList.Location = new System.Drawing.Point(140, 133);
     this.btnCompanyPickList.Name = "btnCompanyPickList";
     this.btnCompanyPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnCompanyPickList.Size = new System.Drawing.Size(22, 20);
     this.btnCompanyPickList.TabIndex = 86;
     this.btnCompanyPickList.TabStop = false;
     this.btnCompanyPickList.Click += new System.EventHandler(this.btnCompanyPickList_Click);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(30, 58);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(51, 13);
     this.labelControl13.TabIndex = 85;
     this.labelControl13.Text = "First Name";
     //
     // btnEmailPickList
     //
     this.btnEmailPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnEmailPickList.Appearance.Options.UseFont = true;
     this.btnEmailPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnEmailPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEmailPickList.Location = new System.Drawing.Point(249, 107);
     this.btnEmailPickList.Name = "btnEmailPickList";
     this.btnEmailPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnEmailPickList.Size = new System.Drawing.Size(22, 20);
     this.btnEmailPickList.TabIndex = 86;
     this.btnEmailPickList.TabStop = false;
     this.btnEmailPickList.Click += new System.EventHandler(this.btnEmailPickList_Click);
     //
     // txtLastName
     //
     this.txtLastName.EnterMoveNextControl = true;
     this.txtLastName.Location = new System.Drawing.Point(95, 81);
     this.txtLastName.Name = "txtLastName";
     this.txtLastName.Properties.MaxLength = 50;
     this.txtLastName.Size = new System.Drawing.Size(176, 20);
     this.txtLastName.TabIndex = 2;
     //
     // txtFirstName
     //
     this.txtFirstName.EnterMoveNextControl = true;
     this.txtFirstName.Location = new System.Drawing.Point(95, 55);
     this.txtFirstName.Name = "txtFirstName";
     this.txtFirstName.Properties.MaxLength = 50;
     this.txtFirstName.Size = new System.Drawing.Size(176, 20);
     this.txtFirstName.TabIndex = 1;
     //
     // tbEmailManager
     //
     this.tbEmailManager.Controls.Add(this.panel9);
     this.tbEmailManager.Controls.Add(this.label3);
     this.tbEmailManager.Controls.Add(this.label1);
     this.tbEmailManager.Controls.Add(this.pictureBox1);
     this.tbEmailManager.Controls.Add(this.label4);
     this.tbEmailManager.Controls.Add(this.label2);
     this.tbEmailManager.Name = "tbEmailManager";
     this.tbEmailManager.Size = new System.Drawing.Size(757, 372);
     this.tbEmailManager.Text = "Email Manager";
     //
     // panel9
     //
     this.panel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(131)))), ((int)(((byte)(143)))));
     this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel9.Controls.Add(this.btnMainExit);
     this.panel9.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel9.Location = new System.Drawing.Point(0, 332);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(757, 40);
     this.panel9.TabIndex = 28;
     //
     // btnMainExit
     //
     this.btnMainExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnMainExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnMainExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnMainExit.Location = new System.Drawing.Point(686, 1);
     this.btnMainExit.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnMainExit.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnMainExit.Name = "btnMainExit";
     this.btnMainExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem8.Text = "Close Modules List";
     superToolTip8.Items.Add(toolTipItem8);
     this.btnMainExit.SuperTip = superToolTip8;
     this.btnMainExit.TabIndex = 20;
     this.btnMainExit.Text = "E&xit  ";
     this.btnMainExit.Click += new System.EventHandler(this.btnMainExit_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.label3.Location = new System.Drawing.Point(3, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(63, 13);
     this.label3.TabIndex = 18;
     this.label3.Text = "Hamid Khan";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label1.Location = new System.Drawing.Point(3, 53);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(62, 13);
     this.label1.TabIndex = 20;
     this.label1.Text = "ERP Code:";
     //
     // pictureBox1
     //
     this.pictureBox1.BackgroundImage = global::ERPGUI.Properties.Resources.email_archivierung;
     this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBox1.Location = new System.Drawing.Point(144, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(613, 357);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 21;
     this.pictureBox1.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(3, 67);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(31, 13);
     this.label4.TabIndex = 19;
     this.label4.Text = "0604";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.label2.Location = new System.Drawing.Point(3, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(85, 13);
     this.label2.TabIndex = 17;
     this.label2.Text = "Logged In as: ";
     //
     // tbGroups
     //
     this.tbGroups.Controls.Add(this.labelControl12);
     this.tbGroups.Controls.Add(this.lblEditGroup);
     this.tbGroups.Controls.Add(this.lblAddNewGroup);
     this.tbGroups.Controls.Add(this.lblContactsFound);
     this.tbGroups.Controls.Add(this.panel5);
     this.tbGroups.Controls.Add(this.btnShowEmails);
     this.tbGroups.Controls.Add(this.grdOrderDetails);
     this.tbGroups.Controls.Add(this.lbl);
     this.tbGroups.Controls.Add(this.cmbManagerEmailGroupd);
     this.tbGroups.Controls.Add(this.txtNewGroupName);
     this.tbGroups.Name = "tbGroups";
     this.tbGroups.Size = new System.Drawing.Size(757, 372);
     this.tbGroups.Text = "Groups";
     //
     // labelControl12
     //
     this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl12.Location = new System.Drawing.Point(14, 315);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(7, 13);
     this.labelControl12.TabIndex = 108;
     this.labelControl12.Text = "0";
     //
     // lblEditGroup
     //
     this.lblEditGroup.AutoSize = true;
     this.lblEditGroup.Cursor = System.Windows.Forms.Cursors.Hand;
     this.lblEditGroup.LinkColor = System.Drawing.Color.Black;
     this.lblEditGroup.Location = new System.Drawing.Point(62, 10);
     this.lblEditGroup.Name = "lblEditGroup";
     this.lblEditGroup.Size = new System.Drawing.Size(57, 13);
     this.lblEditGroup.TabIndex = 107;
     this.lblEditGroup.TabStop = true;
     this.lblEditGroup.Text = "Edit Group";
     this.lblEditGroup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblEditGroup_LinkClicked);
     //
     // lblAddNewGroup
     //
     this.lblAddNewGroup.AutoSize = true;
     this.lblAddNewGroup.Cursor = System.Windows.Forms.Cursors.Hand;
     this.lblAddNewGroup.LinkColor = System.Drawing.Color.Black;
     this.lblAddNewGroup.Location = new System.Drawing.Point(11, 10);
     this.lblAddNewGroup.Name = "lblAddNewGroup";
     this.lblAddNewGroup.Size = new System.Drawing.Size(50, 13);
     this.lblAddNewGroup.TabIndex = 105;
     this.lblAddNewGroup.TabStop = true;
     this.lblAddNewGroup.Text = "Add New";
     this.lblAddNewGroup.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblAddNewGroup_LinkClicked);
     //
     // lblContactsFound
     //
     this.lblContactsFound.Location = new System.Drawing.Point(14, 301);
     this.lblContactsFound.Name = "lblContactsFound";
     this.lblContactsFound.Size = new System.Drawing.Size(100, 13);
     this.lblContactsFound.TabIndex = 102;
     this.lblContactsFound.Text = "Emails In This Group:";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(131)))), ((int)(((byte)(143)))));
     this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel5.Controls.Add(this.btnGroupsCancel);
     this.panel5.Controls.Add(this.btnGroupsExit);
     this.panel5.Controls.Add(this.btnGroupsSave);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 328);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(757, 44);
     this.panel5.TabIndex = 104;
     //
     // btnGroupsCancel
     //
     this.btnGroupsCancel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnGroupsCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnGroupsCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnGroupsCancel.Location = new System.Drawing.Point(622, 4);
     this.btnGroupsCancel.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnGroupsCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnGroupsCancel.Name = "btnGroupsCancel";
     this.btnGroupsCancel.Size = new System.Drawing.Size(58, 32);
     toolTipItem9.Text = "Cancel Current Operation";
     superToolTip9.Items.Add(toolTipItem9);
     this.btnGroupsCancel.SuperTip = superToolTip9;
     this.btnGroupsCancel.TabIndex = 18;
     this.btnGroupsCancel.Text = "&Cancel";
     this.btnGroupsCancel.Click += new System.EventHandler(this.btnGroupsCancel_Click);
     //
     // btnGroupsExit
     //
     this.btnGroupsExit.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnGroupsExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnGroupsExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnGroupsExit.Location = new System.Drawing.Point(686, 4);
     this.btnGroupsExit.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnGroupsExit.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnGroupsExit.Name = "btnGroupsExit";
     this.btnGroupsExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem10.Text = "Close Modules List";
     superToolTip10.Items.Add(toolTipItem10);
     this.btnGroupsExit.SuperTip = superToolTip10;
     this.btnGroupsExit.TabIndex = 19;
     this.btnGroupsExit.Text = "E&xit  ";
     this.btnGroupsExit.Click += new System.EventHandler(this.btnGroupsExit_Click);
     //
     // btnGroupsSave
     //
     this.btnGroupsSave.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnGroupsSave.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnGroupsSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnGroupsSave.Location = new System.Drawing.Point(558, 4);
     this.btnGroupsSave.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnGroupsSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnGroupsSave.Name = "btnGroupsSave";
     this.btnGroupsSave.Size = new System.Drawing.Size(58, 32);
     toolTipItem11.Text = "Save Module";
     superToolTip11.Items.Add(toolTipItem11);
     this.btnGroupsSave.SuperTip = superToolTip11;
     this.btnGroupsSave.TabIndex = 17;
     this.btnGroupsSave.Text = " &Save ";
     this.btnGroupsSave.Click += new System.EventHandler(this.btnGroupsSave_Click);
     //
     // btnShowEmails
     //
     this.btnShowEmails.Appearance.Font = new System.Drawing.Font("Tahoma", 8F);
     this.btnShowEmails.Appearance.Options.UseFont = true;
     this.btnShowEmails.Location = new System.Drawing.Point(417, 36);
     this.btnShowEmails.Name = "btnShowEmails";
     this.btnShowEmails.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnShowEmails.Size = new System.Drawing.Size(86, 21);
     this.btnShowEmails.TabIndex = 103;
     this.btnShowEmails.TabStop = false;
     this.btnShowEmails.Text = "View Contacts";
     this.btnShowEmails.Visible = false;
     this.btnShowEmails.Click += new System.EventHandler(this.btnShowEmails_Click);
     //
     // grdOrderDetails
     //
     this.grdOrderDetails.AlternatingRows = true;
     this.grdOrderDetails.BackColor = System.Drawing.Color.White;
     this.grdOrderDetails.CaptionHeight = 17;
     this.grdOrderDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdOrderDetails.FilterBar = true;
     this.grdOrderDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdOrderDetails.Images"))));
     this.grdOrderDetails.LinesPerRow = 1;
     this.grdOrderDetails.Location = new System.Drawing.Point(125, 67);
     this.grdOrderDetails.Name = "grdOrderDetails";
     this.grdOrderDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdOrderDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdOrderDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdOrderDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdOrderDetails.PrintInfo.PageSettings")));
     this.grdOrderDetails.RecordSelectors = false;
     this.grdOrderDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdOrderDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdOrderDetails.RowHeight = 20;
     this.grdOrderDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdOrderDetails.Size = new System.Drawing.Size(568, 266);
     this.grdOrderDetails.TabIndex = 12;
     this.grdOrderDetails.Text = "c1TrueDBGrid1";
     this.grdOrderDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdOrderDetails.PropBag = resources.GetString("grdOrderDetails.PropBag");
     //
     // lbl
     //
     this.lbl.Location = new System.Drawing.Point(24, 38);
     this.lbl.Name = "lbl";
     this.lbl.Size = new System.Drawing.Size(68, 13);
     this.lbl.TabIndex = 99;
     this.lbl.Text = "Choose Group";
     this.lbl.Visible = false;
     //
     // cmbManagerEmailGroupd
     //
     this.cmbManagerEmailGroupd.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbManagerEmailGroupd.Enabled = false;
     this.cmbManagerEmailGroupd.FormattingEnabled = true;
     this.cmbManagerEmailGroupd.Items.AddRange(new object[] {
     "Mr.",
     "Mrs.",
     "Miss"});
     this.cmbManagerEmailGroupd.Location = new System.Drawing.Point(125, 36);
     this.cmbManagerEmailGroupd.Name = "cmbManagerEmailGroupd";
     this.cmbManagerEmailGroupd.Size = new System.Drawing.Size(286, 21);
     this.cmbManagerEmailGroupd.TabIndex = 101;
     this.cmbManagerEmailGroupd.SelectionChangeCommitted += new System.EventHandler(this.cmbManagerEmailGroupd_SelectionChangeCommitted);
     //
     // txtNewGroupName
     //
     this.txtNewGroupName.Location = new System.Drawing.Point(125, 36);
     this.txtNewGroupName.Name = "txtNewGroupName";
     this.txtNewGroupName.Properties.MaxLength = 50;
     this.txtNewGroupName.Size = new System.Drawing.Size(286, 20);
     this.txtNewGroupName.TabIndex = 106;
     //
     // tbNavigatorSetup
     //
     this.tbNavigatorSetup.Controls.Add(this.panel6);
     this.tbNavigatorSetup.Controls.Add(this.grdNavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.btnLoadParameters_NavigtorSetup);
     this.tbNavigatorSetup.Controls.Add(this.chkDisabled_NavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.labelControl17);
     this.tbNavigatorSetup.Controls.Add(this.txtReportID_NavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.btn);
     this.tbNavigatorSetup.Controls.Add(this.cmbEmailGroup_NavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.labelControl15);
     this.tbNavigatorSetup.Controls.Add(this.labelControl14);
     this.tbNavigatorSetup.Controls.Add(this.txtEmailID_NavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.cmbFileType_NavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.labelControl16);
     this.tbNavigatorSetup.Controls.Add(this.cmbEmailType_NavigatorSetup);
     this.tbNavigatorSetup.Controls.Add(this.labelControl20);
     this.tbNavigatorSetup.Controls.Add(this.btnEmailPickList_NavigatorSetup);
     this.tbNavigatorSetup.Name = "tbNavigatorSetup";
     this.tbNavigatorSetup.Size = new System.Drawing.Size(757, 372);
     this.tbNavigatorSetup.Text = "Navigator Setup";
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(131)))), ((int)(((byte)(143)))));
     this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel6.Controls.Add(this.btnAdd_NavigatorSetup);
     this.panel6.Controls.Add(this.btnCancel_NavigatorSetup);
     this.panel6.Controls.Add(this.btnExit_NavigatorSetup);
     this.panel6.Controls.Add(this.btnEdit_NavigatorSetup);
     this.panel6.Controls.Add(this.simpleButton17);
     this.panel6.Controls.Add(this.btnSave_NavigatorSetup);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel6.Location = new System.Drawing.Point(0, 328);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(757, 44);
     this.panel6.TabIndex = 105;
     //
     // btnAdd_NavigatorSetup
     //
     this.btnAdd_NavigatorSetup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnAdd_NavigatorSetup.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd_NavigatorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd_NavigatorSetup.Location = new System.Drawing.Point(10, 4);
     this.btnAdd_NavigatorSetup.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnAdd_NavigatorSetup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnAdd_NavigatorSetup.Name = "btnAdd_NavigatorSetup";
     this.btnAdd_NavigatorSetup.Size = new System.Drawing.Size(58, 32);
     toolTipItem12.Text = "Add New Module";
     superToolTip12.Items.Add(toolTipItem12);
     this.btnAdd_NavigatorSetup.SuperTip = superToolTip12;
     this.btnAdd_NavigatorSetup.TabIndex = 15;
     this.btnAdd_NavigatorSetup.Text = " &Add ";
     this.btnAdd_NavigatorSetup.Click += new System.EventHandler(this.btnAdd_NavigatorSetup_Click);
     //
     // btnCancel_NavigatorSetup
     //
     this.btnCancel_NavigatorSetup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnCancel_NavigatorSetup.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel_NavigatorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel_NavigatorSetup.Location = new System.Drawing.Point(622, 4);
     this.btnCancel_NavigatorSetup.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnCancel_NavigatorSetup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel_NavigatorSetup.Name = "btnCancel_NavigatorSetup";
     this.btnCancel_NavigatorSetup.Size = new System.Drawing.Size(58, 32);
     toolTipItem13.Text = "Cancel Current Operation";
     superToolTip13.Items.Add(toolTipItem13);
     this.btnCancel_NavigatorSetup.SuperTip = superToolTip13;
     this.btnCancel_NavigatorSetup.TabIndex = 18;
     this.btnCancel_NavigatorSetup.Text = "&Cancel";
     //
     // btnExit_NavigatorSetup
     //
     this.btnExit_NavigatorSetup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnExit_NavigatorSetup.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit_NavigatorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit_NavigatorSetup.Location = new System.Drawing.Point(686, 4);
     this.btnExit_NavigatorSetup.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnExit_NavigatorSetup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnExit_NavigatorSetup.Name = "btnExit_NavigatorSetup";
     this.btnExit_NavigatorSetup.Size = new System.Drawing.Size(58, 32);
     toolTipItem14.Text = "Close Modules List";
     superToolTip14.Items.Add(toolTipItem14);
     this.btnExit_NavigatorSetup.SuperTip = superToolTip14;
     this.btnExit_NavigatorSetup.TabIndex = 19;
     this.btnExit_NavigatorSetup.Text = "E&xit  ";
     this.btnExit_NavigatorSetup.Click += new System.EventHandler(this.btnExit_NavigatorSetup_Click);
     //
     // btnEdit_NavigatorSetup
     //
     this.btnEdit_NavigatorSetup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnEdit_NavigatorSetup.Image = global::ERPGUI.Properties.Resources.edit_16x16;
     this.btnEdit_NavigatorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEdit_NavigatorSetup.Location = new System.Drawing.Point(74, 4);
     this.btnEdit_NavigatorSetup.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnEdit_NavigatorSetup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnEdit_NavigatorSetup.Name = "btnEdit_NavigatorSetup";
     this.btnEdit_NavigatorSetup.Size = new System.Drawing.Size(58, 32);
     toolTipItem15.Text = "Edit Module Details";
     superToolTip15.Items.Add(toolTipItem15);
     this.btnEdit_NavigatorSetup.SuperTip = superToolTip15;
     this.btnEdit_NavigatorSetup.TabIndex = 16;
     this.btnEdit_NavigatorSetup.Text = " &Edit ";
     //
     // simpleButton17
     //
     this.simpleButton17.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton17.Image = global::ERPGUI.Properties.Resources.delete_16x16;
     this.simpleButton17.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton17.Location = new System.Drawing.Point(494, 4);
     this.simpleButton17.LookAndFeel.SkinName = "Office 2010 Black";
     this.simpleButton17.LookAndFeel.UseDefaultLookAndFeel = false;
     this.simpleButton17.Name = "simpleButton17";
     this.simpleButton17.Size = new System.Drawing.Size(58, 32);
     toolTipItem16.Text = "Remove Module";
     superToolTip16.Items.Add(toolTipItem16);
     this.simpleButton17.SuperTip = superToolTip16;
     this.simpleButton17.TabIndex = 4;
     this.simpleButton17.Text = "&Del";
     this.simpleButton17.Visible = false;
     //
     // btnSave_NavigatorSetup
     //
     this.btnSave_NavigatorSetup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSave_NavigatorSetup.Image = global::ERPGUI.Properties.Resources.save_16x16;
     this.btnSave_NavigatorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSave_NavigatorSetup.Location = new System.Drawing.Point(558, 4);
     this.btnSave_NavigatorSetup.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnSave_NavigatorSetup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave_NavigatorSetup.Name = "btnSave_NavigatorSetup";
     this.btnSave_NavigatorSetup.Size = new System.Drawing.Size(58, 32);
     toolTipItem17.Text = "Save Module";
     superToolTip17.Items.Add(toolTipItem17);
     this.btnSave_NavigatorSetup.SuperTip = superToolTip17;
     this.btnSave_NavigatorSetup.TabIndex = 17;
     this.btnSave_NavigatorSetup.Text = " &Save ";
     this.btnSave_NavigatorSetup.Click += new System.EventHandler(this.btnSave_NavigatorSetup_Click);
     //
     // grdNavigatorSetup
     //
     this.grdNavigatorSetup.AllowAddNew = true;
     this.grdNavigatorSetup.BackColor = System.Drawing.Color.White;
     this.grdNavigatorSetup.CaptionHeight = 17;
     this.grdNavigatorSetup.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdNavigatorSetup.Images.Add(((System.Drawing.Image)(resources.GetObject("grdNavigatorSetup.Images"))));
     this.grdNavigatorSetup.LinesPerRow = 1;
     this.grdNavigatorSetup.Location = new System.Drawing.Point(74, 97);
     this.grdNavigatorSetup.Name = "grdNavigatorSetup";
     this.grdNavigatorSetup.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdNavigatorSetup.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdNavigatorSetup.PreviewInfo.ZoomFactor = 75D;
     this.grdNavigatorSetup.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdNavigatorSetup.PrintInfo.PageSettings")));
     this.grdNavigatorSetup.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdNavigatorSetup.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdNavigatorSetup.RowHeight = 23;
     this.grdNavigatorSetup.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdNavigatorSetup.Size = new System.Drawing.Size(606, 229);
     this.grdNavigatorSetup.TabIndex = 12;
     this.grdNavigatorSetup.Text = "c1TrueDBGrid1";
     this.grdNavigatorSetup.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdNavigatorSetup.PropBag = resources.GetString("grdNavigatorSetup.PropBag");
     //
     // btnLoadParameters_NavigtorSetup
     //
     this.btnLoadParameters_NavigtorSetup.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.btnLoadParameters_NavigtorSetup.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnLoadParameters_NavigtorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnLoadParameters_NavigtorSetup.Location = new System.Drawing.Point(561, 24);
     this.btnLoadParameters_NavigtorSetup.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnLoadParameters_NavigtorSetup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnLoadParameters_NavigtorSetup.Name = "btnLoadParameters_NavigtorSetup";
     this.btnLoadParameters_NavigtorSetup.Size = new System.Drawing.Size(119, 67);
     toolTipItem18.Text = "Add New Module";
     superToolTip18.Items.Add(toolTipItem18);
     this.btnLoadParameters_NavigtorSetup.SuperTip = superToolTip18;
     this.btnLoadParameters_NavigtorSetup.TabIndex = 103;
     this.btnLoadParameters_NavigtorSetup.Text = "&Load Parameter(s)";
     this.btnLoadParameters_NavigtorSetup.Click += new System.EventHandler(this.btnLoadParameters_NavigtorSetup_Click);
     //
     // chkDisabled_NavigatorSetup
     //
     this.chkDisabled_NavigatorSetup.Location = new System.Drawing.Point(352, 74);
     this.chkDisabled_NavigatorSetup.Name = "chkDisabled_NavigatorSetup";
     this.chkDisabled_NavigatorSetup.Properties.Caption = "Disabled";
     this.chkDisabled_NavigatorSetup.Size = new System.Drawing.Size(65, 19);
     this.chkDisabled_NavigatorSetup.TabIndex = 102;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(74, 51);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(47, 13);
     this.labelControl17.TabIndex = 101;
     this.labelControl17.Text = "Report ID";
     //
     // txtReportID_NavigatorSetup
     //
     this.txtReportID_NavigatorSetup.Location = new System.Drawing.Point(130, 48);
     this.txtReportID_NavigatorSetup.Name = "txtReportID_NavigatorSetup";
     this.txtReportID_NavigatorSetup.Properties.MaxLength = 6;
     this.txtReportID_NavigatorSetup.Size = new System.Drawing.Size(130, 20);
     this.txtReportID_NavigatorSetup.TabIndex = 100;
     //
     // btn
     //
     this.btn.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btn.Appearance.Options.UseFont = true;
     this.btn.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btn.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn.Location = new System.Drawing.Point(263, 48);
     this.btn.Name = "btn";
     this.btn.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btn.Size = new System.Drawing.Size(22, 20);
     this.btn.TabIndex = 99;
     this.btn.TabStop = false;
     this.btn.Click += new System.EventHandler(this.btn_Click);
     //
     // cmbEmailGroup_NavigatorSetup
     //
     this.cmbEmailGroup_NavigatorSetup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbEmailGroup_NavigatorSetup.FormattingEnabled = true;
     this.cmbEmailGroup_NavigatorSetup.Items.AddRange(new object[] {
     "Mr.",
     "Mrs.",
     "Miss"});
     this.cmbEmailGroup_NavigatorSetup.Location = new System.Drawing.Point(353, 25);
     this.cmbEmailGroup_NavigatorSetup.Name = "cmbEmailGroup_NavigatorSetup";
     this.cmbEmailGroup_NavigatorSetup.Size = new System.Drawing.Size(203, 21);
     this.cmbEmailGroup_NavigatorSetup.TabIndex = 98;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(292, 28);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(56, 13);
     this.labelControl15.TabIndex = 97;
     this.labelControl15.Text = "Email Group";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(74, 28);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(38, 13);
     this.labelControl14.TabIndex = 96;
     this.labelControl14.Text = "Email ID";
     //
     // txtEmailID_NavigatorSetup
     //
     this.txtEmailID_NavigatorSetup.Location = new System.Drawing.Point(130, 25);
     this.txtEmailID_NavigatorSetup.Name = "txtEmailID_NavigatorSetup";
     this.txtEmailID_NavigatorSetup.Properties.MaxLength = 6;
     this.txtEmailID_NavigatorSetup.Size = new System.Drawing.Size(130, 20);
     this.txtEmailID_NavigatorSetup.TabIndex = 95;
     this.txtEmailID_NavigatorSetup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtEmailID_NavigatorSetup_PreviewKeyDown);
     //
     // cmbFileType_NavigatorSetup
     //
     this.cmbFileType_NavigatorSetup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFileType_NavigatorSetup.FormattingEnabled = true;
     this.cmbFileType_NavigatorSetup.Items.AddRange(new object[] {
     "Acrobat (PDF)",
     "MS Word",
     "MS Excel (Formated)",
     "MS Excel (Data only)",
     "Rich Text"});
     this.cmbFileType_NavigatorSetup.Location = new System.Drawing.Point(353, 48);
     this.cmbFileType_NavigatorSetup.Name = "cmbFileType_NavigatorSetup";
     this.cmbFileType_NavigatorSetup.Size = new System.Drawing.Size(203, 21);
     this.cmbFileType_NavigatorSetup.TabIndex = 88;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(292, 51);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(43, 13);
     this.labelControl16.TabIndex = 87;
     this.labelControl16.Text = "File Type";
     //
     // cmbEmailType_NavigatorSetup
     //
     this.cmbEmailType_NavigatorSetup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbEmailType_NavigatorSetup.FormattingEnabled = true;
     this.cmbEmailType_NavigatorSetup.Items.AddRange(new object[] {
     "Daily",
     "Mon",
     "Tue",
     "Wed",
     "Thu",
     "Fri",
     "Sat",
     "1st",
     "2nd",
     "3rd",
     "4th",
     "5th",
     "6th",
     "7th",
     "8th",
     "9th",
     "10th",
     "11th",
     "12th",
     "13th",
     "14th",
     "15th",
     "16th",
     "17th",
     "18th",
     "19th",
     "20th",
     "21st",
     "22nd",
     "23rd",
     "24th",
     "25th",
     "26th",
     "27th",
     "28th",
     "29th",
     "30th",
     "31st"});
     this.cmbEmailType_NavigatorSetup.Location = new System.Drawing.Point(130, 70);
     this.cmbEmailType_NavigatorSetup.Name = "cmbEmailType_NavigatorSetup";
     this.cmbEmailType_NavigatorSetup.Size = new System.Drawing.Size(130, 21);
     this.cmbEmailType_NavigatorSetup.TabIndex = 88;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(74, 73);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(51, 13);
     this.labelControl20.TabIndex = 87;
     this.labelControl20.Text = "Email Type";
     //
     // btnEmailPickList_NavigatorSetup
     //
     this.btnEmailPickList_NavigatorSetup.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnEmailPickList_NavigatorSetup.Appearance.Options.UseFont = true;
     this.btnEmailPickList_NavigatorSetup.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnEmailPickList_NavigatorSetup.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnEmailPickList_NavigatorSetup.Location = new System.Drawing.Point(263, 25);
     this.btnEmailPickList_NavigatorSetup.Name = "btnEmailPickList_NavigatorSetup";
     this.btnEmailPickList_NavigatorSetup.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnEmailPickList_NavigatorSetup.Size = new System.Drawing.Size(22, 20);
     this.btnEmailPickList_NavigatorSetup.TabIndex = 86;
     this.btnEmailPickList_NavigatorSetup.TabStop = false;
     this.btnEmailPickList_NavigatorSetup.Click += new System.EventHandler(this.btnEmailPickList_NavigatorSetup_Click);
     //
     // tbNavigator
     //
     this.tbNavigator.Controls.Add(this.panel8);
     this.tbNavigator.Controls.Add(this.chkMarkUnmarkAll);
     this.tbNavigator.Controls.Add(this.checkEdit4);
     this.tbNavigator.Controls.Add(this.checkEdit3);
     this.tbNavigator.Controls.Add(this.checkEdit2);
     this.tbNavigator.Controls.Add(this.grdEmailNavigator);
     this.tbNavigator.Name = "tbNavigator";
     this.tbNavigator.Size = new System.Drawing.Size(757, 372);
     this.tbNavigator.Text = "Email Navigator";
     //
     // panel8
     //
     this.panel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(131)))), ((int)(((byte)(143)))));
     this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel8.Controls.Add(this.btnSendEmail_EmailNavigator);
     this.panel8.Controls.Add(this.simpleButton22);
     this.panel8.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel8.Location = new System.Drawing.Point(0, 328);
     this.panel8.Name = "panel8";
     this.panel8.Size = new System.Drawing.Size(757, 44);
     this.panel8.TabIndex = 105;
     //
     // btnSendEmail_EmailNavigator
     //
     this.btnSendEmail_EmailNavigator.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnSendEmail_EmailNavigator.Image = ((System.Drawing.Image)(resources.GetObject("btnSendEmail_EmailNavigator.Image")));
     this.btnSendEmail_EmailNavigator.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSendEmail_EmailNavigator.Location = new System.Drawing.Point(620, 4);
     this.btnSendEmail_EmailNavigator.LookAndFeel.SkinName = "Office 2010 Black";
     this.btnSendEmail_EmailNavigator.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSendEmail_EmailNavigator.Name = "btnSendEmail_EmailNavigator";
     this.btnSendEmail_EmailNavigator.Size = new System.Drawing.Size(60, 32);
     toolTipItem19.Text = "Close Modules List";
     superToolTip19.Items.Add(toolTipItem19);
     this.btnSendEmail_EmailNavigator.SuperTip = superToolTip19;
     this.btnSendEmail_EmailNavigator.TabIndex = 20;
     this.btnSendEmail_EmailNavigator.Text = "&Send";
     this.btnSendEmail_EmailNavigator.Click += new System.EventHandler(this.btnSendEmail_EmailNavigator_Click);
     //
     // simpleButton22
     //
     this.simpleButton22.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton22.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.simpleButton22.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton22.Location = new System.Drawing.Point(686, 4);
     this.simpleButton22.LookAndFeel.SkinName = "Office 2010 Black";
     this.simpleButton22.LookAndFeel.UseDefaultLookAndFeel = false;
     this.simpleButton22.Name = "simpleButton22";
     this.simpleButton22.Size = new System.Drawing.Size(58, 32);
     toolTipItem20.Text = "Close Modules List";
     superToolTip20.Items.Add(toolTipItem20);
     this.simpleButton22.SuperTip = superToolTip20;
     this.simpleButton22.TabIndex = 19;
     this.simpleButton22.Text = "E&xit  ";
     //
     // chkMarkUnmarkAll
     //
     this.chkMarkUnmarkAll.Location = new System.Drawing.Point(318, 6);
     this.chkMarkUnmarkAll.Name = "chkMarkUnmarkAll";
     this.chkMarkUnmarkAll.Properties.Caption = "Mark / Un-Mark All";
     this.chkMarkUnmarkAll.Size = new System.Drawing.Size(109, 19);
     this.chkMarkUnmarkAll.TabIndex = 26;
     this.chkMarkUnmarkAll.CheckedChanged += new System.EventHandler(this.chkMarkUnmarkAll_CheckedChanged);
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(237, 6);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "NexLinx";
     this.checkEdit4.Size = new System.Drawing.Size(75, 19);
     this.checkEdit4.TabIndex = 26;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(156, 6);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Wateen";
     this.checkEdit3.Size = new System.Drawing.Size(75, 19);
     this.checkEdit3.TabIndex = 26;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(75, 6);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Shut Down";
     this.checkEdit2.Size = new System.Drawing.Size(75, 19);
     this.checkEdit2.TabIndex = 26;
     //
     // grdEmailNavigator
     //
     this.grdEmailNavigator.AllowAddNew = true;
     this.grdEmailNavigator.BackColor = System.Drawing.Color.White;
     this.grdEmailNavigator.CaptionHeight = 17;
     this.grdEmailNavigator.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdEmailNavigator.Images.Add(((System.Drawing.Image)(resources.GetObject("grdEmailNavigator.Images"))));
     this.grdEmailNavigator.LinesPerRow = 1;
     this.grdEmailNavigator.Location = new System.Drawing.Point(75, 30);
     this.grdEmailNavigator.Name = "grdEmailNavigator";
     this.grdEmailNavigator.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdEmailNavigator.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdEmailNavigator.PreviewInfo.ZoomFactor = 75D;
     this.grdEmailNavigator.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdEmailNavigator.PrintInfo.PageSettings")));
     this.grdEmailNavigator.RecordSelectors = false;
     this.grdEmailNavigator.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdEmailNavigator.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdEmailNavigator.RowHeight = 23;
     this.grdEmailNavigator.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdEmailNavigator.Size = new System.Drawing.Size(606, 297);
     this.grdEmailNavigator.TabIndex = 25;
     this.grdEmailNavigator.Text = "c1TrueDBGrid2";
     this.grdEmailNavigator.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdEmailNavigator.PropBag = resources.GetString("grdEmailNavigator.PropBag");
     //
     // tileNavPane1
     //
     this.tileNavPane1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.tileNavPane1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(131)))), ((int)(((byte)(143)))));
     this.tileNavPane1.Appearance.Options.UseBackColor = true;
     this.tileNavPane1.ButtonPadding = new System.Windows.Forms.Padding(12);
     this.tileNavPane1.Buttons.Add(this.navHome);
     this.tileNavPane1.Buttons.Add(this.navAddressBook);
     this.tileNavPane1.Buttons.Add(this.navGroups);
     this.tileNavPane1.Buttons.Add(this.navNavigatorSetup);
     this.tileNavPane1.Buttons.Add(this.navEmailNavigator);
     //
     // tileNavCategory1
     //
     this.tileNavPane1.DefaultCategory.Name = "tileNavCategory1";
     this.tileNavPane1.DefaultCategory.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     this.tileNavPane1.DefaultCategory.OwnerCollection = null;
     //
     //
     //
     this.tileNavPane1.DefaultCategory.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     this.tileNavPane1.DefaultCategory.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     this.tileNavPane1.Location = new System.Drawing.Point(1, 1);
     this.tileNavPane1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.tileNavPane1.Name = "tileNavPane1";
     this.tileNavPane1.OptionsPrimaryDropDown.BackColor = System.Drawing.Color.Empty;
     this.tileNavPane1.OptionsSecondaryDropDown.BackColor = System.Drawing.Color.Empty;
     this.tileNavPane1.Size = new System.Drawing.Size(757, 52);
     this.tileNavPane1.TabIndex = 26;
     this.tileNavPane1.Text = "tileNavPane1";
     //
     // navHome
     //
     this.navHome.AppearanceSelected.BackColor = System.Drawing.Color.Transparent;
     this.navHome.AppearanceSelected.Options.UseBackColor = true;
     this.navHome.Caption = "Home";
     this.navHome.Name = "navHome";
     this.navHome.ElementClick += new DevExpress.XtraBars.Navigation.NavElementClickEventHandler(this.navHome_ElementClick);
     //
     // navAddressBook
     //
     this.navAddressBook.AppearanceSelected.BackColor = System.Drawing.Color.Transparent;
     this.navAddressBook.AppearanceSelected.Options.UseBackColor = true;
     this.navAddressBook.Caption = "Address Book";
     this.navAddressBook.Name = "navAddressBook";
     this.navAddressBook.ElementClick += new DevExpress.XtraBars.Navigation.NavElementClickEventHandler(this.navAddressBook_ElementClick);
     //
     // navGroups
     //
     this.navGroups.AppearanceSelected.BackColor = System.Drawing.Color.Transparent;
     this.navGroups.AppearanceSelected.Options.UseBackColor = true;
     this.navGroups.Caption = "Manage Groups";
     this.navGroups.Name = "navGroups";
     this.navGroups.ElementClick += new DevExpress.XtraBars.Navigation.NavElementClickEventHandler(this.navGroups_ElementClick);
     //
     // navNavigatorSetup
     //
     this.navNavigatorSetup.Caption = "Navigator Setup";
     this.navNavigatorSetup.Name = "navNavigatorSetup";
     this.navNavigatorSetup.ElementClick += new DevExpress.XtraBars.Navigation.NavElementClickEventHandler(this.navNavigatorSetup_ElementClick);
     //
     // navEmailNavigator
     //
     this.navEmailNavigator.Alignment = DevExpress.XtraBars.Navigation.NavButtonAlignment.Left;
     this.navEmailNavigator.Appearance.ForeColor = System.Drawing.Color.Transparent;
     this.navEmailNavigator.Appearance.Options.UseForeColor = true;
     this.navEmailNavigator.AppearanceHovered.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(160)))), ((int)(((byte)(171)))));
     this.navEmailNavigator.AppearanceHovered.Options.UseBackColor = true;
     this.navEmailNavigator.AppearanceSelected.BackColor = System.Drawing.Color.Transparent;
     this.navEmailNavigator.AppearanceSelected.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.navEmailNavigator.AppearanceSelected.Options.UseBackColor = true;
     this.navEmailNavigator.AppearanceSelected.Options.UseBorderColor = true;
     this.navEmailNavigator.AppearanceSelected.Options.UseFont = true;
     this.navEmailNavigator.AppearanceSelected.Options.UseForeColor = true;
     this.navEmailNavigator.AppearanceSelected.Options.UseImage = true;
     this.navEmailNavigator.AppearanceSelected.Options.UseTextOptions = true;
     this.navEmailNavigator.Caption = "Email Navigator";
     this.navEmailNavigator.Name = "navEmailNavigator";
     this.navEmailNavigator.ElementClick += new DevExpress.XtraBars.Navigation.NavElementClickEventHandler(this.navEmailNavigator_ElementClick);
     //
     // tileNavSubItem1
     //
     this.tileNavSubItem1.Caption = "tileNavSubItem1";
     this.tileNavSubItem1.Name = "tileNavSubItem1";
     this.tileNavSubItem1.OptionsDropDown.BackColor = System.Drawing.Color.Empty;
     //
     //
     //
     this.tileNavSubItem1.Tile.DropDownOptions.BeakColor = System.Drawing.Color.Empty;
     tileItemElement1.Text = "tileNavSubItem1";
     this.tileNavSubItem1.Tile.Elements.Add(tileItemElement1);
     this.tileNavSubItem1.Tile.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Default;
     //
     // frmEmailManager
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(759, 444);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel7);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.tileNavPane1);
     this.FormBorderEffect = DevExpress.XtraEditors.FormBorderEffect.Glow;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Name = "frmEmailManager";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Email Manager";
     this.Load += new System.EventHandler(this.frmEmailManager_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tbAddressBook.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chkDisable.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtHomePhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtExtension.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOfficePhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLastName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFirstName.Properties)).EndInit();
     this.tbEmailManager.ResumeLayout(false);
     this.tbEmailManager.PerformLayout();
     this.panel9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tbGroups.ResumeLayout(false);
     this.tbGroups.PerformLayout();
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdOrderDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNewGroupName.Properties)).EndInit();
     this.tbNavigatorSetup.ResumeLayout(false);
     this.tbNavigatorSetup.PerformLayout();
     this.panel6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdNavigatorSetup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkDisabled_NavigatorSetup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportID_NavigatorSetup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmailID_NavigatorSetup.Properties)).EndInit();
     this.tbNavigator.ResumeLayout(false);
     this.panel8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chkMarkUnmarkAll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdEmailNavigator)).EndInit();
     this.ResumeLayout(false);
 }
示例#34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dataSet11           = new IncrementalSearch.DataSet1();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.timer1 = new System.Timers.Timer();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timer1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.AllowFilter = false;
     this.c1TrueDBGrid1.DataSource  = this.dataSet11.Customers;
     this.c1TrueDBGrid1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(440, 270);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.KeyPress              += new System.Windows.Forms.KeyPressEventHandler(this.c1TrueDBGrid1_KeyPress);
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Customers", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("CustomerID", "CustomerID"),
             new System.Data.Common.DataColumnMapping("CompanyName", "CompanyName"),
             new System.Data.Common.DataColumnMapping("ContactName", "ContactName"),
             new System.Data.Common.DataColumnMapping("ContactTitle", "ContactTitle"),
             new System.Data.Common.DataColumnMapping("Address", "Address"),
             new System.Data.Common.DataColumnMapping("City", "City"),
             new System.Data.Common.DataColumnMapping("Region", "Region"),
             new System.Data.Common.DataColumnMapping("PostalCode", "PostalCode"),
             new System.Data.Common.DataColumnMapping("Country", "Country"),
             new System.Data.Common.DataColumnMapping("Phone", "Phone"),
             new System.Data.Common.DataColumnMapping("Fax", "Fax")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO Customers(Address, City, CompanyName, ContactName, ContactTitle, Coun" +
                                            "try, CustomerID, Fax, Phone, PostalCode, Region) VALUES (?, ?, ?, ?, ?, ?, ?, ?," +
                                            " ?, ?, ?)";
     this.oleDbInsertCommand1.Connection = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("Address", System.Data.OleDb.OleDbType.VarWChar, 60, "Address"),
         new System.Data.OleDb.OleDbParameter("City", System.Data.OleDb.OleDbType.VarWChar, 15, "City"),
         new System.Data.OleDb.OleDbParameter("CompanyName", System.Data.OleDb.OleDbType.VarWChar, 40, "CompanyName"),
         new System.Data.OleDb.OleDbParameter("ContactName", System.Data.OleDb.OleDbType.VarWChar, 30, "ContactName"),
         new System.Data.OleDb.OleDbParameter("ContactTitle", System.Data.OleDb.OleDbType.VarWChar, 30, "ContactTitle"),
         new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 15, "Country"),
         new System.Data.OleDb.OleDbParameter("CustomerID", System.Data.OleDb.OleDbType.VarWChar, 5, "CustomerID"),
         new System.Data.OleDb.OleDbParameter("Fax", System.Data.OleDb.OleDbType.VarWChar, 24, "Fax"),
         new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.VarWChar, 24, "Phone"),
         new System.Data.OleDb.OleDbParameter("PostalCode", System.Data.OleDb.OleDbType.VarWChar, 10, "PostalCode"),
         new System.Data.OleDb.OleDbParameter("Region", System.Data.OleDb.OleDbType.VarWChar, 15, "Region")
     });
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program Files\ComponentOne Studi" +
                                              @"o.NET 2.0\Common\C1Nwind.mdb;";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Address, City, CompanyName, ContactName, ContactTitle, Country, CustomerID" +
                                            ", Fax, Phone, PostalCode, Region FROM Customers";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // timer1
     //
     this.timer1.Enabled             = true;
     this.timer1.SynchronizingObject = this;
     this.timer1.Elapsed            += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 270);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timer1)).EndInit();
     this.ResumeLayout(false);
 }
示例#35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(NotSetupSTDItems));
     this.lblMessage = new System.Windows.Forms.Label();
     this.btnClose   = new System.Windows.Forms.Button();
     this.dgrdData   = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     ((System.ComponentModel.ISupportInitialize)(this.dgrdData)).BeginInit();
     this.SuspendLayout();
     //
     // lblMessage
     //
     this.lblMessage.AccessibleDescription = resources.GetString("lblMessage.AccessibleDescription");
     this.lblMessage.AccessibleName        = resources.GetString("lblMessage.AccessibleName");
     this.lblMessage.Anchor      = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("lblMessage.Anchor")));
     this.lblMessage.AutoSize    = ((bool)(resources.GetObject("lblMessage.AutoSize")));
     this.lblMessage.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("lblMessage.Dock")));
     this.lblMessage.Enabled     = ((bool)(resources.GetObject("lblMessage.Enabled")));
     this.lblMessage.Font        = ((System.Drawing.Font)(resources.GetObject("lblMessage.Font")));
     this.lblMessage.Image       = ((System.Drawing.Image)(resources.GetObject("lblMessage.Image")));
     this.lblMessage.ImageAlign  = ((System.Drawing.ContentAlignment)(resources.GetObject("lblMessage.ImageAlign")));
     this.lblMessage.ImageIndex  = ((int)(resources.GetObject("lblMessage.ImageIndex")));
     this.lblMessage.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("lblMessage.ImeMode")));
     this.lblMessage.Location    = ((System.Drawing.Point)(resources.GetObject("lblMessage.Location")));
     this.lblMessage.Name        = "lblMessage";
     this.lblMessage.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("lblMessage.RightToLeft")));
     this.lblMessage.Size        = ((System.Drawing.Size)(resources.GetObject("lblMessage.Size")));
     this.lblMessage.TabIndex    = ((int)(resources.GetObject("lblMessage.TabIndex")));
     this.lblMessage.Text        = resources.GetString("lblMessage.Text");
     this.lblMessage.TextAlign   = ((System.Drawing.ContentAlignment)(resources.GetObject("lblMessage.TextAlign")));
     this.lblMessage.Visible     = ((bool)(resources.GetObject("lblMessage.Visible")));
     //
     // btnClose
     //
     this.btnClose.AccessibleDescription = resources.GetString("btnClose.AccessibleDescription");
     this.btnClose.AccessibleName        = resources.GetString("btnClose.AccessibleName");
     this.btnClose.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("btnClose.Anchor")));
     this.btnClose.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClose.BackgroundImage")));
     this.btnClose.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("btnClose.Dock")));
     this.btnClose.Enabled         = ((bool)(resources.GetObject("btnClose.Enabled")));
     this.btnClose.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("btnClose.FlatStyle")));
     this.btnClose.Font            = ((System.Drawing.Font)(resources.GetObject("btnClose.Font")));
     this.btnClose.Image           = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("btnClose.ImageAlign")));
     this.btnClose.ImageIndex      = ((int)(resources.GetObject("btnClose.ImageIndex")));
     this.btnClose.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("btnClose.ImeMode")));
     this.btnClose.Location        = ((System.Drawing.Point)(resources.GetObject("btnClose.Location")));
     this.btnClose.Name            = "btnClose";
     this.btnClose.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("btnClose.RightToLeft")));
     this.btnClose.Size            = ((System.Drawing.Size)(resources.GetObject("btnClose.Size")));
     this.btnClose.TabIndex        = ((int)(resources.GetObject("btnClose.TabIndex")));
     this.btnClose.Text            = resources.GetString("btnClose.Text");
     this.btnClose.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("btnClose.TextAlign")));
     this.btnClose.Visible         = ((bool)(resources.GetObject("btnClose.Visible")));
     this.btnClose.Click          += new System.EventHandler(this.btnClose_Click);
     //
     // dgrdData
     //
     this.dgrdData.AccessibleDescription = resources.GetString("dgrdData.AccessibleDescription");
     this.dgrdData.AccessibleName        = resources.GetString("dgrdData.AccessibleName");
     this.dgrdData.AllowAddNew           = ((bool)(resources.GetObject("dgrdData.AllowAddNew")));
     this.dgrdData.AllowArrows           = ((bool)(resources.GetObject("dgrdData.AllowArrows")));
     this.dgrdData.AllowColMove          = ((bool)(resources.GetObject("dgrdData.AllowColMove")));
     this.dgrdData.AllowColSelect        = ((bool)(resources.GetObject("dgrdData.AllowColSelect")));
     this.dgrdData.AllowDelete           = ((bool)(resources.GetObject("dgrdData.AllowDelete")));
     this.dgrdData.AllowDrag             = ((bool)(resources.GetObject("dgrdData.AllowDrag")));
     this.dgrdData.AllowFilter           = ((bool)(resources.GetObject("dgrdData.AllowFilter")));
     this.dgrdData.AllowHorizontalSplit  = ((bool)(resources.GetObject("dgrdData.AllowHorizontalSplit")));
     this.dgrdData.AllowRowSelect        = ((bool)(resources.GetObject("dgrdData.AllowRowSelect")));
     this.dgrdData.AllowSort             = ((bool)(resources.GetObject("dgrdData.AllowSort")));
     this.dgrdData.AllowUpdate           = ((bool)(resources.GetObject("dgrdData.AllowUpdate")));
     this.dgrdData.AllowUpdateOnBlur     = ((bool)(resources.GetObject("dgrdData.AllowUpdateOnBlur")));
     this.dgrdData.AllowVerticalSplit    = ((bool)(resources.GetObject("dgrdData.AllowVerticalSplit")));
     this.dgrdData.AlternatingRows       = ((bool)(resources.GetObject("dgrdData.AlternatingRows")));
     this.dgrdData.Anchor             = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("dgrdData.Anchor")));
     this.dgrdData.BackgroundImage    = ((System.Drawing.Image)(resources.GetObject("dgrdData.BackgroundImage")));
     this.dgrdData.BorderStyle        = ((System.Windows.Forms.BorderStyle)(resources.GetObject("dgrdData.BorderStyle")));
     this.dgrdData.Caption            = resources.GetString("dgrdData.Caption");
     this.dgrdData.CaptionHeight      = ((int)(resources.GetObject("dgrdData.CaptionHeight")));
     this.dgrdData.CellTipsDelay      = ((int)(resources.GetObject("dgrdData.CellTipsDelay")));
     this.dgrdData.CellTipsWidth      = ((int)(resources.GetObject("dgrdData.CellTipsWidth")));
     this.dgrdData.ChildGrid          = ((C1.Win.C1TrueDBGrid.C1TrueDBGrid)(resources.GetObject("dgrdData.ChildGrid")));
     this.dgrdData.CollapseColor      = ((System.Drawing.Color)(resources.GetObject("dgrdData.CollapseColor")));
     this.dgrdData.ColumnFooters      = ((bool)(resources.GetObject("dgrdData.ColumnFooters")));
     this.dgrdData.ColumnHeaders      = ((bool)(resources.GetObject("dgrdData.ColumnHeaders")));
     this.dgrdData.DefColWidth        = ((int)(resources.GetObject("dgrdData.DefColWidth")));
     this.dgrdData.Dock               = ((System.Windows.Forms.DockStyle)(resources.GetObject("dgrdData.Dock")));
     this.dgrdData.EditDropDown       = ((bool)(resources.GetObject("dgrdData.EditDropDown")));
     this.dgrdData.EmptyRows          = ((bool)(resources.GetObject("dgrdData.EmptyRows")));
     this.dgrdData.Enabled            = ((bool)(resources.GetObject("dgrdData.Enabled")));
     this.dgrdData.ExpandColor        = ((System.Drawing.Color)(resources.GetObject("dgrdData.ExpandColor")));
     this.dgrdData.ExposeCellMode     = ((C1.Win.C1TrueDBGrid.ExposeCellModeEnum)(resources.GetObject("dgrdData.ExposeCellMode")));
     this.dgrdData.ExtendRightColumn  = ((bool)(resources.GetObject("dgrdData.ExtendRightColumn")));
     this.dgrdData.FetchRowStyles     = ((bool)(resources.GetObject("dgrdData.FetchRowStyles")));
     this.dgrdData.FilterBar          = ((bool)(resources.GetObject("dgrdData.FilterBar")));
     this.dgrdData.FlatStyle          = ((C1.Win.C1TrueDBGrid.FlatModeEnum)(resources.GetObject("dgrdData.FlatStyle")));
     this.dgrdData.Font               = ((System.Drawing.Font)(resources.GetObject("dgrdData.Font")));
     this.dgrdData.GroupByAreaVisible = ((bool)(resources.GetObject("dgrdData.GroupByAreaVisible")));
     this.dgrdData.GroupByCaption     = resources.GetString("dgrdData.GroupByCaption");
     this.dgrdData.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
     this.dgrdData.ImeMode                         = ((System.Windows.Forms.ImeMode)(resources.GetObject("dgrdData.ImeMode")));
     this.dgrdData.LinesPerRow                     = ((int)(resources.GetObject("dgrdData.LinesPerRow")));
     this.dgrdData.Location                        = ((System.Drawing.Point)(resources.GetObject("dgrdData.Location")));
     this.dgrdData.MarqueeStyle                    = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.dgrdData.MultiSelect                     = C1.Win.C1TrueDBGrid.MultiSelectEnum.None;
     this.dgrdData.Name                            = "dgrdData";
     this.dgrdData.PictureAddnewRow                = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureAddnewRow")));
     this.dgrdData.PictureCurrentRow               = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureCurrentRow")));
     this.dgrdData.PictureFilterBar                = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureFilterBar")));
     this.dgrdData.PictureFooterRow                = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureFooterRow")));
     this.dgrdData.PictureHeaderRow                = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureHeaderRow")));
     this.dgrdData.PictureModifiedRow              = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureModifiedRow")));
     this.dgrdData.PictureStandardRow              = ((System.Drawing.Image)(resources.GetObject("dgrdData.PictureStandardRow")));
     this.dgrdData.PreviewInfo.AllowSizing         = ((bool)(resources.GetObject("dgrdData.PreviewInfo.AllowSizing")));
     this.dgrdData.PreviewInfo.Caption             = resources.GetString("dgrdData.PreviewInfo.Caption");
     this.dgrdData.PreviewInfo.Location            = ((System.Drawing.Point)(resources.GetObject("dgrdData.PreviewInfo.Location")));
     this.dgrdData.PreviewInfo.Size                = ((System.Drawing.Size)(resources.GetObject("dgrdData.PreviewInfo.Size")));
     this.dgrdData.PreviewInfo.ToolBars            = ((bool)(resources.GetObject("dgrdData.PreviewInfo.ToolBars")));
     this.dgrdData.PreviewInfo.UIStrings.Content   = ((string[])(resources.GetObject("dgrdData.PreviewInfo.UIStrings.Content")));
     this.dgrdData.PreviewInfo.ZoomFactor          = ((System.Double)(resources.GetObject("dgrdData.PreviewInfo.ZoomFactor")));
     this.dgrdData.PrintInfo.MaxRowHeight          = ((int)(resources.GetObject("dgrdData.PrintInfo.MaxRowHeight")));
     this.dgrdData.PrintInfo.OwnerDrawPageFooter   = ((bool)(resources.GetObject("dgrdData.PrintInfo.OwnerDrawPageFooter")));
     this.dgrdData.PrintInfo.OwnerDrawPageHeader   = ((bool)(resources.GetObject("dgrdData.PrintInfo.OwnerDrawPageHeader")));
     this.dgrdData.PrintInfo.PageFooter            = resources.GetString("dgrdData.PrintInfo.PageFooter");
     this.dgrdData.PrintInfo.PageFooterHeight      = ((int)(resources.GetObject("dgrdData.PrintInfo.PageFooterHeight")));
     this.dgrdData.PrintInfo.PageHeader            = resources.GetString("dgrdData.PrintInfo.PageHeader");
     this.dgrdData.PrintInfo.PageHeaderHeight      = ((int)(resources.GetObject("dgrdData.PrintInfo.PageHeaderHeight")));
     this.dgrdData.PrintInfo.PrintHorizontalSplits = ((bool)(resources.GetObject("dgrdData.PrintInfo.PrintHorizontalSplits")));
     this.dgrdData.PrintInfo.ProgressCaption       = resources.GetString("dgrdData.PrintInfo.ProgressCaption");
     this.dgrdData.PrintInfo.RepeatColumnFooters   = ((bool)(resources.GetObject("dgrdData.PrintInfo.RepeatColumnFooters")));
     this.dgrdData.PrintInfo.RepeatColumnHeaders   = ((bool)(resources.GetObject("dgrdData.PrintInfo.RepeatColumnHeaders")));
     this.dgrdData.PrintInfo.RepeatGridHeader      = ((bool)(resources.GetObject("dgrdData.PrintInfo.RepeatGridHeader")));
     this.dgrdData.PrintInfo.RepeatSplitHeaders    = ((bool)(resources.GetObject("dgrdData.PrintInfo.RepeatSplitHeaders")));
     this.dgrdData.PrintInfo.ShowOptionsDialog     = ((bool)(resources.GetObject("dgrdData.PrintInfo.ShowOptionsDialog")));
     this.dgrdData.PrintInfo.ShowProgressForm      = ((bool)(resources.GetObject("dgrdData.PrintInfo.ShowProgressForm")));
     this.dgrdData.PrintInfo.ShowSelection         = ((bool)(resources.GetObject("dgrdData.PrintInfo.ShowSelection")));
     this.dgrdData.PrintInfo.UseGridColors         = ((bool)(resources.GetObject("dgrdData.PrintInfo.UseGridColors")));
     this.dgrdData.RecordSelectors                 = ((bool)(resources.GetObject("dgrdData.RecordSelectors")));
     this.dgrdData.RecordSelectorWidth             = ((int)(resources.GetObject("dgrdData.RecordSelectorWidth")));
     this.dgrdData.RightToLeft                     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("dgrdData.RightToLeft")));
     this.dgrdData.RowDivider.Color                = ((System.Drawing.Color)(resources.GetObject("resource.Color")));
     this.dgrdData.RowDivider.Style                = ((C1.Win.C1TrueDBGrid.LineStyleEnum)(resources.GetObject("resource.Style")));
     this.dgrdData.RowHeight                       = ((int)(resources.GetObject("dgrdData.RowHeight")));
     this.dgrdData.RowSubDividerColor              = ((System.Drawing.Color)(resources.GetObject("dgrdData.RowSubDividerColor")));
     this.dgrdData.ScrollTips                      = ((bool)(resources.GetObject("dgrdData.ScrollTips")));
     this.dgrdData.ScrollTrack                     = ((bool)(resources.GetObject("dgrdData.ScrollTrack")));
     this.dgrdData.Size                            = ((System.Drawing.Size)(resources.GetObject("dgrdData.Size")));
     this.dgrdData.SpringMode                      = ((bool)(resources.GetObject("dgrdData.SpringMode")));
     this.dgrdData.TabAcrossSplits                 = ((bool)(resources.GetObject("dgrdData.TabAcrossSplits")));
     this.dgrdData.TabIndex                        = ((int)(resources.GetObject("dgrdData.TabIndex")));
     this.dgrdData.Text                            = resources.GetString("dgrdData.Text");
     this.dgrdData.ViewCaptionWidth                = ((int)(resources.GetObject("dgrdData.ViewCaptionWidth")));
     this.dgrdData.ViewColumnWidth                 = ((int)(resources.GetObject("dgrdData.ViewColumnWidth")));
     this.dgrdData.Visible                         = ((bool)(resources.GetObject("dgrdData.Visible")));
     this.dgrdData.WrapCellPointer                 = ((bool)(resources.GetObject("dgrdData.WrapCellPointer")));
     this.dgrdData.PropBag                         = resources.GetString("dgrdData.PropBag");
     //
     // NotSetupSTDItems
     //
     this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
     this.AccessibleName        = resources.GetString("$this.AccessibleName");
     this.AutoScaleBaseSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScaleBaseSize")));
     this.AutoScroll            = ((bool)(resources.GetObject("$this.AutoScroll")));
     this.AutoScrollMargin      = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMargin")));
     this.AutoScrollMinSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMinSize")));
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.CancelButton          = this.btnClose;
     this.ClientSize            = ((System.Drawing.Size)(resources.GetObject("$this.ClientSize")));
     this.Controls.Add(this.lblMessage);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.dgrdData);
     this.Enabled       = ((bool)(resources.GetObject("$this.Enabled")));
     this.Font          = ((System.Drawing.Font)(resources.GetObject("$this.Font")));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.ImeMode       = ((System.Windows.Forms.ImeMode)(resources.GetObject("$this.ImeMode")));
     this.Location      = ((System.Drawing.Point)(resources.GetObject("$this.Location")));
     this.MaximumSize   = ((System.Drawing.Size)(resources.GetObject("$this.MaximumSize")));
     this.MinimumSize   = ((System.Drawing.Size)(resources.GetObject("$this.MinimumSize")));
     this.Name          = "NotSetupSTDItems";
     this.RightToLeft   = ((System.Windows.Forms.RightToLeft)(resources.GetObject("$this.RightToLeft")));
     this.StartPosition = ((System.Windows.Forms.FormStartPosition)(resources.GetObject("$this.StartPosition")));
     this.Text          = resources.GetString("$this.Text");
     this.Load         += new System.EventHandler(this.NotSetupSTDItems_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgrdData)).EndInit();
     this.ResumeLayout(false);
 }
示例#36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(NotConfiguredWC));
     this.lblMessage           = new System.Windows.Forms.Label();
     this.btnClose             = new System.Windows.Forms.Button();
     this.tgridNotConfiguredWC = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.ctxmnuClipboard      = new System.Windows.Forms.ContextMenu();
     this.mnuSelectAll         = new System.Windows.Forms.MenuItem();
     this.mnuCopy = new System.Windows.Forms.MenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.tgridNotConfiguredWC)).BeginInit();
     this.SuspendLayout();
     //
     // lblMessage
     //
     this.lblMessage.Location = new System.Drawing.Point(6, 6);
     this.lblMessage.Name     = "lblMessage";
     this.lblMessage.Size     = new System.Drawing.Size(524, 20);
     this.lblMessage.TabIndex = 65;
     this.lblMessage.Text     = "The following Work Centers have not been configured. Please check before running " +
                                "DCP";
     this.lblMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // btnClose
     //
     this.btnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.btnClose.Location     = new System.Drawing.Point(470, 324);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(60, 22);
     this.btnClose.TabIndex     = 64;
     this.btnClose.Text         = "&Close";
     //
     // tgridNotConfiguredWC
     //
     this.tgridNotConfiguredWC.AllowUpdate = false;
     this.tgridNotConfiguredWC.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.tgridNotConfiguredWC.CaptionHeight  = 17;
     this.tgridNotConfiguredWC.CollapseColor  = System.Drawing.Color.Black;
     this.tgridNotConfiguredWC.ContextMenu    = this.ctxmnuClipboard;
     this.tgridNotConfiguredWC.ExpandColor    = System.Drawing.Color.Black;
     this.tgridNotConfiguredWC.GroupByCaption = "Drag a column header here to group by that column";
     this.tgridNotConfiguredWC.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
     this.tgridNotConfiguredWC.Location                    = new System.Drawing.Point(6, 32);
     this.tgridNotConfiguredWC.MarqueeStyle                = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.tgridNotConfiguredWC.MultiSelect                 = C1.Win.C1TrueDBGrid.MultiSelectEnum.None;
     this.tgridNotConfiguredWC.Name                        = "tgridNotConfiguredWC";
     this.tgridNotConfiguredWC.PreviewInfo.Location        = new System.Drawing.Point(0, 0);
     this.tgridNotConfiguredWC.PreviewInfo.Size            = new System.Drawing.Size(0, 0);
     this.tgridNotConfiguredWC.PreviewInfo.ZoomFactor      = 75;
     this.tgridNotConfiguredWC.PrintInfo.ShowOptionsDialog = false;
     this.tgridNotConfiguredWC.RecordSelectorWidth         = 16;
     this.tgridNotConfiguredWC.RowDivider.Color            = System.Drawing.Color.DarkGray;
     this.tgridNotConfiguredWC.RowDivider.Style            = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.tgridNotConfiguredWC.RowHeight                   = 15;
     this.tgridNotConfiguredWC.RowSubDividerColor          = System.Drawing.Color.DarkGray;
     this.tgridNotConfiguredWC.Size                        = new System.Drawing.Size(524, 284);
     this.tgridNotConfiguredWC.TabIndex                    = 63;
     this.tgridNotConfiguredWC.PropBag                     = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"WorkCenterI" +
                                                             "D\" DataField=\"WorkCenterID\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataCol" +
                                                             "umn Level=\"0\" Caption=\"WorkCenter Code\" DataField=\"Code\"><ValueItems /><GroupInf" +
                                                             "o /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"WorkCenter Name\" DataField=\"" +
                                                             "Description\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" C" +
                                                             "aption=\"Description\" DataField=\"Description\"><ValueItems /><GroupInfo /></C1Data" +
                                                             "Column><C1DataColumn Level=\"0\" Caption=\"WorkCenterID\" DataField=\"WorkCenterID\"><" +
                                                             "ValueItems /><GroupInfo /></C1DataColumn></DataCols><Styles type=\"C1.Win.C1TrueD" +
                                                             "BGrid.Design.ContextWrapper\"><Data>HighlightRow{ForeColor:HighlightText;BackColo" +
                                                             "r:Highlight;}Caption{AlignHorz:Center;}Normal{Font:Tahoma, 11world;}Style25{}Sty" +
                                                             "le24{}Editor{}Style18{}Style19{}Style14{}Style15{}Style16{AlignHorz:Near;}Style1" +
                                                             "7{AlignHorz:Near;}Style10{AlignHorz:Near;}Style11{}OddRow{}Style13{}Style45{}Sty" +
                                                             "le12{}Style29{AlignHorz:Near;}Style28{AlignHorz:Near;}Style27{}Style26{}RecordSe" +
                                                             "lector{AlignImage:Center;}Footer{}Style23{AlignHorz:Near;}Style22{AlignHorz:Near" +
                                                             ";}Style21{}Style20{}Group{BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVer" +
                                                             "t:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}Even" +
                                                             "Row{BackColor:Aqua;}Style6{}Heading{Wrap:True;AlignVert:Center;Border:Raised,,1," +
                                                             " 1, 1, 1;ForeColor:ControlText;BackColor:Control;}Style3{}Style4{}Style7{}Style8" +
                                                             "{}Style1{}Style5{}Style41{AlignHorz:Near;}Style40{AlignHorz:Near;}Style43{}Filte" +
                                                             "rBar{}Style42{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style44{}St" +
                                                             "yle9{}Style38{}Style39{}Style36{}Style37{}Style34{AlignHorz:Near;}Style35{AlignH" +
                                                             "orz:Near;}Style32{}Style33{}Style30{}Style31{}Style2{}</Data></Styles><Splits><C" +
                                                             "1.Win.C1TrueDBGrid.MergeView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\"" +
                                                             " ColumnFooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"16" +
                                                             "\" DefRecSelWidth=\"16\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientR" +
                                                             "ect>0, 0, 520, 280</ClientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"S" +
                                                             "tyle2\" me=\"Style10\" /><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle p" +
                                                             "arent=\"EvenRow\" me=\"Style8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" />" +
                                                             "<FooterStyle parent=\"Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style1" +
                                                             "2\" /><HeadingStyle parent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"Hig" +
                                                             "hlightRow\" me=\"Style7\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowS" +
                                                             "tyle parent=\"OddRow\" me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" " +
                                                             "me=\"Style11\" /><SelectedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Nor" +
                                                             "mal\" me=\"Style1\" /><internalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" " +
                                                             "me=\"Style16\" /><Style parent=\"Style1\" me=\"Style17\" /><FooterStyle parent=\"Style3" +
                                                             "\" me=\"Style18\" /><EditorStyle parent=\"Style5\" me=\"Style19\" /><GroupHeaderStyle p" +
                                                             "arent=\"Style1\" me=\"Style21\" /><GroupFooterStyle parent=\"Style1\" me=\"Style20\" /><" +
                                                             "ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>0</DCIdx>" +
                                                             "</C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style40\" />" +
                                                             "<Style parent=\"Style1\" me=\"Style41\" /><FooterStyle parent=\"Style3\" me=\"Style42\" " +
                                                             "/><EditorStyle parent=\"Style5\" me=\"Style43\" /><GroupHeaderStyle parent=\"Style1\" " +
                                                             "me=\"Style45\" /><GroupFooterStyle parent=\"Style1\" me=\"Style44\" /><ColumnDivider>D" +
                                                             "arkGray,Single</ColumnDivider><Width>104</Width><Height>15</Height><DCIdx>4</DCI" +
                                                             "dx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style22\"" +
                                                             " /><Style parent=\"Style1\" me=\"Style23\" /><FooterStyle parent=\"Style3\" me=\"Style2" +
                                                             "4\" /><EditorStyle parent=\"Style5\" me=\"Style25\" /><GroupHeaderStyle parent=\"Style" +
                                                             "1\" me=\"Style27\" /><GroupFooterStyle parent=\"Style1\" me=\"Style26\" /><Visible>True" +
                                                             "</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>123</Width><Heigh" +
                                                             "t>15</Height><DCIdx>1</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle pa" +
                                                             "rent=\"Style2\" me=\"Style28\" /><Style parent=\"Style1\" me=\"Style29\" /><FooterStyle " +
                                                             "parent=\"Style3\" me=\"Style30\" /><EditorStyle parent=\"Style5\" me=\"Style31\" /><Grou" +
                                                             "pHeaderStyle parent=\"Style1\" me=\"Style33\" /><GroupFooterStyle parent=\"Style1\" me" +
                                                             "=\"Style32\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivide" +
                                                             "r><Width>251</Width><Height>15</Height><DCIdx>2</DCIdx></C1DisplayColumn><C1Disp" +
                                                             "layColumn><HeadingStyle parent=\"Style2\" me=\"Style34\" /><Style parent=\"Style1\" me" +
                                                             "=\"Style35\" /><FooterStyle parent=\"Style3\" me=\"Style36\" /><EditorStyle parent=\"St" +
                                                             "yle5\" me=\"Style37\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style39\" /><GroupFoot" +
                                                             "erStyle parent=\"Style1\" me=\"Style38\" /><Visible>True</Visible><ColumnDivider>Dar" +
                                                             "kGray,Single</ColumnDivider><Width>174</Width><Height>15</Height><DCIdx>3</DCIdx" +
                                                             "></C1DisplayColumn></internalCols></C1.Win.C1TrueDBGrid.MergeView></Splits><Name" +
                                                             "dStyles><Style parent=\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"Heading\" /><St" +
                                                             "yle parent=\"Heading\" me=\"Footer\" /><Style parent=\"Heading\" me=\"Caption\" /><Style" +
                                                             " parent=\"Heading\" me=\"Inactive\" /><Style parent=\"Normal\" me=\"Selected\" /><Style " +
                                                             "parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal\" me=\"HighlightRow\" /><Style " +
                                                             "parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Normal\" me=\"OddRow\" /><Style paren" +
                                                             "t=\"Heading\" me=\"RecordSelector\" /><Style parent=\"Normal\" me=\"FilterBar\" /><Style" +
                                                             " parent=\"Caption\" me=\"Group\" /></NamedStyles><vertSplits>1</vertSplits><horzSpli" +
                                                             "ts>1</horzSplits><Layout>Modified</Layout><DefaultRecSelWidth>16</DefaultRecSelW" +
                                                             "idth><ClientArea>0, 0, 520, 280</ClientArea><PrintPageHeaderStyle parent=\"\" me=\"" +
                                                             "Style14\" /><PrintPageFooterStyle parent=\"\" me=\"Style15\" /></Blob>";
     //
     // ctxmnuClipboard
     //
     this.ctxmnuClipboard.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuSelectAll,
         this.mnuCopy
     });
     //
     // mnuSelectAll
     //
     this.mnuSelectAll.Index  = 0;
     this.mnuSelectAll.Text   = "Select All";
     this.mnuSelectAll.Click += new System.EventHandler(this.mnuSelectAll_Click);
     //
     // mnuCopy
     //
     this.mnuCopy.Index  = 1;
     this.mnuCopy.Text   = "Copy";
     this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
     //
     // NotConfiguredWC
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnClose;
     this.ClientSize        = new System.Drawing.Size(536, 351);
     this.Controls.Add(this.lblMessage);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.tgridNotConfiguredWC);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "NotConfiguredWC";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Not Configured Work Centers";
     this.Load           += new System.EventHandler(this.NotConfiguredWC_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tgridNotConfiguredWC)).EndInit();
     this.ResumeLayout(false);
 }
示例#37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     C1.Win.C1TrueDBGrid.Style style1 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style2 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style3 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style4 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style5 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style6 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style7 = new C1.Win.C1TrueDBGrid.Style();
     C1.Win.C1TrueDBGrid.Style style8 = new C1.Win.C1TrueDBGrid.Style();
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dataSet11           = new UsingC1TDBDropdown.DataSet1();
     this.c1TrueDBDropdown1   = new C1.Win.C1TrueDBGrid.C1TrueDBDropdown();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbDataAdapter2   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbInsertCommand2 = new System.Data.OleDb.OleDbCommand();
     this.oleDbSelectCommand2 = new System.Data.OleDb.OleDbCommand();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBDropdown1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.Caption    = "Products Table";
     this.c1TrueDBGrid1.DataSource = this.dataSet11.Products;
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBGrid1.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(16, 16);
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("c1TrueDBGrid1.PrintInfo.PageSettings")));
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(400, 216);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PropBag                = resources.GetString("c1TrueDBGrid1.PropBag");
     //
     // dataSet11
     //
     this.dataSet11.DataSetName             = "DataSet1";
     this.dataSet11.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // c1TrueDBDropdown1
     //
     this.c1TrueDBDropdown1.AllowColMove        = true;
     this.c1TrueDBDropdown1.AllowColSelect      = true;
     this.c1TrueDBDropdown1.AllowRowSizing      = C1.Win.C1TrueDBGrid.RowSizingEnum.AllRows;
     this.c1TrueDBDropdown1.AlternatingRows     = false;
     this.c1TrueDBDropdown1.CaptionStyle        = style1;
     this.c1TrueDBDropdown1.ColumnCaptionHeight = 17;
     this.c1TrueDBDropdown1.ColumnFooterHeight  = 17;
     this.c1TrueDBDropdown1.DataSource          = this.dataSet11.Categories;
     this.c1TrueDBDropdown1.EvenRowStyle        = style2;
     this.c1TrueDBDropdown1.FetchRowStyles      = false;
     this.c1TrueDBDropdown1.FooterStyle         = style3;
     this.c1TrueDBDropdown1.HeadingStyle        = style4;
     this.c1TrueDBDropdown1.HighLightRowStyle   = style5;
     this.c1TrueDBDropdown1.Images.Add(((System.Drawing.Image)(resources.GetObject("c1TrueDBDropdown1.Images"))));
     this.c1TrueDBDropdown1.Location            = new System.Drawing.Point(120, 104);
     this.c1TrueDBDropdown1.Name                = "c1TrueDBDropdown1";
     this.c1TrueDBDropdown1.OddRowStyle         = style6;
     this.c1TrueDBDropdown1.RecordSelectorStyle = style7;
     this.c1TrueDBDropdown1.RowDivider.Color    = System.Drawing.Color.DarkGray;
     this.c1TrueDBDropdown1.RowDivider.Style    = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBDropdown1.RowSubDividerColor  = System.Drawing.Color.DarkGray;
     this.c1TrueDBDropdown1.ScrollTips          = false;
     this.c1TrueDBDropdown1.Size                = new System.Drawing.Size(192, 104);
     this.c1TrueDBDropdown1.Style               = style8;
     this.c1TrueDBDropdown1.TabIndex            = 1;
     this.c1TrueDBDropdown1.Text                = "c1TrueDBDropdown1";
     this.c1TrueDBDropdown1.Visible             = false;
     this.c1TrueDBDropdown1.PropBag             = resources.GetString("c1TrueDBDropdown1.PropBag");
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Categories", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("CategoryID", "CategoryID"),
             new System.Data.Common.DataColumnMapping("CategoryName", "CategoryName"),
             new System.Data.Common.DataColumnMapping("Description", "Description"),
             new System.Data.Common.DataColumnMapping("Picture", "Picture")
         })
     });
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO Categories(CategoryID, CategoryName, Description, Picture) VALUES (?," +
                                            " ?, ?, ?)";
     this.oleDbInsertCommand1.Connection = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("CategoryID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "CategoryID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("CategoryName", System.Data.OleDb.OleDbType.VarWChar, 15, "CategoryName"),
         new System.Data.OleDb.OleDbParameter("Description", System.Data.OleDb.OleDbType.VarWChar, 0, "Description"),
         new System.Data.OleDb.OleDbParameter("Picture", System.Data.OleDb.OleDbType.VarBinary, 0, "Picture")
     });
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Program Files\\ComponentOne Studi" +
                                              @"o.NET 2.0\Common\C1Nwind.mdb;";
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT CategoryID, CategoryName, Description, Picture FROM Categories";
     this.oleDbSelectCommand1.Connection  = this.oleDbConnection1;
     //
     // oleDbDataAdapter2
     //
     this.oleDbDataAdapter2.InsertCommand = this.oleDbInsertCommand2;
     this.oleDbDataAdapter2.SelectCommand = this.oleDbSelectCommand2;
     this.oleDbDataAdapter2.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Products", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("ProductID", "ProductID"),
             new System.Data.Common.DataColumnMapping("ProductName", "ProductName"),
             new System.Data.Common.DataColumnMapping("SupplierID", "SupplierID"),
             new System.Data.Common.DataColumnMapping("CategoryID", "CategoryID"),
             new System.Data.Common.DataColumnMapping("QuantityPerUnit", "QuantityPerUnit"),
             new System.Data.Common.DataColumnMapping("UnitPrice", "UnitPrice"),
             new System.Data.Common.DataColumnMapping("UnitsInStock", "UnitsInStock"),
             new System.Data.Common.DataColumnMapping("UnitsOnOrder", "UnitsOnOrder"),
             new System.Data.Common.DataColumnMapping("ReorderLevel", "ReorderLevel"),
             new System.Data.Common.DataColumnMapping("Discontinued", "Discontinued")
         })
     });
     //
     // oleDbInsertCommand2
     //
     this.oleDbInsertCommand2.CommandText = "INSERT INTO Products(CategoryID, Discontinued, ProductID, ProductName, QuantityPe" +
                                            "rUnit, ReorderLevel, SupplierID, UnitPrice, UnitsInStock, UnitsOnOrder) VALUES (" +
                                            "?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
     this.oleDbInsertCommand2.Connection = this.oleDbConnection1;
     this.oleDbInsertCommand2.Parameters.AddRange(new System.Data.OleDb.OleDbParameter[] {
         new System.Data.OleDb.OleDbParameter("CategoryID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "CategoryID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("Discontinued", System.Data.OleDb.OleDbType.Boolean, 2, "Discontinued"),
         new System.Data.OleDb.OleDbParameter("ProductID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "ProductID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("ProductName", System.Data.OleDb.OleDbType.VarWChar, 40, "ProductName"),
         new System.Data.OleDb.OleDbParameter("QuantityPerUnit", System.Data.OleDb.OleDbType.VarWChar, 20, "QuantityPerUnit"),
         new System.Data.OleDb.OleDbParameter("ReorderLevel", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(5)), ((byte)(0)), "ReorderLevel", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("SupplierID", System.Data.OleDb.OleDbType.Integer, 0, System.Data.ParameterDirection.Input, false, ((byte)(10)), ((byte)(0)), "SupplierID", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("UnitPrice", System.Data.OleDb.OleDbType.Currency, 0, System.Data.ParameterDirection.Input, false, ((byte)(19)), ((byte)(0)), "UnitPrice", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("UnitsInStock", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(5)), ((byte)(0)), "UnitsInStock", System.Data.DataRowVersion.Current, null),
         new System.Data.OleDb.OleDbParameter("UnitsOnOrder", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((byte)(5)), ((byte)(0)), "UnitsOnOrder", System.Data.DataRowVersion.Current, null)
     });
     //
     // oleDbSelectCommand2
     //
     this.oleDbSelectCommand2.CommandText = "SELECT CategoryID, Discontinued, ProductID, ProductName, QuantityPerUnit, Reorder" +
                                            "Level, SupplierID, UnitPrice, UnitsInStock, UnitsOnOrder FROM Products";
     this.oleDbSelectCommand2.Connection = this.oleDbConnection1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(432, 270);
     this.Controls.Add(this.c1TrueDBDropdown1);
     this.Controls.Add(this.c1TrueDBGrid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBDropdown1)).EndInit();
     this.ResumeLayout(false);
 }
示例#38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ManufacturingClose));
     this.dtmToDueDate      = new C1.Win.C1Input.C1DateEdit();
     this.dtmFromDueDate    = new C1.Win.C1Input.C1DateEdit();
     this.dtmPostDate       = new C1.Win.C1Input.C1DateEdit();
     this.btnSearchMasLoc   = new System.Windows.Forms.Button();
     this.txtMasLoc         = new System.Windows.Forms.TextBox();
     this.lblMasLoc         = new System.Windows.Forms.Label();
     this.lblPostDate       = new System.Windows.Forms.Label();
     this.gridWOClose       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.btnSearch         = new System.Windows.Forms.Button();
     this.btnCloseWO        = new System.Windows.Forms.Button();
     this.btnClose          = new System.Windows.Forms.Button();
     this.btnHelp           = new System.Windows.Forms.Button();
     this.lblCCN            = new System.Windows.Forms.Label();
     this.chkSelectAllManuf = new System.Windows.Forms.CheckBox();
     this.lblToDueDate      = new System.Windows.Forms.Label();
     this.lblFromDueDate    = new System.Windows.Forms.Label();
     this.cboCCN            = new C1.Win.C1List.C1Combo();
     ((System.ComponentModel.ISupportInitialize)(this.dtmToDueDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmFromDueDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmPostDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridWOClose)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboCCN)).BeginInit();
     this.SuspendLayout();
     //
     // dtmToDueDate
     //
     //
     // dtmToDueDate.Calendar
     //
     this.dtmToDueDate.Calendar.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.dtmToDueDate.CustomFormat     = "dd-MM-yyyy";
     this.dtmToDueDate.EmptyAsNull      = true;
     this.dtmToDueDate.FormatType       = C1.Win.C1Input.FormatTypeEnum.CustomFormat;
     this.dtmToDueDate.Location         = new System.Drawing.Point(292, 48);
     this.dtmToDueDate.Name             = "dtmToDueDate";
     this.dtmToDueDate.Size             = new System.Drawing.Size(93, 20);
     this.dtmToDueDate.TabIndex         = 10;
     this.dtmToDueDate.Tag            = null;
     this.dtmToDueDate.TextAlign      = System.Windows.Forms.HorizontalAlignment.Center;
     this.dtmToDueDate.VisibleButtons = C1.Win.C1Input.DropDownControlButtonFlags.DropDown;
     //
     // dtmFromDueDate
     //
     //
     // dtmFromDueDate.Calendar
     //
     this.dtmFromDueDate.Calendar.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.dtmFromDueDate.CustomFormat     = "dd-MM-yyyy";
     this.dtmFromDueDate.EmptyAsNull      = true;
     this.dtmFromDueDate.FormatType       = C1.Win.C1Input.FormatTypeEnum.CustomFormat;
     this.dtmFromDueDate.Location         = new System.Drawing.Point(99, 48);
     this.dtmFromDueDate.Name             = "dtmFromDueDate";
     this.dtmFromDueDate.Size             = new System.Drawing.Size(95, 20);
     this.dtmFromDueDate.TabIndex         = 8;
     this.dtmFromDueDate.Tag            = null;
     this.dtmFromDueDate.TextAlign      = System.Windows.Forms.HorizontalAlignment.Center;
     this.dtmFromDueDate.VisibleButtons = C1.Win.C1Input.DropDownControlButtonFlags.DropDown;
     //
     // dtmPostDate
     //
     //
     // dtmPostDate.Calendar
     //
     this.dtmPostDate.Calendar.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.dtmPostDate.CustomFormat     = "dd-MM-yyyy";
     this.dtmPostDate.EmptyAsNull      = true;
     this.dtmPostDate.FormatType       = C1.Win.C1Input.FormatTypeEnum.CustomFormat;
     this.dtmPostDate.Location         = new System.Drawing.Point(100, 4);
     this.dtmPostDate.Name             = "dtmPostDate";
     this.dtmPostDate.Size             = new System.Drawing.Size(93, 20);
     this.dtmPostDate.TabIndex         = 3;
     this.dtmPostDate.Tag            = null;
     this.dtmPostDate.TextAlign      = System.Windows.Forms.HorizontalAlignment.Center;
     this.dtmPostDate.VisibleButtons = C1.Win.C1Input.DropDownControlButtonFlags.DropDown;
     //
     // btnSearchMasLoc
     //
     this.btnSearchMasLoc.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnSearchMasLoc.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnSearchMasLoc.Location  = new System.Drawing.Point(194, 26);
     this.btnSearchMasLoc.Name      = "btnSearchMasLoc";
     this.btnSearchMasLoc.Size      = new System.Drawing.Size(24, 20);
     this.btnSearchMasLoc.TabIndex  = 6;
     this.btnSearchMasLoc.Text      = "...";
     this.btnSearchMasLoc.Click    += new System.EventHandler(this.btnSearchMasLoc_Click);
     //
     // txtMasLoc
     //
     this.txtMasLoc.Location = new System.Drawing.Point(100, 26);
     this.txtMasLoc.Name     = "txtMasLoc";
     this.txtMasLoc.Size     = new System.Drawing.Size(93, 20);
     this.txtMasLoc.TabIndex = 5;
     this.txtMasLoc.Text     = "";
     this.txtMasLoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMasLoc_KeyDown);
     this.txtMasLoc.Leave   += new System.EventHandler(this.txtMasLoc_Leave);
     //
     // lblMasLoc
     //
     this.lblMasLoc.ForeColor = System.Drawing.Color.Maroon;
     this.lblMasLoc.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.lblMasLoc.Location  = new System.Drawing.Point(5, 26);
     this.lblMasLoc.Name      = "lblMasLoc";
     this.lblMasLoc.Size      = new System.Drawing.Size(93, 20);
     this.lblMasLoc.TabIndex  = 4;
     this.lblMasLoc.Text      = "Mas. Location";
     this.lblMasLoc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblPostDate
     //
     this.lblPostDate.ForeColor = System.Drawing.Color.Maroon;
     this.lblPostDate.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.lblPostDate.Location  = new System.Drawing.Point(5, 4);
     this.lblPostDate.Name      = "lblPostDate";
     this.lblPostDate.Size      = new System.Drawing.Size(93, 20);
     this.lblPostDate.TabIndex  = 2;
     this.lblPostDate.Text      = "Post Date";
     this.lblPostDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridWOClose
     //
     this.gridWOClose.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.gridWOClose.CaptionHeight  = 17;
     this.gridWOClose.CollapseColor  = System.Drawing.Color.Black;
     this.gridWOClose.ExpandColor    = System.Drawing.Color.Black;
     this.gridWOClose.FilterBar      = true;
     this.gridWOClose.FlatStyle      = C1.Win.C1TrueDBGrid.FlatModeEnum.System;
     this.gridWOClose.Font           = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.gridWOClose.GroupByCaption = "Drag a column header here to group by that column";
     this.gridWOClose.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
     this.gridWOClose.Location                    = new System.Drawing.Point(3, 72);
     this.gridWOClose.MarqueeStyle                = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.gridWOClose.Name                        = "gridWOClose";
     this.gridWOClose.PreviewInfo.Location        = new System.Drawing.Point(0, 0);
     this.gridWOClose.PreviewInfo.Size            = new System.Drawing.Size(0, 0);
     this.gridWOClose.PreviewInfo.ZoomFactor      = 75;
     this.gridWOClose.PrintInfo.ShowOptionsDialog = false;
     this.gridWOClose.RecordSelectorWidth         = 17;
     this.gridWOClose.RowDivider.Color            = System.Drawing.Color.DarkGray;
     this.gridWOClose.RowDivider.Style            = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.gridWOClose.RowHeight                   = 15;
     this.gridWOClose.RowSubDividerColor          = System.Drawing.Color.DarkGray;
     this.gridWOClose.Size                        = new System.Drawing.Size(626, 352);
     this.gridWOClose.TabIndex                    = 12;
     this.gridWOClose.Text                        = "c1TrueDBGrid1";
     this.gridWOClose.AfterColEdit               += new C1.Win.C1TrueDBGrid.ColEventHandler(this.gridWOClose_AfterColEdit);
     this.gridWOClose.PropBag                     = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Select\" Dat" +
                                                    "aField=\"Selected\"><ValueItems Presentation=\"CheckBox\" /><GroupInfo /></C1DataCol" +
                                                    "umn><C1DataColumn Level=\"0\" Caption=\"Work Order\" DataField=\"WorkOrderNo\"><ValueI" +
                                                    "tems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"WO Line\" Dat" +
                                                    "aField=\"Line\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" " +
                                                    "Caption=\"Open Quantity\" DataField=\"OpenQuantity\"><ValueItems /><GroupInfo /></C1" +
                                                    "DataColumn><C1DataColumn Level=\"0\" Caption=\"Part Number\" DataField=\"PartNumber\">" +
                                                    "<ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Part " +
                                                    "Name\" DataField=\"Description\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataC" +
                                                    "olumn Level=\"0\" Caption=\"Model\" DataField=\"Revision\"><ValueItems /><GroupInfo />" +
                                                    "</C1DataColumn><C1DataColumn Level=\"0\" Caption=\"UM\" DataField=\"UM\"><ValueItems /" +
                                                    "><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Start Date, Time\" " +
                                                    "DataField=\"StartDate\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Le" +
                                                    "vel=\"0\" Caption=\"Due Date, Time\" DataField=\"DueDate\"><ValueItems /><GroupInfo />" +
                                                    "</C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Category\" DataField=\"ITM_Categor" +
                                                    "yCode\"><ValueItems /><GroupInfo /></C1DataColumn></DataCols><Styles type=\"C1.Win" +
                                                    ".C1TrueDBGrid.Design.ContextWrapper\"><Data>HighlightRow{ForeColor:HighlightText;" +
                                                    "BackColor:Highlight;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCa" +
                                                    "ption;}Style78{}Style79{}Selected{ForeColor:HighlightText;BackColor:Highlight;}E" +
                                                    "ditor{}Style72{}Style73{}Style70{AlignHorz:Center;}Style71{AlignHorz:Near;}Style" +
                                                    "76{AlignHorz:Center;}Style77{AlignHorz:Near;}Style74{}Style75{}Style81{}Style80{" +
                                                    "}FilterBar{}Heading{Wrap:True;AlignVert:Center;Border:Raised,,1, 1, 1, 1;ForeCol" +
                                                    "or:ControlText;BackColor:Control;}Style18{}Style19{}Style14{}Style15{}Style16{Al" +
                                                    "ignHorz:Center;}Style17{AlignHorz:Near;}Style10{AlignHorz:Near;}Style11{}Style12" +
                                                    "{}Style13{}Style29{AlignHorz:Near;}Style27{}Style22{AlignHorz:Near;}Style28{Alig" +
                                                    "nHorz:Center;}Style26{}Style9{}Style8{}Style25{}Style24{}Style5{}Style4{}Style7{" +
                                                    "}Style6{}Style1{}Style23{AlignHorz:Near;}Style3{}Style2{}Style21{}Style20{}OddRo" +
                                                    "w{}Style38{}Style39{}Style36{}Style37{}Style34{AlignHorz:Center;}Style35{AlignHo" +
                                                    "rz:Near;}Style32{}Style33{}Style30{}Style49{}Style48{}Style31{}Normal{Font:Micro" +
                                                    "soft Sans Serif, 8.25pt;}Style41{AlignHorz:Near;}Style40{AlignHorz:Center;}Style" +
                                                    "43{}Style42{}Style45{}Style44{}Style47{AlignHorz:Near;}Style46{AlignHorz:Center;" +
                                                    "}EvenRow{BackColor:Aqua;}Style59{AlignHorz:Near;}Style58{AlignHorz:Center;}Recor" +
                                                    "dSelector{AlignImage:Center;}Style51{}Style50{}Footer{}Style52{AlignHorz:Center;" +
                                                    "}Style53{AlignHorz:Near;}Style54{}Style55{}Style56{}Style57{}Caption{AlignHorz:C" +
                                                    "enter;}Style69{}Style68{}Style63{}Style62{}Style61{}Style60{}Style67{}Style66{}S" +
                                                    "tyle65{AlignHorz:Near;}Style64{AlignHorz:Center;}Group{BackColor:ControlDark;Bor" +
                                                    "der:None,,0, 0, 0, 0;AlignVert:Center;}</Data></Styles><Splits><C1.Win.C1TrueDBG" +
                                                    "rid.MergeView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHe" +
                                                    "ight=\"17\" FilterBar=\"True\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"" +
                                                    "17\" DefRecSelWidth=\"17\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><Clien" +
                                                    "tRect>0, 0, 622, 348</ClientRect><BorderSide>0</BorderSide><CaptionStyle parent=" +
                                                    "\"Style2\" me=\"Style10\" /><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle" +
                                                    " parent=\"EvenRow\" me=\"Style8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" " +
                                                    "/><FooterStyle parent=\"Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Styl" +
                                                    "e12\" /><HeadingStyle parent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"H" +
                                                    "ighlightRow\" me=\"Style7\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRo" +
                                                    "wStyle parent=\"OddRow\" me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector" +
                                                    "\" me=\"Style11\" /><SelectedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"N" +
                                                    "ormal\" me=\"Style1\" /><internalCols><C1DisplayColumn><HeadingStyle parent=\"Style2" +
                                                    "\" me=\"Style16\" /><Style parent=\"Style1\" me=\"Style17\" /><FooterStyle parent=\"Styl" +
                                                    "e3\" me=\"Style18\" /><EditorStyle parent=\"Style5\" me=\"Style19\" /><GroupHeaderStyle" +
                                                    " parent=\"Style1\" me=\"Style21\" /><GroupFooterStyle parent=\"Style1\" me=\"Style20\" /" +
                                                    "><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>47<" +
                                                    "/Width><Height>15</Height><DCIdx>0</DCIdx></C1DisplayColumn><C1DisplayColumn><He" +
                                                    "adingStyle parent=\"Style2\" me=\"Style28\" /><Style parent=\"Style1\" me=\"Style29\" />" +
                                                    "<FooterStyle parent=\"Style3\" me=\"Style30\" /><EditorStyle parent=\"Style5\" me=\"Sty" +
                                                    "le31\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style33\" /><GroupFooterStyle paren" +
                                                    "t=\"Style1\" me=\"Style32\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single<" +
                                                    "/ColumnDivider><Width>119</Width><Height>15</Height><DCIdx>1</DCIdx></C1DisplayC" +
                                                    "olumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style34\" /><Style paren" +
                                                    "t=\"Style1\" me=\"Style35\" /><FooterStyle parent=\"Style3\" me=\"Style36\" /><EditorSty" +
                                                    "le parent=\"Style5\" me=\"Style37\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style39\"" +
                                                    " /><GroupFooterStyle parent=\"Style1\" me=\"Style38\" /><Visible>True</Visible><Colu" +
                                                    "mnDivider>DarkGray,Single</ColumnDivider><Width>56</Width><Height>15</Height><DC" +
                                                    "Idx>2</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me" +
                                                    "=\"Style46\" /><Style parent=\"Style1\" me=\"Style47\" /><FooterStyle parent=\"Style3\" " +
                                                    "me=\"Style48\" /><EditorStyle parent=\"Style5\" me=\"Style49\" /><GroupHeaderStyle par" +
                                                    "ent=\"Style1\" me=\"Style51\" /><GroupFooterStyle parent=\"Style1\" me=\"Style50\" /><Vi" +
                                                    "sible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>110</Wi" +
                                                    "dth><Height>15</Height><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayColumn><Headi" +
                                                    "ngStyle parent=\"Style2\" me=\"Style52\" /><Style parent=\"Style1\" me=\"Style53\" /><Fo" +
                                                    "oterStyle parent=\"Style3\" me=\"Style54\" /><EditorStyle parent=\"Style5\" me=\"Style5" +
                                                    "5\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style57\" /><GroupFooterStyle parent=\"" +
                                                    "Style1\" me=\"Style56\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</Co" +
                                                    "lumnDivider><Width>137</Width><Height>15</Height><DCIdx>5</DCIdx></C1DisplayColu" +
                                                    "mn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style58\" /><Style parent=\"" +
                                                    "Style1\" me=\"Style59\" /><FooterStyle parent=\"Style3\" me=\"Style60\" /><EditorStyle " +
                                                    "parent=\"Style5\" me=\"Style61\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style63\" />" +
                                                    "<GroupFooterStyle parent=\"Style1\" me=\"Style62\" /><Visible>True</Visible><ColumnD" +
                                                    "ivider>DarkGray,Single</ColumnDivider><Width>57</Width><Height>15</Height><DCIdx" +
                                                    ">6</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"S" +
                                                    "tyle22\" /><Style parent=\"Style1\" me=\"Style23\" /><FooterStyle parent=\"Style3\" me=" +
                                                    "\"Style24\" /><EditorStyle parent=\"Style5\" me=\"Style25\" /><GroupHeaderStyle parent" +
                                                    "=\"Style1\" me=\"Style27\" /><GroupFooterStyle parent=\"Style1\" me=\"Style26\" /><Visib" +
                                                    "le>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Heigh" +
                                                    "t><DCIdx>10</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Styl" +
                                                    "e2\" me=\"Style40\" /><Style parent=\"Style1\" me=\"Style41\" /><FooterStyle parent=\"St" +
                                                    "yle3\" me=\"Style42\" /><EditorStyle parent=\"Style5\" me=\"Style43\" /><GroupHeaderSty" +
                                                    "le parent=\"Style1\" me=\"Style45\" /><GroupFooterStyle parent=\"Style1\" me=\"Style44\"" +
                                                    " /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>8" +
                                                    "6</Width><Height>15</Height><DCIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><" +
                                                    "HeadingStyle parent=\"Style2\" me=\"Style64\" /><Style parent=\"Style1\" me=\"Style65\" " +
                                                    "/><FooterStyle parent=\"Style3\" me=\"Style66\" /><EditorStyle parent=\"Style5\" me=\"S" +
                                                    "tyle67\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style69\" /><GroupFooterStyle par" +
                                                    "ent=\"Style1\" me=\"Style68\" /><Visible>True</Visible><ColumnDivider>DarkGray,Singl" +
                                                    "e</ColumnDivider><Width>34</Width><Height>15</Height><DCIdx>7</DCIdx></C1Display" +
                                                    "Column><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style70\" /><Style pare" +
                                                    "nt=\"Style1\" me=\"Style71\" /><FooterStyle parent=\"Style3\" me=\"Style72\" /><EditorSt" +
                                                    "yle parent=\"Style5\" me=\"Style73\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style75" +
                                                    "\" /><GroupFooterStyle parent=\"Style1\" me=\"Style74\" /><Visible>True</Visible><Col" +
                                                    "umnDivider>DarkGray,Single</ColumnDivider><Width>120</Width><Height>15</Height><" +
                                                    "DCIdx>8</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" " +
                                                    "me=\"Style76\" /><Style parent=\"Style1\" me=\"Style77\" /><FooterStyle parent=\"Style3" +
                                                    "\" me=\"Style78\" /><EditorStyle parent=\"Style5\" me=\"Style79\" /><GroupHeaderStyle p" +
                                                    "arent=\"Style1\" me=\"Style81\" /><GroupFooterStyle parent=\"Style1\" me=\"Style80\" /><" +
                                                    "Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>120</" +
                                                    "Width><Height>15</Height><DCIdx>9</DCIdx></C1DisplayColumn></internalCols></C1.W" +
                                                    "in.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /><" +
                                                    "Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /><Styl" +
                                                    "e parent=\"Heading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /><Style" +
                                                    " parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Style par" +
                                                    "ent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style pa" +
                                                    "rent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><Style" +
                                                    " parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></NamedSt" +
                                                    "yles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified</Layou" +
                                                    "t><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 622, 348</ClientA" +
                                                    "rea><PrintPageHeaderStyle parent=\"\" me=\"Style14\" /><PrintPageFooterStyle parent=" +
                                                    "\"\" me=\"Style15\" /></Blob>";
     //
     // btnSearch
     //
     this.btnSearch.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnSearch.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnSearch.Location  = new System.Drawing.Point(569, 46);
     this.btnSearch.Name      = "btnSearch";
     this.btnSearch.Size      = new System.Drawing.Size(60, 23);
     this.btnSearch.TabIndex  = 11;
     this.btnSearch.Text      = "&Search";
     this.btnSearch.Click    += new System.EventHandler(this.btnSearch_Click);
     //
     // btnCloseWO
     //
     this.btnCloseWO.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCloseWO.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCloseWO.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnCloseWO.Location  = new System.Drawing.Point(4, 426);
     this.btnCloseWO.Name      = "btnCloseWO";
     this.btnCloseWO.Size      = new System.Drawing.Size(118, 23);
     this.btnCloseWO.TabIndex  = 14;
     this.btnCloseWO.Text      = "Close &Work Orders";
     this.btnCloseWO.Click    += new System.EventHandler(this.btnCloseWO_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.btnClose.Location     = new System.Drawing.Point(569, 426);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(60, 23);
     this.btnClose.TabIndex     = 16;
     this.btnClose.Text         = "&Close";
     this.btnClose.Click       += new System.EventHandler(this.btnClose_Click);
     //
     // btnHelp
     //
     this.btnHelp.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnHelp.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnHelp.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnHelp.Location  = new System.Drawing.Point(509, 426);
     this.btnHelp.Name      = "btnHelp";
     this.btnHelp.Size      = new System.Drawing.Size(60, 23);
     this.btnHelp.TabIndex  = 15;
     this.btnHelp.Text      = "&Help";
     this.btnHelp.Click    += new System.EventHandler(this.btnHelp_Click);
     //
     // lblCCN
     //
     this.lblCCN.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblCCN.ForeColor = System.Drawing.Color.Maroon;
     this.lblCCN.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.lblCCN.Location  = new System.Drawing.Point(516, 4);
     this.lblCCN.Name      = "lblCCN";
     this.lblCCN.Size      = new System.Drawing.Size(32, 20);
     this.lblCCN.TabIndex  = 0;
     this.lblCCN.Text      = "CCN";
     this.lblCCN.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // chkSelectAllManuf
     //
     this.chkSelectAllManuf.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkSelectAllManuf.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.chkSelectAllManuf.Location        = new System.Drawing.Point(129, 426);
     this.chkSelectAllManuf.Name            = "chkSelectAllManuf";
     this.chkSelectAllManuf.Size            = new System.Drawing.Size(85, 20);
     this.chkSelectAllManuf.TabIndex        = 13;
     this.chkSelectAllManuf.Text            = "Select &All";
     this.chkSelectAllManuf.Enter          += new System.EventHandler(this.chkSelectAllManuf_Enter);
     this.chkSelectAllManuf.Leave          += new System.EventHandler(this.chkSelectAllManuf_Leave);
     this.chkSelectAllManuf.CheckedChanged += new System.EventHandler(this.chkSelectAllManuf_CheckedChanged);
     //
     // lblToDueDate
     //
     this.lblToDueDate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblToDueDate.ForeColor = System.Drawing.Color.Black;
     this.lblToDueDate.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.lblToDueDate.Location  = new System.Drawing.Point(220, 48);
     this.lblToDueDate.Name      = "lblToDueDate";
     this.lblToDueDate.Size      = new System.Drawing.Size(70, 20);
     this.lblToDueDate.TabIndex  = 9;
     this.lblToDueDate.Text      = "To Due Date";
     this.lblToDueDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblFromDueDate
     //
     this.lblFromDueDate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblFromDueDate.ForeColor = System.Drawing.Color.Black;
     this.lblFromDueDate.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.lblFromDueDate.Location  = new System.Drawing.Point(5, 48);
     this.lblFromDueDate.Name      = "lblFromDueDate";
     this.lblFromDueDate.Size      = new System.Drawing.Size(93, 20);
     this.lblFromDueDate.TabIndex  = 7;
     this.lblFromDueDate.Text      = "From Due Date";
     this.lblFromDueDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cboCCN
     //
     this.cboCCN.AddItemSeparator    = ';';
     this.cboCCN.Anchor              = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cboCCN.Caption             = "";
     this.cboCCN.CaptionHeight       = 17;
     this.cboCCN.CharacterCasing     = System.Windows.Forms.CharacterCasing.Normal;
     this.cboCCN.ColumnCaptionHeight = 17;
     this.cboCCN.ColumnFooterHeight  = 17;
     this.cboCCN.ComboStyle          = C1.Win.C1List.ComboStyleEnum.DropdownList;
     this.cboCCN.ContentHeight       = 15;
     this.cboCCN.DeadAreaBackColor   = System.Drawing.Color.Empty;
     this.cboCCN.EditorBackColor     = System.Drawing.SystemColors.Window;
     this.cboCCN.EditorFont          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.cboCCN.EditorForeColor     = System.Drawing.SystemColors.WindowText;
     this.cboCCN.EditorHeight        = 15;
     this.cboCCN.FlatStyle           = C1.Win.C1List.FlatModeEnum.System;
     this.cboCCN.GapHeight           = 2;
     this.cboCCN.ItemHeight          = 15;
     this.cboCCN.Location            = new System.Drawing.Point(550, 4);
     this.cboCCN.MatchEntryTimeout   = ((long)(2000));
     this.cboCCN.MaxDropDownItems    = ((short)(5));
     this.cboCCN.MaxLength           = 32767;
     this.cboCCN.MouseCursor         = System.Windows.Forms.Cursors.Default;
     this.cboCCN.Name               = "cboCCN";
     this.cboCCN.RowDivider.Color   = System.Drawing.Color.DarkGray;
     this.cboCCN.RowDivider.Style   = C1.Win.C1List.LineStyleEnum.None;
     this.cboCCN.RowSubDividerColor = System.Drawing.Color.DarkGray;
     this.cboCCN.Size               = new System.Drawing.Size(78, 21);
     this.cboCCN.TabIndex           = 1;
     this.cboCCN.Text               = "CCN";
     this.cboCCN.PropBag            = "<?xml version=\"1.0\"?><Blob><Styles type=\"C1.Win.C1List.Design.ContextWrapper\"><Da" +
                                      "ta>Group{BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVert:Center;}Style2{" +
                                      "}Style5{}Style4{}Style7{}Style6{}EvenRow{BackColor:Aqua;}Selected{ForeColor:High" +
                                      "lightText;BackColor:Highlight;}Style3{}Inactive{ForeColor:InactiveCaptionText;Ba" +
                                      "ckColor:InactiveCaption;}Footer{}Caption{AlignHorz:Center;}Normal{}HighlightRow{" +
                                      "ForeColor:HighlightText;BackColor:Highlight;}Style9{AlignHorz:Near;}OddRow{}Reco" +
                                      "rdSelector{AlignImage:Center;}Heading{Wrap:True;AlignVert:Center;Border:Raised,," +
                                      "1, 1, 1, 1;ForeColor:ControlText;BackColor:Control;}Style8{}Style10{}Style11{}St" +
                                      "yle1{}</Data></Styles><Splits><C1.Win.C1List.ListBoxView AllowColSelect=\"False\" " +
                                      "Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight=\"17\" Vert" +
                                      "icalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 0, 118, 158</Client" +
                                      "Rect><VScrollBar><Width>17</Width></VScrollBar><HScrollBar><Height>17</Height></" +
                                      "HScrollBar><CaptionStyle parent=\"Style2\" me=\"Style9\" /><EvenRowStyle parent=\"Eve" +
                                      "nRow\" me=\"Style7\" /><FooterStyle parent=\"Footer\" me=\"Style3\" /><GroupStyle paren" +
                                      "t=\"Group\" me=\"Style11\" /><HeadingStyle parent=\"Heading\" me=\"Style2\" /><HighLight" +
                                      "RowStyle parent=\"HighlightRow\" me=\"Style6\" /><InactiveStyle parent=\"Inactive\" me" +
                                      "=\"Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style8\" /><RecordSelectorStyle pare" +
                                      "nt=\"RecordSelector\" me=\"Style10\" /><SelectedStyle parent=\"Selected\" me=\"Style5\" " +
                                      "/><Style parent=\"Normal\" me=\"Style1\" /></C1.Win.C1List.ListBoxView></Splits><Nam" +
                                      "edStyles><Style parent=\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"Heading\" /><S" +
                                      "tyle parent=\"Heading\" me=\"Footer\" /><Style parent=\"Heading\" me=\"Caption\" /><Styl" +
                                      "e parent=\"Heading\" me=\"Inactive\" /><Style parent=\"Normal\" me=\"Selected\" /><Style" +
                                      " parent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Styl" +
                                      "e parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><S" +
                                      "tyle parent=\"Caption\" me=\"Group\" /></NamedStyles><vertSplits>1</vertSplits><horz" +
                                      "Splits>1</horzSplits><Layout>Modified</Layout><DefaultRecSelWidth>17</DefaultRec" +
                                      "SelWidth></Blob>";
     //
     // ManufacturingClose
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.btnClose;
     this.ClientSize        = new System.Drawing.Size(632, 453);
     this.Controls.Add(this.cboCCN);
     this.Controls.Add(this.dtmToDueDate);
     this.Controls.Add(this.dtmFromDueDate);
     this.Controls.Add(this.dtmPostDate);
     this.Controls.Add(this.btnSearchMasLoc);
     this.Controls.Add(this.txtMasLoc);
     this.Controls.Add(this.gridWOClose);
     this.Controls.Add(this.lblMasLoc);
     this.Controls.Add(this.lblPostDate);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.btnCloseWO);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnHelp);
     this.Controls.Add(this.lblCCN);
     this.Controls.Add(this.chkSelectAllManuf);
     this.Controls.Add(this.lblToDueDate);
     this.Controls.Add(this.lblFromDueDate);
     this.KeyPreview    = true;
     this.Name          = "ManufacturingClose";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Manufacturing Close";
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.ManufacturingClose_KeyDown);
     this.Closing      += new System.ComponentModel.CancelEventHandler(this.ManufacturingClose_Closing);
     this.Load         += new System.EventHandler(this.ManufacturingClose_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dtmToDueDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmFromDueDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmPostDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridWOClose)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboCCN)).EndInit();
     this.ResumeLayout(false);
 }
示例#39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dsContacts1         = new Tutorial18.dsContacts();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbDeleteCommand2 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     this.oleDbInsertCommand2 = new System.Data.OleDb.OleDbCommand();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbUpdateCommand2 = new System.Data.OleDb.OleDbCommand();
     this.c1TrueDBDropdown1   = new C1.Win.C1TrueDBGrid.C1TrueDBDropdown();
     this.dsCustType1         = new Tutorial18.dsCustType();
     this.oleDbDataAdapter2   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbSelectCommand2 = new System.Data.OleDb.OleDbCommand();
     this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsContacts1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBDropdown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCustType1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.AllowAddNew    = true;
     this.c1TrueDBGrid1.Caption        = "C1TrueDBGrid.Net";
     this.c1TrueDBGrid1.CaptionHeight  = 17;
     this.c1TrueDBGrid1.DataMember     = "Customer";
     this.c1TrueDBGrid1.DataSource     = this.dsContacts1;
     this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 8);
     this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
     this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBGrid1.RowHeight              = 15;
     this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(504, 272);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.UnboundColumnFetch    += new C1.Win.C1TrueDBGrid.UnboundColumnFetchEventHandler(this.c1TrueDBGrid1_UnboundColumnFetch);
     this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Company\" Da" +
                                                 "taField=\"Company\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=" +
                                                 "\"0\" Caption=\"Contacted\" DataField=\"Contacted\"><ValueItems /><GroupInfo /></C1Dat" +
                                                 "aColumn><C1DataColumn Level=\"0\" Caption=\"CustType\" DataField=\"CustType\"><ValueIt" +
                                                 "ems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"FirstName\" Da" +
                                                 "taField=\"FirstName\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Leve" +
                                                 "l=\"0\" Caption=\"LastName\" DataField=\"LastName\"><ValueItems /><GroupInfo /></C1Dat" +
                                                 "aColumn><C1DataColumn Level=\"0\" Caption=\"Phone\" DataField=\"Phone\"><ValueItems />" +
                                                 "<GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"UserCode\" DataField" +
                                                 "=\"UserCode\"><ValueItems /><GroupInfo /></C1DataColumn></DataCols><Styles type=\"C" +
                                                 "1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>Style195{}Style161{AlignHorz:Far" +
                                                 ";}Style166{AlignHorz:Far;}Style185{AlignHorz:Far;}Style186{}Style50{}Style51{}St" +
                                                 "yle157{}Caption{AlignHorz:Center;}Style179{AlignHorz:Near;}Normal{Font:Tahoma, 1" +
                                                 "1world;}Style194{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style173" +
                                                 "{AlignHorz:Near;}Editor{}Style171{}Style170{}Style177{}Style176{}Style175{}Style" +
                                                 "174{}Style10{AlignHorz:Near;}Style11{}Style12{}Style13{}EvenRow{BackColor:Aqua;}" +
                                                 "Style191{AlignHorz:Near;}Style190{AlignHorz:Near;}Style193{}Style192{}Group{Alig" +
                                                 "nVert:Center;Border:None,,0, 0, 0, 0;BackColor:ControlDark;}Style168{}Style169{}" +
                                                 "Style162{}Style163{}Style160{AlignHorz:Far;}Style159{}Style158{}Style167{AlignHo" +
                                                 "rz:Far;}Style164{}Style165{}HighlightRow{ForeColor:HighlightText;BackColor:Highl" +
                                                 "ight;}RecordSelector{AlignImage:Center;}Footer{}Style178{AlignHorz:Near;}Style18" +
                                                 "4{AlignHorz:Far;}Style155{AlignHorz:Near;}Style154{AlignHorz:Near;}Style187{}Sty" +
                                                 "le156{}Style172{AlignHorz:Near;}Style182{}Style183{}Heading{Wrap:True;BackColor:" +
                                                 "Control;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;AlignVert:Center;}Style1" +
                                                 "88{}Style189{}Style180{}Inactive{ForeColor:InactiveCaptionText;BackColor:Inactiv" +
                                                 "eCaption;}FilterBar{}Style9{}Style8{}OddRow{}Style5{}Style4{}Style7{}Style6{}Sty" +
                                                 "le1{}Style181{}Style3{}Style2{}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.Merg" +
                                                 "eView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight=\"17" +
                                                 "\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRecSelWidth=\"17\" V" +
                                                 "erticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 17, 500, 251</Cl" +
                                                 "ientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"Style10\" />" +
                                                 "<EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"St" +
                                                 "yle8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"F" +
                                                 "ooter\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle par" +
                                                 "ent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\"" +
                                                 " /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" m" +
                                                 "e=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><Select" +
                                                 "edStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /><in" +
                                                 "ternalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style154\" /><Style" +
                                                 " parent=\"Style1\" me=\"Style155\" /><FooterStyle parent=\"Style3\" me=\"Style156\" /><E" +
                                                 "ditorStyle parent=\"Style5\" me=\"Style157\" /><GroupHeaderStyle parent=\"Style1\" me=" +
                                                 "\"Style159\" /><GroupFooterStyle parent=\"Style1\" me=\"Style158\" /><Visible>True</Vi" +
                                                 "sible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>0<" +
                                                 "/DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Styl" +
                                                 "e160\" /><Style parent=\"Style1\" me=\"Style161\" /><FooterStyle parent=\"Style3\" me=\"" +
                                                 "Style162\" /><EditorStyle parent=\"Style5\" me=\"Style163\" /><GroupHeaderStyle paren" +
                                                 "t=\"Style1\" me=\"Style165\" /><GroupFooterStyle parent=\"Style1\" me=\"Style164\" /><Vi" +
                                                 "sible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</He" +
                                                 "ight><DCIdx>1</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"St" +
                                                 "yle2\" me=\"Style166\" /><Style parent=\"Style1\" me=\"Style167\" /><FooterStyle parent" +
                                                 "=\"Style3\" me=\"Style168\" /><EditorStyle parent=\"Style5\" me=\"Style169\" /><GroupHea" +
                                                 "derStyle parent=\"Style1\" me=\"Style171\" /><GroupFooterStyle parent=\"Style1\" me=\"S" +
                                                 "tyle170\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider>" +
                                                 "<Width>66</Width><Height>15</Height><DCIdx>2</DCIdx></C1DisplayColumn><C1Display" +
                                                 "Column><HeadingStyle parent=\"Style2\" me=\"Style172\" /><Style parent=\"Style1\" me=\"" +
                                                 "Style173\" /><FooterStyle parent=\"Style3\" me=\"Style174\" /><EditorStyle parent=\"St" +
                                                 "yle5\" me=\"Style175\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style177\" /><GroupFo" +
                                                 "oterStyle parent=\"Style1\" me=\"Style176\" /><Visible>True</Visible><ColumnDivider>" +
                                                 "DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>3</DCIdx></C1DisplayCol" +
                                                 "umn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style178\" /><Style parent" +
                                                 "=\"Style1\" me=\"Style179\" /><FooterStyle parent=\"Style3\" me=\"Style180\" /><EditorSt" +
                                                 "yle parent=\"Style5\" me=\"Style181\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style1" +
                                                 "83\" /><GroupFooterStyle parent=\"Style1\" me=\"Style182\" /><Visible>True</Visible><" +
                                                 "ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>4</DCIdx>" +
                                                 "</C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style184\" /" +
                                                 "><Style parent=\"Style1\" me=\"Style185\" /><FooterStyle parent=\"Style3\" me=\"Style18" +
                                                 "6\" /><EditorStyle parent=\"Style5\" me=\"Style187\" /><GroupHeaderStyle parent=\"Styl" +
                                                 "e1\" me=\"Style189\" /><GroupFooterStyle parent=\"Style1\" me=\"Style188\" /><Visible>T" +
                                                 "rue</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><D" +
                                                 "CIdx>5</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" m" +
                                                 "e=\"Style190\" /><Style parent=\"Style1\" me=\"Style191\" /><FooterStyle parent=\"Style" +
                                                 "3\" me=\"Style192\" /><EditorStyle parent=\"Style5\" me=\"Style193\" /><GroupHeaderStyl" +
                                                 "e parent=\"Style1\" me=\"Style195\" /><GroupFooterStyle parent=\"Style1\" me=\"Style194" +
                                                 "\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height" +
                                                 ">15</Height><DCIdx>6</DCIdx></C1DisplayColumn></internalCols></C1.Win.C1TrueDBGr" +
                                                 "id.MergeView></Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /><Style parent=" +
                                                 "\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /><Style parent=\"Hea" +
                                                 "ding\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" /><Style parent=\"Norm" +
                                                 "al\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal\" " +
                                                 "me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Normal\"" +
                                                 " me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" /><Style parent=\"Norm" +
                                                 "al\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></NamedStyles><vertSpl" +
                                                 "its>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified</Layout><DefaultRec" +
                                                 "SelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 500, 268</ClientArea><PrintPag" +
                                                 "eHeaderStyle parent=\"\" me=\"Style50\" /><PrintPageFooterStyle parent=\"\" me=\"Style5" +
                                                 "1\" /></Blob>";
     //
     // dsContacts1
     //
     this.dsContacts1.DataSetName = "dsContacts";
     this.dsContacts1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsContacts1.Namespace   = "http://www.tempuri.org/dsContacts.xsd";
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.DeleteCommand = this.oleDbDeleteCommand2;
     this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand2;
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Customer", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("Company", "Company"),
             new System.Data.Common.DataColumnMapping("Contacted", "Contacted"),
             new System.Data.Common.DataColumnMapping("CustType", "CustType"),
             new System.Data.Common.DataColumnMapping("FirstName", "FirstName"),
             new System.Data.Common.DataColumnMapping("LastName", "LastName"),
             new System.Data.Common.DataColumnMapping("Phone", "Phone"),
             new System.Data.Common.DataColumnMapping("UserCode", "UserCode")
         })
     });
     this.oleDbDataAdapter1.UpdateCommand = this.oleDbUpdateCommand2;
     //
     // oleDbDeleteCommand2
     //
     this.oleDbDeleteCommand2.CommandText = @"DELETE FROM Customer WHERE (UserCode = ?) AND (Company = ? OR ? IS NULL AND Company IS NULL) AND (Contacted = ? OR ? IS NULL AND Contacted IS NULL) AND (CustType = ? OR ? IS NULL AND CustType IS NULL) AND (FirstName = ? OR ? IS NULL AND FirstName IS NULL) AND (LastName = ? OR ? IS NULL AND LastName IS NULL) AND (Phone = ? OR ? IS NULL AND Phone IS NULL)";
     this.oleDbDeleteCommand2.Connection  = this.oleDbConnection1;
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "UserCode", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company1", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType1", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName1", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone1", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=5;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
     //
     // oleDbInsertCommand2
     //
     this.oleDbInsertCommand2.CommandText = "INSERT INTO Customer(Company, Contacted, CustType, FirstName, LastName, Phone, U" +
                                            "serCode) VALUES (?, ?, ?, ?, ?, ?, ?)";
     this.oleDbInsertCommand2.Connection = this.oleDbConnection1;
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.VarWChar, 30, "Company"));
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.DBDate, 0, "Contacted"));
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Current, null));
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, "FirstName"));
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.VarWChar, 15, "LastName"));
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Current, null));
     this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, "UserCode"));
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Company, Contacted, CustType, FirstName, LastName, Phone, UserCode FROM Cu" +
                                            "stomer";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // oleDbUpdateCommand2
     //
     this.oleDbUpdateCommand2.CommandText = @"UPDATE Customer SET Company = ?, Contacted = ?, CustType = ?, FirstName = ?, LastName = ?, Phone = ?, UserCode = ? WHERE (UserCode = ?) AND (Company = ? OR ? IS NULL AND Company IS NULL) AND (Contacted = ? OR ? IS NULL AND Contacted IS NULL) AND (CustType = ? OR ? IS NULL AND CustType IS NULL) AND (FirstName = ? OR ? IS NULL AND FirstName IS NULL) AND (LastName = ? OR ? IS NULL AND LastName IS NULL) AND (Phone = ? OR ? IS NULL AND Phone IS NULL)";
     this.oleDbUpdateCommand2.Connection  = this.oleDbConnection1;
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Company", System.Data.OleDb.OleDbType.VarWChar, 30, "Company"));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Contacted", System.Data.OleDb.OleDbType.DBDate, 0, "Contacted"));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Current, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, "FirstName"));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("LastName", System.Data.OleDb.OleDbType.VarWChar, 15, "LastName"));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Current, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, "UserCode"));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_UserCode", System.Data.OleDb.OleDbType.VarWChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "UserCode", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Company1", System.Data.OleDb.OleDbType.VarWChar, 30, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Company", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Contacted1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Contacted", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_CustType1", System.Data.OleDb.OleDbType.SmallInt, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(5)), ((System.Byte)(0)), "CustType", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_FirstName1", System.Data.OleDb.OleDbType.VarWChar, 10, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "FirstName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_LastName1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "LastName", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Phone1", System.Data.OleDb.OleDbType.Double, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(15)), ((System.Byte)(0)), "Phone", System.Data.DataRowVersion.Original, null));
     //
     // c1TrueDBDropdown1
     //
     this.c1TrueDBDropdown1.AllowColMove        = true;
     this.c1TrueDBDropdown1.AllowColSelect      = true;
     this.c1TrueDBDropdown1.AllowRowSizing      = C1.Win.C1TrueDBGrid.RowSizingEnum.AllRows;
     this.c1TrueDBDropdown1.AlternatingRows     = false;
     this.c1TrueDBDropdown1.CaptionHeight       = 17;
     this.c1TrueDBDropdown1.ColumnCaptionHeight = 17;
     this.c1TrueDBDropdown1.ColumnFooterHeight  = 17;
     this.c1TrueDBDropdown1.ValueMember         = "CustType.TypeId";
     this.c1TrueDBDropdown1.DataMember          = "CustType";
     this.c1TrueDBDropdown1.DataSource          = this.dsCustType1;
     this.c1TrueDBDropdown1.FetchRowStyles      = false;
     this.c1TrueDBDropdown1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images1"))));
     this.c1TrueDBDropdown1.LayoutFileName     = "";
     this.c1TrueDBDropdown1.LayoutName         = "";
     this.c1TrueDBDropdown1.LayoutURL          = "";
     this.c1TrueDBDropdown1.DisplayMember      = "CustType.TypeDesc";
     this.c1TrueDBDropdown1.Location           = new System.Drawing.Point(264, 136);
     this.c1TrueDBDropdown1.Name               = "c1TrueDBDropdown1";
     this.c1TrueDBDropdown1.RowDivider.Color   = System.Drawing.Color.DarkGray;
     this.c1TrueDBDropdown1.RowDivider.Style   = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBDropdown1.RowHeight          = 15;
     this.c1TrueDBDropdown1.RowSubDividerColor = System.Drawing.Color.DarkGray;
     this.c1TrueDBDropdown1.ScrollTips         = false;
     this.c1TrueDBDropdown1.Size               = new System.Drawing.Size(192, 120);
     this.c1TrueDBDropdown1.TabIndex           = 1;
     this.c1TrueDBDropdown1.Text               = "c1TrueDBDropdown1";
     this.c1TrueDBDropdown1.ValueTranslate     = true;
     this.c1TrueDBDropdown1.Visible            = false;
     this.c1TrueDBDropdown1.PropBag            = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"TypeDesc\" D" +
                                                 "ataField=\"TypeDesc\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Leve" +
                                                 "l=\"0\" Caption=\"TypeId\" DataField=\"TypeId\"><ValueItems /><GroupInfo /></C1DataCol" +
                                                 "umn></DataCols><Styles type=\"C1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>Ca" +
                                                 "ption{AlignHorz:Center;}Normal{}Selected{ForeColor:HighlightText;BackColor:Highl" +
                                                 "ight;}Editor{}Style10{AlignHorz:Near;}Style11{}Style12{}Style13{}Style140{AlignH" +
                                                 "orz:Near;}Style139{}Style138{}Style137{}Style136{}Style135{AlignHorz:Near;}Style" +
                                                 "134{AlignHorz:Near;}OddRow{}HighlightRow{ForeColor:HighlightText;BackColor:Highl" +
                                                 "ight;}RecordSelector{AlignImage:Center;}Footer{}Inactive{ForeColor:InactiveCapti" +
                                                 "onText;BackColor:InactiveCaption;}EvenRow{BackColor:Aqua;}Heading{Wrap:True;Back" +
                                                 "Color:Control;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;AlignVert:Center;}" +
                                                 "Style7{}Style6{}FilterBar{}Style3{}Style4{}Style9{}Style8{}Style1{}Style5{}Group" +
                                                 "{AlignVert:Center;Border:None,,0, 0, 0, 0;BackColor:ControlDark;}Style141{AlignH" +
                                                 "orz:Near;}Style142{}Style143{}Style144{}Style145{}Style2{}</Data></Styles><Split" +
                                                 "s><C1.Win.C1TrueDBGrid.DropdownView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeig" +
                                                 "ht=\"17\" ColumnFooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWi" +
                                                 "dth=\"16\" RecordSelectors=\"False\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"" +
                                                 "1\"><ClientRect>0, 0, 188, 116</ClientRect><internalCols><C1DropDisplayColumn><DC" +
                                                 "Idx>0</DCIdx><HeadingStyle parent=\"Style2\" me=\"Style134\" /><Style parent=\"Style1" +
                                                 "\" me=\"Style135\" /><FooterStyle parent=\"Style3\" me=\"Style136\" /><EditorStyle pare" +
                                                 "nt=\"Style5\" me=\"Style137\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style139\" /><G" +
                                                 "roupFooterStyle parent=\"Style1\" me=\"Style138\" /><Visible>True</Visible><ColumnDi" +
                                                 "vider>DarkGray,Single</ColumnDivider><Height>15</Height></C1DropDisplayColumn><C" +
                                                 "1DropDisplayColumn><DCIdx>1</DCIdx><HeadingStyle parent=\"Style2\" me=\"Style140\" /" +
                                                 "><Style parent=\"Style1\" me=\"Style141\" /><FooterStyle parent=\"Style3\" me=\"Style14" +
                                                 "2\" /><EditorStyle parent=\"Style5\" me=\"Style143\" /><GroupHeaderStyle parent=\"Styl" +
                                                 "e1\" me=\"Style145\" /><GroupFooterStyle parent=\"Style1\" me=\"Style144\" /><Visible>T" +
                                                 "rue</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height></" +
                                                 "C1DropDisplayColumn></internalCols><CaptionStyle parent=\"Style2\" me=\"Style10\" />" +
                                                 "<EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me=\"St" +
                                                 "yle8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle parent=\"F" +
                                                 "ooter\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle par" +
                                                 "ent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Style7\"" +
                                                 " /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRow\" m" +
                                                 "e=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><Select" +
                                                 "edStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /></C" +
                                                 "1.Win.C1TrueDBGrid.DropdownView></Splits><NamedStyles><Style parent=\"\" me=\"Norma" +
                                                 "l\" /><Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" me=\"Footer\" /" +
                                                 "><Style parent=\"Heading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"Inactive\" />" +
                                                 "<Style parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Editor\" /><Sty" +
                                                 "le parent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><St" +
                                                 "yle parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"RecordSelector\" />" +
                                                 "<Style parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"Group\" /></N" +
                                                 "amedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>Modified<" +
                                                 "/Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 188, 116</C" +
                                                 "lientArea></Blob>";
     //
     // dsCustType1
     //
     this.dsCustType1.DataSetName = "dsCustType";
     this.dsCustType1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsCustType1.Namespace   = "http://www.tempuri.org/dsCustType.xsd";
     //
     // oleDbDataAdapter2
     //
     this.oleDbDataAdapter2.DeleteCommand = this.oleDbDeleteCommand1;
     this.oleDbDataAdapter2.InsertCommand = this.oleDbInsertCommand1;
     this.oleDbDataAdapter2.SelectCommand = this.oleDbSelectCommand2;
     this.oleDbDataAdapter2.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "CustType", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("TypeDesc", "TypeDesc"),
             new System.Data.Common.DataColumnMapping("TypeId", "TypeId")
         })
     });
     this.oleDbDataAdapter2.UpdateCommand = this.oleDbUpdateCommand1;
     //
     // oleDbDeleteCommand1
     //
     this.oleDbDeleteCommand1.CommandText = "DELETE FROM CustType WHERE (TypeId = ?) AND (TypeDesc = ? OR ? IS NULL AND TypeDe" +
                                            "sc IS NULL)";
     this.oleDbDeleteCommand1.Connection = this.oleDbConnection1;
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeId", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
     this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
     //
     // oleDbInsertCommand1
     //
     this.oleDbInsertCommand1.CommandText = "INSERT INTO CustType(TypeDesc, TypeId) VALUES (?, ?)";
     this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, "TypeDesc"));
     this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, "TypeId"));
     //
     // oleDbSelectCommand2
     //
     this.oleDbSelectCommand2.CommandText = "SELECT TypeDesc, TypeId FROM CustType";
     this.oleDbSelectCommand2.Connection  = this.oleDbConnection1;
     //
     // oleDbUpdateCommand1
     //
     this.oleDbUpdateCommand1.CommandText = "UPDATE CustType SET TypeDesc = ?, TypeId = ? WHERE (TypeId = ?) AND (TypeDesc = ?" +
                                            " OR ? IS NULL AND TypeDesc IS NULL)";
     this.oleDbUpdateCommand1.Connection = this.oleDbConnection1;
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, "TypeDesc"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, "TypeId"));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeId", System.Data.OleDb.OleDbType.VarWChar, 1, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeId", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
     this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_TypeDesc1", System.Data.OleDb.OleDbType.VarWChar, 15, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "TypeDesc", System.Data.DataRowVersion.Original, null));
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(536, 294);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.c1TrueDBDropdown1,
         this.c1TrueDBGrid1
     });
     this.Name  = "Form1";
     this.Text  = "Tutorial 18";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsContacts1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBDropdown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCustType1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SalesOpportunity));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tbPersonal = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks = new System.Windows.Forms.TextBox();
     this.txtRelationShip = new DevExpress.XtraEditors.TextEdit();
     this.txtPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.txtChannelName = new DevExpress.XtraEditors.TextEdit();
     this.txtPotientialGP = new DevExpress.XtraEditors.TextEdit();
     this.txtPotientialAmount = new DevExpress.XtraEditors.TextEdit();
     this.cmbTimeType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtPredictedTime = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txtPredictedDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.txtReason = new System.Windows.Forms.TextBox();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.rgOLW = new DevExpress.XtraEditors.RadioGroup();
     this.txtPurValue = new DevExpress.XtraEditors.TextEdit();
     this.txtTechnicalDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtBidValue = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txtSubmitDate = new System.Windows.Forms.MaskedTextBox();
     this.txtTenderNo = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtDueDate = new System.Windows.Forms.MaskedTextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.tbtbProducts = new DevExpress.XtraTab.XtraTabPage();
     this.grdProductDetail = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbDocumnts = new DevExpress.XtraTab.XtraTabPage();
     this.grdDocumentList = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.tbStages = new DevExpress.XtraTab.XtraTabPage();
     this.grdStages = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Attachments = new DevExpress.XtraTab.XtraTabPage();
     this.grdAttachment = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.grdCompetitor = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnPost = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtopportunityName = new DevExpress.XtraEditors.TextEdit();
     this.txtStartDate = new System.Windows.Forms.MaskedTextBox();
     this.btnSaleEmployeePickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtSalePersonId = new DevExpress.XtraEditors.TextEdit();
     this.txtClosingPer = new DevExpress.XtraEditors.TextEdit();
     this.txtContactPersonName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.btnContactPersonPickList = new DevExpress.XtraEditors.SimpleButton();
     this.txtSaleEmployee = new DevExpress.XtraEditors.TextEdit();
     this.txtopenActivities = new DevExpress.XtraEditors.TextEdit();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.txtEndDate = new System.Windows.Forms.MaskedTextBox();
     this.txtContactPersonId = new DevExpress.XtraEditors.TextEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.txtCustomerName = new DevExpress.XtraEditors.TextEdit();
     this.txtVenderName = new DevExpress.XtraEditors.TextEdit();
     this.txtStatus = new DevExpress.XtraEditors.TextEdit();
     this.txtVendorId = new System.Windows.Forms.TextBox();
     this.btnVendorPickList = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBusinessType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnCustomerPiclist = new DevExpress.XtraEditors.SimpleButton();
     this.txtopportunityid = new System.Windows.Forms.TextBox();
     this.txtCustomerId = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.btnOpportunityId = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tbPersonal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRelationShip.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChannelName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialGP.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTimeType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPredictedTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgOLW.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBidValue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenderNo.Properties)).BeginInit();
     this.tbtbProducts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdProductDetail)).BeginInit();
     this.tbDocumnts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDocumentList)).BeginInit();
     this.tbStages.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdStages)).BeginInit();
     this.Attachments.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAttachment)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdCompetitor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtopportunityName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalePersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClosingPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtopenActivities.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVenderName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBusinessType.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.AppearancePage.Header.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.xtraTabControl1.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControl1.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.xtraTabControl1.Location = new System.Drawing.Point(5, 121);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tbPersonal;
     this.xtraTabControl1.Size = new System.Drawing.Size(810, 287);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tbPersonal,
     this.tbtbProducts,
     this.tbDocumnts,
     this.tbStages,
     this.Attachments,
     this.xtraTabPage2});
     //
     // tbPersonal
     //
     this.tbPersonal.Controls.Add(this.groupControl4);
     this.tbPersonal.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbPersonal.Name = "tbPersonal";
     this.tbPersonal.Size = new System.Drawing.Size(804, 255);
     this.tbPersonal.Text = "General";
     this.tbPersonal.Tooltip = "Personal Information of Customer";
     //
     // groupControl4
     //
     this.groupControl4.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl4.Appearance.Options.UseBackColor = true;
     this.groupControl4.Controls.Add(this.txtRemarks);
     this.groupControl4.Controls.Add(this.txtRelationShip);
     this.groupControl4.Controls.Add(this.txtPartnerName);
     this.groupControl4.Controls.Add(this.txtChannelName);
     this.groupControl4.Controls.Add(this.txtPotientialGP);
     this.groupControl4.Controls.Add(this.txtPotientialAmount);
     this.groupControl4.Controls.Add(this.cmbTimeType);
     this.groupControl4.Controls.Add(this.txtPredictedTime);
     this.groupControl4.Controls.Add(this.labelControl8);
     this.groupControl4.Controls.Add(this.labelControl12);
     this.groupControl4.Controls.Add(this.labelControl2);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Controls.Add(this.txtPredictedDate);
     this.groupControl4.Controls.Add(this.labelControl10);
     this.groupControl4.Controls.Add(this.labelControl22);
     this.groupControl4.Controls.Add(this.labelControl11);
     this.groupControl4.Controls.Add(this.labelControl18);
     this.groupControl4.Controls.Add(this.labelControl29);
     this.groupControl4.Controls.Add(this.txtReason);
     this.groupControl4.Controls.Add(this.labelControl28);
     this.groupControl4.Controls.Add(this.rgOLW);
     this.groupControl4.Controls.Add(this.txtPurValue);
     this.groupControl4.Controls.Add(this.txtTechnicalDate);
     this.groupControl4.Controls.Add(this.labelControl7);
     this.groupControl4.Controls.Add(this.txtBidValue);
     this.groupControl4.Controls.Add(this.labelControl5);
     this.groupControl4.Controls.Add(this.txtSubmitDate);
     this.groupControl4.Controls.Add(this.txtTenderNo);
     this.groupControl4.Controls.Add(this.labelControl3);
     this.groupControl4.Controls.Add(this.txtDueDate);
     this.groupControl4.Controls.Add(this.labelControl9);
     this.groupControl4.Controls.Add(this.labelControl25);
     this.groupControl4.Controls.Add(this.labelControl6);
     this.groupControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl4.Location = new System.Drawing.Point(0, 0);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(804, 255);
     this.groupControl4.TabIndex = 19;
     this.groupControl4.Text = "Tender Details";
     //
     // txtRemarks
     //
     this.txtRemarks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRemarks.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRemarks.Enabled = false;
     this.txtRemarks.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemarks.Location = new System.Drawing.Point(542, 134);
     this.txtRemarks.MaxLength = 50;
     this.txtRemarks.Multiline = true;
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(246, 73);
     this.txtRemarks.TabIndex = 101;
     //
     // txtRelationShip
     //
     this.txtRelationShip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRelationShip.Location = new System.Drawing.Point(542, 113);
     this.txtRelationShip.Name = "txtRelationShip";
     this.txtRelationShip.Properties.MaxLength = 50;
     this.txtRelationShip.Size = new System.Drawing.Size(246, 20);
     this.txtRelationShip.TabIndex = 109;
     this.txtRelationShip.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRelationShip_PreviewKeyDown);
     //
     // txtPartnerName
     //
     this.txtPartnerName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPartnerName.Location = new System.Drawing.Point(542, 93);
     this.txtPartnerName.Name = "txtPartnerName";
     this.txtPartnerName.Properties.MaxLength = 50;
     this.txtPartnerName.Size = new System.Drawing.Size(246, 20);
     this.txtPartnerName.TabIndex = 108;
     this.txtPartnerName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPartnerName_PreviewKeyDown);
     //
     // txtChannelName
     //
     this.txtChannelName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtChannelName.Location = new System.Drawing.Point(542, 73);
     this.txtChannelName.Name = "txtChannelName";
     this.txtChannelName.Properties.MaxLength = 50;
     this.txtChannelName.Size = new System.Drawing.Size(246, 20);
     this.txtChannelName.TabIndex = 107;
     this.txtChannelName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtChannelName_PreviewKeyDown);
     //
     // txtPotientialGP
     //
     this.txtPotientialGP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPotientialGP.Location = new System.Drawing.Point(542, 53);
     this.txtPotientialGP.Name = "txtPotientialGP";
     this.txtPotientialGP.Properties.MaxLength = 15;
     this.txtPotientialGP.Size = new System.Drawing.Size(70, 20);
     this.txtPotientialGP.TabIndex = 106;
     this.txtPotientialGP.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPotientialGP_PreviewKeyDown);
     //
     // txtPotientialAmount
     //
     this.txtPotientialAmount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPotientialAmount.Location = new System.Drawing.Point(542, 33);
     this.txtPotientialAmount.Name = "txtPotientialAmount";
     this.txtPotientialAmount.Properties.MaxLength = 15;
     this.txtPotientialAmount.Size = new System.Drawing.Size(70, 20);
     this.txtPotientialAmount.TabIndex = 105;
     this.txtPotientialAmount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPotientialAmount_PreviewKeyDown);
     //
     // cmbTimeType
     //
     this.cmbTimeType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbTimeType.Location = new System.Drawing.Point(686, 13);
     this.cmbTimeType.Name = "cmbTimeType";
     this.cmbTimeType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbTimeType.Properties.Items.AddRange(new object[] {
     "Days",
     "Weeks",
     "Month"});
     this.cmbTimeType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbTimeType.Size = new System.Drawing.Size(102, 20);
     this.cmbTimeType.TabIndex = 103;
     this.cmbTimeType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbTimeType_PreviewKeyDown);
     //
     // txtPredictedTime
     //
     this.txtPredictedTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPredictedTime.Location = new System.Drawing.Point(542, 13);
     this.txtPredictedTime.Name = "txtPredictedTime";
     this.txtPredictedTime.Properties.MaxLength = 15;
     this.txtPredictedTime.Size = new System.Drawing.Size(70, 20);
     this.txtPredictedTime.TabIndex = 102;
     this.txtPredictedTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPredictedTime_PreviewKeyDown);
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(454, 113);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(108, 20);
     this.labelControl8.TabIndex = 100;
     this.labelControl8.Text = "Relationship";
     //
     // labelControl12
     //
     this.labelControl12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(454, 53);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(108, 20);
     this.labelControl12.TabIndex = 97;
     this.labelControl12.Text = "Potential GP";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(454, 92);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(108, 20);
     this.labelControl2.TabIndex = 99;
     this.labelControl2.Text = "Partner Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(454, 73);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(108, 20);
     this.labelControl1.TabIndex = 98;
     this.labelControl1.Text = "Channel Name";
     //
     // txtPredictedDate
     //
     this.txtPredictedDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPredictedDate.Location = new System.Drawing.Point(686, 33);
     this.txtPredictedDate.Mask = "00/00/0000";
     this.txtPredictedDate.Name = "txtPredictedDate";
     this.txtPredictedDate.Size = new System.Drawing.Size(102, 22);
     this.txtPredictedDate.TabIndex = 94;
     this.txtPredictedDate.ValidatingType = typeof(System.DateTime);
     this.txtPredictedDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPredictedDate_PreviewKeyDown);
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(613, 35);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(91, 20);
     this.labelControl10.TabIndex = 95;
     this.labelControl10.Text = "Predicted Date";
     //
     // labelControl22
     //
     this.labelControl22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.Location = new System.Drawing.Point(454, 131);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(108, 25);
     this.labelControl22.TabIndex = 92;
     this.labelControl22.Text = "Remarks";
     //
     // labelControl11
     //
     this.labelControl11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(454, 32);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(108, 22);
     this.labelControl11.TabIndex = 96;
     this.labelControl11.Text = "Potential Amount";
     //
     // labelControl18
     //
     this.labelControl18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(454, 13);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(108, 20);
     this.labelControl18.TabIndex = 93;
     this.labelControl18.Text = "Predicted Time";
     //
     // labelControl29
     //
     this.labelControl29.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(613, 14);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(75, 20);
     this.labelControl29.TabIndex = 104;
     this.labelControl29.Text = "Time Type";
     //
     // txtReason
     //
     this.txtReason.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtReason.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtReason.Location = new System.Drawing.Point(177, 102);
     this.txtReason.MaxLength = 50;
     this.txtReason.Multiline = true;
     this.txtReason.Name = "txtReason";
     this.txtReason.Size = new System.Drawing.Size(137, 73);
     this.txtReason.TabIndex = 69;
     this.txtReason.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReason_PreviewKeyDown);
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(179, 77);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(135, 20);
     this.labelControl28.TabIndex = 56;
     this.labelControl28.Text = "                Reason";
     //
     // rgOLW
     //
     this.rgOLW.Location = new System.Drawing.Point(93, 102);
     this.rgOLW.Name = "rgOLW";
     this.rgOLW.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Open"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Lost"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Won")});
     this.rgOLW.Size = new System.Drawing.Size(80, 73);
     this.rgOLW.TabIndex = 55;
     this.rgOLW.SelectedIndexChanged += new System.EventHandler(this.rgOLW_SelectedIndexChanged);
     this.rgOLW.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.rgOLW_PreviewKeyDown);
     //
     // txtPurValue
     //
     this.txtPurValue.Location = new System.Drawing.Point(235, 56);
     this.txtPurValue.Name = "txtPurValue";
     this.txtPurValue.Properties.MaxLength = 15;
     this.txtPurValue.Size = new System.Drawing.Size(79, 20);
     this.txtPurValue.TabIndex = 53;
     this.txtPurValue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurValue_PreviewKeyDown);
     //
     // txtTechnicalDate
     //
     this.txtTechnicalDate.Location = new System.Drawing.Point(94, 76);
     this.txtTechnicalDate.Mask = "00/00/0000";
     this.txtTechnicalDate.Name = "txtTechnicalDate";
     this.txtTechnicalDate.Size = new System.Drawing.Size(79, 22);
     this.txtTechnicalDate.TabIndex = 51;
     this.txtTechnicalDate.ValidatingType = typeof(System.DateTime);
     this.txtTechnicalDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTechnicalDate_PreviewKeyDown);
     //
     // labelControl7
     //
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(11, 78);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(93, 20);
     this.labelControl7.TabIndex = 52;
     this.labelControl7.Text = "Techinical Date";
     //
     // txtBidValue
     //
     this.txtBidValue.Location = new System.Drawing.Point(94, 56);
     this.txtBidValue.Name = "txtBidValue";
     this.txtBidValue.Properties.MaxLength = 15;
     this.txtBidValue.Size = new System.Drawing.Size(79, 20);
     this.txtBidValue.TabIndex = 47;
     this.txtBidValue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBidValue_PreviewKeyDown);
     //
     // labelControl5
     //
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(11, 56);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(93, 20);
     this.labelControl5.TabIndex = 48;
     this.labelControl5.Text = "Bid Value";
     //
     // txtSubmitDate
     //
     this.txtSubmitDate.Location = new System.Drawing.Point(235, 34);
     this.txtSubmitDate.Mask = "00/00/0000";
     this.txtSubmitDate.Name = "txtSubmitDate";
     this.txtSubmitDate.Size = new System.Drawing.Size(79, 22);
     this.txtSubmitDate.TabIndex = 45;
     this.txtSubmitDate.ValidatingType = typeof(System.DateTime);
     this.txtSubmitDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSubmitDate_PreviewKeyDown);
     //
     // txtTenderNo
     //
     this.txtTenderNo.Location = new System.Drawing.Point(94, 14);
     this.txtTenderNo.Name = "txtTenderNo";
     this.txtTenderNo.Properties.MaxLength = 50;
     this.txtTenderNo.Size = new System.Drawing.Size(220, 20);
     this.txtTenderNo.TabIndex = 37;
     this.txtTenderNo.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTenderNo_PreviewKeyDown);
     //
     // labelControl3
     //
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl3.LineVisible = true;
     this.labelControl3.Location = new System.Drawing.Point(11, 14);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(93, 20);
     this.labelControl3.TabIndex = 38;
     this.labelControl3.Text = "Tender No.";
     //
     // txtDueDate
     //
     this.txtDueDate.Location = new System.Drawing.Point(94, 34);
     this.txtDueDate.Mask = "00/00/0000";
     this.txtDueDate.Name = "txtDueDate";
     this.txtDueDate.Size = new System.Drawing.Size(79, 22);
     this.txtDueDate.TabIndex = 8;
     this.txtDueDate.ValidatingType = typeof(System.DateTime);
     this.txtDueDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtDueDate_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(11, 36);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(93, 20);
     this.labelControl9.TabIndex = 15;
     this.labelControl9.Text = "Due Date";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(175, 36);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(73, 20);
     this.labelControl25.TabIndex = 46;
     this.labelControl25.Text = "Submit Date";
     //
     // labelControl6
     //
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(175, 56);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(68, 20);
     this.labelControl6.TabIndex = 54;
     this.labelControl6.Text = "Pur Value";
     //
     // tbtbProducts
     //
     this.tbtbProducts.Controls.Add(this.grdProductDetail);
     this.tbtbProducts.Name = "tbtbProducts";
     this.tbtbProducts.Size = new System.Drawing.Size(804, 255);
     this.tbtbProducts.Text = "Products Details";
     this.tbtbProducts.Tooltip = "Contact Person";
     //
     // grdProductDetail
     //
     this.grdProductDetail.AllowAddNew = true;
     this.grdProductDetail.CaptionHeight = 17;
     this.grdProductDetail.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdProductDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdProductDetail.ExtendRightColumn = true;
     this.grdProductDetail.FetchRowStyles = true;
     this.grdProductDetail.Images.Add(((System.Drawing.Image)(resources.GetObject("grdProductDetail.Images"))));
     this.grdProductDetail.LinesPerRow = 1;
     this.grdProductDetail.Location = new System.Drawing.Point(0, 0);
     this.grdProductDetail.Name = "grdProductDetail";
     this.grdProductDetail.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdProductDetail.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdProductDetail.PreviewInfo.ZoomFactor = 75D;
     this.grdProductDetail.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdProductDetail.PrintInfo.PageSettings")));
     this.grdProductDetail.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductDetail.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdProductDetail.RowHeight = 15;
     this.grdProductDetail.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdProductDetail.Size = new System.Drawing.Size(804, 255);
     this.grdProductDetail.TabIndex = 3;
     this.grdProductDetail.Text = "c1TrueDBGrid1";
     this.grdProductDetail.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdProductDetail.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdProductDetail_AfterColUpdate);
     this.grdProductDetail.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdProductDetail_PreviewKeyDown);
     this.grdProductDetail.PropBag = resources.GetString("grdProductDetail.PropBag");
     //
     // tbDocumnts
     //
     this.tbDocumnts.Controls.Add(this.grdDocumentList);
     this.tbDocumnts.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.tbDocumnts.Name = "tbDocumnts";
     this.tbDocumnts.Size = new System.Drawing.Size(804, 255);
     this.tbDocumnts.Text = "Documents List";
     this.tbDocumnts.Tooltip = "Business Information of Customer";
     //
     // grdDocumentList
     //
     this.grdDocumentList.AllowAddNew = true;
     this.grdDocumentList.CaptionHeight = 17;
     this.grdDocumentList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdDocumentList.ExtendRightColumn = true;
     this.grdDocumentList.Images.Add(((System.Drawing.Image)(resources.GetObject("grdDocumentList.Images"))));
     this.grdDocumentList.Location = new System.Drawing.Point(0, 0);
     this.grdDocumentList.Name = "grdDocumentList";
     this.grdDocumentList.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdDocumentList.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdDocumentList.PreviewInfo.ZoomFactor = 75D;
     this.grdDocumentList.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdDocumentList.PrintInfo.PageSettings")));
     this.grdDocumentList.RecordSelectors = false;
     this.grdDocumentList.RowHeight = 15;
     this.grdDocumentList.Size = new System.Drawing.Size(804, 255);
     this.grdDocumentList.TabIndex = 0;
     this.grdDocumentList.Text = "c1TrueDBGrid2";
     this.grdDocumentList.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdDocumentList.PropBag = resources.GetString("grdDocumentList.PropBag");
     //
     // tbStages
     //
     this.tbStages.Controls.Add(this.grdStages);
     this.tbStages.Name = "tbStages";
     this.tbStages.Size = new System.Drawing.Size(804, 255);
     this.tbStages.Text = "Stages";
     this.tbStages.Tooltip = "Stages";
     //
     // grdStages
     //
     this.grdStages.AllowAddNew = true;
     this.grdStages.CaptionHeight = 17;
     this.grdStages.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdStages.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdStages.ExtendRightColumn = true;
     this.grdStages.Images.Add(((System.Drawing.Image)(resources.GetObject("grdStages.Images"))));
     this.grdStages.Location = new System.Drawing.Point(0, 0);
     this.grdStages.Name = "grdStages";
     this.grdStages.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdStages.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdStages.PreviewInfo.ZoomFactor = 75D;
     this.grdStages.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdStages.PrintInfo.PageSettings")));
     this.grdStages.RecordSelectors = false;
     this.grdStages.RowHeight = 15;
     this.grdStages.Size = new System.Drawing.Size(804, 255);
     this.grdStages.TabIndex = 0;
     this.grdStages.Text = "c1TrueDBGrid3";
     this.grdStages.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdStages.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdStages_AfterColUpdate);
     this.grdStages.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdStages_PreviewKeyDown);
     this.grdStages.PropBag = resources.GetString("grdStages.PropBag");
     //
     // Attachments
     //
     this.Attachments.Controls.Add(this.grdAttachment);
     this.Attachments.Name = "Attachments";
     this.Attachments.Size = new System.Drawing.Size(804, 255);
     this.Attachments.Text = "Attachment and Remarks";
     //
     // grdAttachment
     //
     this.grdAttachment.AllowAddNew = true;
     this.grdAttachment.CaptionHeight = 17;
     this.grdAttachment.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAttachment.ExtendRightColumn = true;
     this.grdAttachment.Images.Add(((System.Drawing.Image)(resources.GetObject("grdAttachment.Images"))));
     this.grdAttachment.Location = new System.Drawing.Point(0, 0);
     this.grdAttachment.Name = "grdAttachment";
     this.grdAttachment.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdAttachment.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdAttachment.PreviewInfo.ZoomFactor = 75D;
     this.grdAttachment.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdAttachment.PrintInfo.PageSettings")));
     this.grdAttachment.RowHeight = 15;
     this.grdAttachment.Size = new System.Drawing.Size(804, 255);
     this.grdAttachment.TabIndex = 0;
     this.grdAttachment.Text = "c1TrueDBGrid1";
     this.grdAttachment.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdAttachment.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdAttachment_ButtonClick);
     this.grdAttachment.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdAttachment_PreviewKeyDown);
     this.grdAttachment.PropBag = resources.GetString("grdAttachment.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.grdCompetitor);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(804, 255);
     this.xtraTabPage2.Text = "Competitor";
     //
     // grdCompetitor
     //
     this.grdCompetitor.AllowAddNew = true;
     this.grdCompetitor.CaptionHeight = 17;
     this.grdCompetitor.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdCompetitor.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdCompetitor.ExtendRightColumn = true;
     this.grdCompetitor.Images.Add(((System.Drawing.Image)(resources.GetObject("grdCompetitor.Images"))));
     this.grdCompetitor.Location = new System.Drawing.Point(0, 0);
     this.grdCompetitor.Name = "grdCompetitor";
     this.grdCompetitor.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdCompetitor.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdCompetitor.PreviewInfo.ZoomFactor = 75D;
     this.grdCompetitor.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdCompetitor.PrintInfo.PageSettings")));
     this.grdCompetitor.RowHeight = 15;
     this.grdCompetitor.Size = new System.Drawing.Size(804, 255);
     this.grdCompetitor.TabIndex = 0;
     this.grdCompetitor.Text = "c1TrueDBGrid4";
     this.grdCompetitor.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdCompetitor.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdCompetitor_AfterColUpdate);
     this.grdCompetitor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdCompetitor_PreviewKeyDown);
     this.grdCompetitor.PropBag = resources.GetString("grdCompetitor.PropBag");
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnPost);
     this.groupControl2.Controls.Add(this.btnAdd);
     this.groupControl2.Controls.Add(this.btnCancel);
     this.groupControl2.Location = new System.Drawing.Point(0, 412);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(822, 49);
     this.groupControl2.TabIndex = 72;
     //
     // btnPost
     //
     this.btnPost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPost.Image = ((System.Drawing.Image)(resources.GetObject("btnPost.Image")));
     this.btnPost.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPost.Location = new System.Drawing.Point(74, 8);
     this.btnPost.Name = "btnPost";
     this.btnPost.Size = new System.Drawing.Size(67, 29);
     toolTipItem1.Text = "Remove Module";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnPost.SuperTip = superToolTip1;
     this.btnPost.TabIndex = 20;
     this.btnPost.Text = "&Post";
     this.btnPost.Click += new System.EventHandler(this.btnPost_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(5, 8);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(67, 29);
     toolTipItem2.Text = "Add New Module";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip2;
     this.btnAdd.TabIndex = 15;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(143, 8);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(67, 29);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip3.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip3;
     this.btnCancel.TabIndex = 18;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl1
     //
     this.groupControl1.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.groupControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.txtopportunityName);
     this.groupControl1.Controls.Add(this.txtStartDate);
     this.groupControl1.Controls.Add(this.btnSaleEmployeePickList);
     this.groupControl1.Controls.Add(this.txtSalePersonId);
     this.groupControl1.Controls.Add(this.xtraTabControl1);
     this.groupControl1.Controls.Add(this.txtClosingPer);
     this.groupControl1.Controls.Add(this.txtContactPersonName);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.btnContactPersonPickList);
     this.groupControl1.Controls.Add(this.txtSaleEmployee);
     this.groupControl1.Controls.Add(this.txtopenActivities);
     this.groupControl1.Controls.Add(this.labelControl16);
     this.groupControl1.Controls.Add(this.txtEndDate);
     this.groupControl1.Controls.Add(this.txtContactPersonId);
     this.groupControl1.Controls.Add(this.labelControl15);
     this.groupControl1.Controls.Add(this.labelControl24);
     this.groupControl1.Controls.Add(this.txtCustomerName);
     this.groupControl1.Controls.Add(this.txtVenderName);
     this.groupControl1.Controls.Add(this.txtStatus);
     this.groupControl1.Controls.Add(this.txtVendorId);
     this.groupControl1.Controls.Add(this.btnVendorPickList);
     this.groupControl1.Controls.Add(this.cmbBusinessType);
     this.groupControl1.Controls.Add(this.btnCustomerPiclist);
     this.groupControl1.Controls.Add(this.txtopportunityid);
     this.groupControl1.Controls.Add(this.txtCustomerId);
     this.groupControl1.Controls.Add(this.labelControl13);
     this.groupControl1.Controls.Add(this.btnOpportunityId);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl20);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl21);
     this.groupControl1.Controls.Add(this.labelControl23);
     this.groupControl1.Location = new System.Drawing.Point(1, 1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(820, 413);
     this.groupControl1.TabIndex = 56;
     this.groupControl1.Text = "Tender Details";
     //
     // txtopportunityName
     //
     this.txtopportunityName.Location = new System.Drawing.Point(178, 12);
     this.txtopportunityName.Name = "txtopportunityName";
     this.txtopportunityName.Properties.MaxLength = 50;
     this.txtopportunityName.Size = new System.Drawing.Size(185, 20);
     this.txtopportunityName.TabIndex = 111;
     this.txtopportunityName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtopportunityName_PreviewKeyDown);
     //
     // txtStartDate
     //
     this.txtStartDate.Location = new System.Drawing.Point(99, 53);
     this.txtStartDate.Mask = "00/00/0000";
     this.txtStartDate.Name = "txtStartDate";
     this.txtStartDate.Size = new System.Drawing.Size(88, 21);
     this.txtStartDate.TabIndex = 98;
     this.txtStartDate.TabStop = false;
     this.txtStartDate.ValidatingType = typeof(System.DateTime);
     this.txtStartDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtStartDate_PreviewKeyDown);
     //
     // btnSaleEmployeePickList
     //
     this.btnSaleEmployeePickList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSaleEmployeePickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnSaleEmployeePickList.Appearance.Options.UseFont = true;
     this.btnSaleEmployeePickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnSaleEmployeePickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnSaleEmployeePickList.Location = new System.Drawing.Point(601, 91);
     this.btnSaleEmployeePickList.Name = "btnSaleEmployeePickList";
     this.btnSaleEmployeePickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnSaleEmployeePickList.Size = new System.Drawing.Size(23, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem1);
     this.btnSaleEmployeePickList.SuperTip = superToolTip4;
     this.btnSaleEmployeePickList.TabIndex = 110;
     this.btnSaleEmployeePickList.Click += new System.EventHandler(this.btnSaleEmployeePickList_Click);
     //
     // txtSalePersonId
     //
     this.txtSalePersonId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSalePersonId.Location = new System.Drawing.Point(546, 90);
     this.txtSalePersonId.Name = "txtSalePersonId";
     this.txtSalePersonId.Properties.MaxLength = 9;
     this.txtSalePersonId.Size = new System.Drawing.Size(54, 20);
     this.txtSalePersonId.TabIndex = 109;
     this.txtSalePersonId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSalePersonId_PreviewKeyDown);
     //
     // txtClosingPer
     //
     this.txtClosingPer.Location = new System.Drawing.Point(275, 73);
     this.txtClosingPer.Name = "txtClosingPer";
     this.txtClosingPer.Properties.MaxLength = 9;
     this.txtClosingPer.Size = new System.Drawing.Size(88, 20);
     this.txtClosingPer.TabIndex = 107;
     this.txtClosingPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClosingPer_PreviewKeyDown);
     //
     // txtContactPersonName
     //
     this.txtContactPersonName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtContactPersonName.Location = new System.Drawing.Point(626, 70);
     this.txtContactPersonName.Name = "txtContactPersonName";
     this.txtContactPersonName.Properties.MaxLength = 50;
     this.txtContactPersonName.Size = new System.Drawing.Size(184, 20);
     this.txtContactPersonName.TabIndex = 86;
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(189, 74);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(101, 20);
     this.labelControl27.TabIndex = 108;
     this.labelControl27.Text = "Closing %";
     //
     // btnContactPersonPickList
     //
     this.btnContactPersonPickList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnContactPersonPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnContactPersonPickList.Appearance.Options.UseFont = true;
     this.btnContactPersonPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnContactPersonPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnContactPersonPickList.Location = new System.Drawing.Point(601, 70);
     this.btnContactPersonPickList.Name = "btnContactPersonPickList";
     this.btnContactPersonPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnContactPersonPickList.Size = new System.Drawing.Size(23, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip5.Items.Add(toolTipTitleItem2);
     this.btnContactPersonPickList.SuperTip = superToolTip5;
     this.btnContactPersonPickList.TabIndex = 85;
     this.btnContactPersonPickList.Click += new System.EventHandler(this.btnContactPersonPickList_Click);
     //
     // txtSaleEmployee
     //
     this.txtSaleEmployee.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleEmployee.Location = new System.Drawing.Point(626, 90);
     this.txtSaleEmployee.Name = "txtSaleEmployee";
     this.txtSaleEmployee.Properties.MaxLength = 50;
     this.txtSaleEmployee.Size = new System.Drawing.Size(184, 20);
     this.txtSaleEmployee.TabIndex = 84;
     //
     // txtopenActivities
     //
     this.txtopenActivities.Location = new System.Drawing.Point(99, 75);
     this.txtopenActivities.Name = "txtopenActivities";
     this.txtopenActivities.Properties.MaxLength = 50;
     this.txtopenActivities.Size = new System.Drawing.Size(88, 20);
     this.txtopenActivities.TabIndex = 105;
     this.txtopenActivities.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtopenActivities_PreviewKeyDown);
     //
     // labelControl16
     //
     this.labelControl16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(460, 91);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(101, 20);
     this.labelControl16.TabIndex = 83;
     this.labelControl16.Text = "Sale Employee";
     //
     // txtEndDate
     //
     this.txtEndDate.Location = new System.Drawing.Point(275, 52);
     this.txtEndDate.Mask = "00/00/0000";
     this.txtEndDate.Name = "txtEndDate";
     this.txtEndDate.Size = new System.Drawing.Size(88, 21);
     this.txtEndDate.TabIndex = 103;
     this.txtEndDate.TabStop = false;
     this.txtEndDate.ValidatingType = typeof(System.DateTime);
     this.txtEndDate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtEndDate_PreviewKeyDown);
     //
     // txtContactPersonId
     //
     this.txtContactPersonId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtContactPersonId.Location = new System.Drawing.Point(546, 70);
     this.txtContactPersonId.Name = "txtContactPersonId";
     this.txtContactPersonId.Properties.MaxLength = 9;
     this.txtContactPersonId.Size = new System.Drawing.Size(54, 20);
     this.txtContactPersonId.TabIndex = 82;
     this.txtContactPersonId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtContactPersonId_PreviewKeyDown);
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(460, 71);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(101, 20);
     this.labelControl15.TabIndex = 81;
     this.labelControl15.Text = "Contact Person";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(189, 54);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(101, 20);
     this.labelControl24.TabIndex = 104;
     this.labelControl24.Text = "End Date";
     //
     // txtCustomerName
     //
     this.txtCustomerName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCustomerName.Location = new System.Drawing.Point(626, 50);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Properties.MaxLength = 50;
     this.txtCustomerName.Size = new System.Drawing.Size(184, 20);
     this.txtCustomerName.TabIndex = 80;
     //
     // txtVenderName
     //
     this.txtVenderName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtVenderName.Location = new System.Drawing.Point(626, 10);
     this.txtVenderName.Name = "txtVenderName";
     this.txtVenderName.Properties.MaxLength = 50;
     this.txtVenderName.Size = new System.Drawing.Size(184, 20);
     this.txtVenderName.TabIndex = 79;
     //
     // txtStatus
     //
     this.txtStatus.Location = new System.Drawing.Point(99, 32);
     this.txtStatus.Name = "txtStatus";
     this.txtStatus.Properties.MaxLength = 50;
     this.txtStatus.Size = new System.Drawing.Size(264, 20);
     this.txtStatus.TabIndex = 102;
     this.txtStatus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtStatus_PreviewKeyDown);
     //
     // txtVendorId
     //
     this.txtVendorId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtVendorId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtVendorId.Location = new System.Drawing.Point(546, 9);
     this.txtVendorId.MaxLength = 2;
     this.txtVendorId.Name = "txtVendorId";
     this.txtVendorId.Size = new System.Drawing.Size(54, 21);
     this.txtVendorId.TabIndex = 62;
     this.txtVendorId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtVendorId_PreviewKeyDown);
     //
     // btnVendorPickList
     //
     this.btnVendorPickList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnVendorPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnVendorPickList.Appearance.Options.UseFont = true;
     this.btnVendorPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnVendorPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnVendorPickList.Location = new System.Drawing.Point(601, 10);
     this.btnVendorPickList.Name = "btnVendorPickList";
     this.btnVendorPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnVendorPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip6.Items.Add(toolTipTitleItem3);
     this.btnVendorPickList.SuperTip = superToolTip6;
     this.btnVendorPickList.TabIndex = 61;
     this.btnVendorPickList.Click += new System.EventHandler(this.btnVendorPickList_Click);
     //
     // cmbBusinessType
     //
     this.cmbBusinessType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbBusinessType.Location = new System.Drawing.Point(546, 30);
     this.cmbBusinessType.Name = "cmbBusinessType";
     this.cmbBusinessType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBusinessType.Properties.Items.AddRange(new object[] {
     "Customers",
     "Leads",
     "Vendors"});
     this.cmbBusinessType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbBusinessType.Size = new System.Drawing.Size(264, 20);
     this.cmbBusinessType.TabIndex = 30;
     this.cmbBusinessType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbBusinessType_PreviewKeyDown);
     //
     // btnCustomerPiclist
     //
     this.btnCustomerPiclist.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCustomerPiclist.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnCustomerPiclist.Appearance.Options.UseFont = true;
     this.btnCustomerPiclist.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnCustomerPiclist.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCustomerPiclist.Location = new System.Drawing.Point(601, 50);
     this.btnCustomerPiclist.Name = "btnCustomerPiclist";
     this.btnCustomerPiclist.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnCustomerPiclist.Size = new System.Drawing.Size(23, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip7.Items.Add(toolTipTitleItem4);
     this.btnCustomerPiclist.SuperTip = superToolTip7;
     this.btnCustomerPiclist.TabIndex = 73;
     this.btnCustomerPiclist.Click += new System.EventHandler(this.btnCustomerPiclist_Click);
     //
     // txtopportunityid
     //
     this.txtopportunityid.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtopportunityid.Location = new System.Drawing.Point(99, 11);
     this.txtopportunityid.MaxLength = 2;
     this.txtopportunityid.Name = "txtopportunityid";
     this.txtopportunityid.Size = new System.Drawing.Size(54, 21);
     this.txtopportunityid.TabIndex = 97;
     this.txtopportunityid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtopportunityid_PreviewKeyDown);
     //
     // txtCustomerId
     //
     this.txtCustomerId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCustomerId.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCustomerId.Location = new System.Drawing.Point(546, 50);
     this.txtCustomerId.MaxLength = 2;
     this.txtCustomerId.Name = "txtCustomerId";
     this.txtCustomerId.Size = new System.Drawing.Size(54, 21);
     this.txtCustomerId.TabIndex = 74;
     this.txtCustomerId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCustomerId_PreviewKeyDown);
     //
     // labelControl13
     //
     this.labelControl13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(460, 10);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(101, 20);
     this.labelControl13.TabIndex = 77;
     this.labelControl13.Text = "Vendor Id";
     //
     // btnOpportunityId
     //
     this.btnOpportunityId.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnOpportunityId.Appearance.Options.UseFont = true;
     this.btnOpportunityId.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnOpportunityId.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnOpportunityId.Location = new System.Drawing.Point(153, 12);
     this.btnOpportunityId.Name = "btnOpportunityId";
     this.btnOpportunityId.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnOpportunityId.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip8.Items.Add(toolTipTitleItem5);
     this.btnOpportunityId.SuperTip = superToolTip8;
     this.btnOpportunityId.TabIndex = 96;
     this.btnOpportunityId.Click += new System.EventHandler(this.btnOpportunityId_Click);
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(460, 31);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(101, 20);
     this.labelControl4.TabIndex = 36;
     this.labelControl4.Text = "Business Type";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(460, 52);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(101, 20);
     this.labelControl14.TabIndex = 78;
     this.labelControl14.Text = "Customer Id";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(13, 12);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(101, 20);
     this.labelControl20.TabIndex = 99;
     this.labelControl20.Text = "Apportunity Id";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(13, 73);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(101, 20);
     this.labelControl26.TabIndex = 106;
     this.labelControl26.Text = "Open Activities";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(13, 33);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(101, 20);
     this.labelControl21.TabIndex = 95;
     this.labelControl21.Text = "Status";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(13, 54);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(101, 20);
     this.labelControl23.TabIndex = 100;
     this.labelControl23.Text = "Start Date";
     //
     // SalesOpportunity
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(822, 461);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Name = "SalesOpportunity";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "SalesOpportunity";
     this.Load += new System.EventHandler(this.SalesOpportunity_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tbPersonal.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRelationShip.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtChannelName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialGP.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPotientialAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbTimeType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPredictedTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rgOLW.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBidValue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTenderNo.Properties)).EndInit();
     this.tbtbProducts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdProductDetail)).EndInit();
     this.tbDocumnts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdDocumentList)).EndInit();
     this.tbStages.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdStages)).EndInit();
     this.Attachments.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdAttachment)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdCompetitor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtopportunityName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSalePersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClosingPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtopenActivities.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVenderName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBusinessType.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProducts));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
     this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
     this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
     this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
     this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
     this.txtTransit = new DevExpress.XtraEditors.TextEdit();
     this.txtTarget = new DevExpress.XtraEditors.TextEdit();
     this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
     this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
     this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
     this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
     this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
     this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
     this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
     this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
     this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
     this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
     this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
     this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
     this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
     this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
     this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
     this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
     this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
     this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
     this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
     this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
     this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl53 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl38 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl44 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl43 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl41 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl42 = new DevExpress.XtraEditors.LabelControl();
     this.XtrabarBonus = new DevExpress.XtraTab.XtraTabPage();
     this.datagridBonus = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.datagridProductAllocation = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.txtMaxLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtMinLimit = new DevExpress.XtraEditors.TextEdit();
     this.txtBarCode = new DevExpress.XtraEditors.TextEdit();
     this.txtShelfCode = new DevExpress.XtraEditors.TextEdit();
     this.grdPresevasionStandard = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
     this.txtClaimPartnerID = new System.Windows.Forms.MaskedTextBox();
     this.txtClaimPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.txtBussinessPartnerid = new System.Windows.Forms.MaskedTextBox();
     this.businessPartnerName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl40 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl48 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl46 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl47 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl54 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl55 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dgFileAttachments = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.Productid = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cmbProductCategory = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtShortName = new DevExpress.XtraEditors.TextEdit();
     this.txtArtical = new DevExpress.XtraEditors.TextEdit();
     this.txtProductName = new DevExpress.XtraEditors.TextEdit();
     this.cmbSkuType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbGeneralName = new DevExpress.XtraEditors.ComboBoxEdit();
     this.cmbProtoType = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnPickList = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txtProductId = new System.Windows.Forms.MaskedTextBox();
     this.txtPack = new DevExpress.XtraEditors.TextEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl49 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl39 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.txtGroupSeq = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupName = new DevExpress.XtraEditors.TextEdit();
     this.txtGroupid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.txtmanualgroup = new DevExpress.XtraEditors.TextEdit();
     this.labelControl57 = new DevExpress.XtraEditors.LabelControl();
     this.txtdateto = new System.Windows.Forms.MaskedTextBox();
     this.txtdatefrom = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl56 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl51 = new DevExpress.XtraEditors.LabelControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.chkCompanyDiscount = new DevExpress.XtraEditors.CheckEdit();
     this.txtCompanySeq = new DevExpress.XtraEditors.TextEdit();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl35 = new DevExpress.XtraEditors.LabelControl();
     this.txtReportCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtReportCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.txtCompanyName = new DevExpress.XtraEditors.TextEdit();
     this.txtCompanyid = new System.Windows.Forms.MaskedTextBox();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl36 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtrabarGeneralinformation.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).BeginInit();
     this.XtrabarBonus.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.Location = new System.Drawing.Point(3, 171);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtrabarGeneralinformation;
     this.xtraTabControl1.Size = new System.Drawing.Size(701, 254);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtrabarGeneralinformation,
     this.XtrabarBonus,
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.xtraTabControl1_PreviewKeyDown);
     //
     // xtrabarGeneralinformation
     //
     this.xtrabarGeneralinformation.Controls.Add(this.panelControl1);
     this.xtrabarGeneralinformation.Name = "xtrabarGeneralinformation";
     this.xtrabarGeneralinformation.Size = new System.Drawing.Size(695, 226);
     this.xtrabarGeneralinformation.Text = "General Information";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.Appearance.BackColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Controls.Add(this.txtfactor);
     this.panelControl1.Controls.Add(this.txtuompurchase);
     this.panelControl1.Controls.Add(this.txtuomsize);
     this.panelControl1.Controls.Add(this.txtuomsale);
     this.panelControl1.Controls.Add(this.cmbValueMethod);
     this.panelControl1.Controls.Add(this.txtAvgRate);
     this.panelControl1.Controls.Add(this.txtToleranceDay);
     this.panelControl1.Controls.Add(this.txtLoadTime);
     this.panelControl1.Controls.Add(this.txtPurchaseRate);
     this.panelControl1.Controls.Add(this.txtSpecialRate);
     this.panelControl1.Controls.Add(this.txtCostRate);
     this.panelControl1.Controls.Add(this.txtTransit);
     this.panelControl1.Controls.Add(this.txtTarget);
     this.panelControl1.Controls.Add(this.txtNetBalance);
     this.panelControl1.Controls.Add(this.txtBalanceBonus);
     this.panelControl1.Controls.Add(this.txtBalanceStock);
     this.panelControl1.Controls.Add(this.txtMaxQuantityDays);
     this.panelControl1.Controls.Add(this.txtMaxQuantityPCustomer);
     this.panelControl1.Controls.Add(this.txtPackInBox);
     this.panelControl1.Controls.Add(this.txtInventoryDays);
     this.panelControl1.Controls.Add(this.txtMinFlatRate);
     this.panelControl1.Controls.Add(this.txtMaxFlatRate);
     this.panelControl1.Controls.Add(this.cmbSaleTaxCalculation);
     this.panelControl1.Controls.Add(this.txtSaleTaxVale);
     this.panelControl1.Controls.Add(this.txtSaleTaxPer);
     this.panelControl1.Controls.Add(this.txtMaxSalesDisc);
     this.panelControl1.Controls.Add(this.txtPurchaseDiscountPer);
     this.panelControl1.Controls.Add(this.txtRetailPrice);
     this.panelControl1.Controls.Add(this.chkwolallow);
     this.panelControl1.Controls.Add(this.chkAllowPer);
     this.panelControl1.Controls.Add(this.chkAutoBonus);
     this.panelControl1.Controls.Add(this.chkSaleBase);
     this.panelControl1.Controls.Add(this.chkSaleTaxReg);
     this.panelControl1.Controls.Add(this.chkNonPharma);
     this.panelControl1.Controls.Add(this.chkExcempted);
     this.panelControl1.Controls.Add(this.chkUseFlatRate);
     this.panelControl1.Controls.Add(this.chkNorCotics);
     this.panelControl1.Controls.Add(this.chkHideinTabs);
     this.panelControl1.Controls.Add(this.chkAllowMaxQtyDays);
     this.panelControl1.Controls.Add(this.chkProductDiscontinue);
     this.panelControl1.Controls.Add(this.txtTradePrice);
     this.panelControl1.Controls.Add(this.txtSaleRate);
     this.panelControl1.Controls.Add(this.txtPackInCarton);
     this.panelControl1.Controls.Add(this.labelControl9);
     this.panelControl1.Controls.Add(this.labelControl18);
     this.panelControl1.Controls.Add(this.labelControl17);
     this.panelControl1.Controls.Add(this.labelControl16);
     this.panelControl1.Controls.Add(this.labelControl15);
     this.panelControl1.Controls.Add(this.labelControl13);
     this.panelControl1.Controls.Add(this.labelControl50);
     this.panelControl1.Controls.Add(this.labelControl12);
     this.panelControl1.Controls.Add(this.labelControl11);
     this.panelControl1.Controls.Add(this.labelControl19);
     this.panelControl1.Controls.Add(this.labelControl20);
     this.panelControl1.Controls.Add(this.labelControl25);
     this.panelControl1.Controls.Add(this.labelControl24);
     this.panelControl1.Controls.Add(this.labelControl23);
     this.panelControl1.Controls.Add(this.labelControl22);
     this.panelControl1.Controls.Add(this.labelControl21);
     this.panelControl1.Controls.Add(this.labelControl26);
     this.panelControl1.Controls.Add(this.labelControl52);
     this.panelControl1.Controls.Add(this.labelControl53);
     this.panelControl1.Controls.Add(this.labelControl27);
     this.panelControl1.Controls.Add(this.labelControl28);
     this.panelControl1.Controls.Add(this.labelControl29);
     this.panelControl1.Controls.Add(this.labelControl30);
     this.panelControl1.Controls.Add(this.labelControl31);
     this.panelControl1.Controls.Add(this.labelControl32);
     this.panelControl1.Controls.Add(this.labelControl37);
     this.panelControl1.Controls.Add(this.labelControl38);
     this.panelControl1.Controls.Add(this.labelControl44);
     this.panelControl1.Controls.Add(this.labelControl43);
     this.panelControl1.Controls.Add(this.labelControl41);
     this.panelControl1.Controls.Add(this.labelControl42);
     this.panelControl1.Location = new System.Drawing.Point(-1, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(700, 226);
     this.panelControl1.TabIndex = 180;
     //
     // txtfactor
     //
     this.txtfactor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtfactor.Location = new System.Drawing.Point(449, 161);
     this.txtfactor.Name = "txtfactor";
     this.txtfactor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtfactor.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtfactor.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtfactor.Size = new System.Drawing.Size(82, 20);
     this.txtfactor.TabIndex = 124270;
     this.txtfactor.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtfactor_PreviewKeyDown);
     //
     // txtuompurchase
     //
     this.txtuompurchase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuompurchase.Location = new System.Drawing.Point(449, 142);
     this.txtuompurchase.Name = "txtuompurchase";
     this.txtuompurchase.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuompurchase.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuompurchase.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuompurchase.Size = new System.Drawing.Size(82, 20);
     this.txtuompurchase.TabIndex = 124262;
     this.txtuompurchase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuompurchase_PreviewKeyDown);
     //
     // txtuomsize
     //
     this.txtuomsize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsize.Location = new System.Drawing.Point(449, 123);
     this.txtuomsize.Name = "txtuomsize";
     this.txtuomsize.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsize.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsize.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsize.Size = new System.Drawing.Size(82, 20);
     this.txtuomsize.TabIndex = 124258;
     this.txtuomsize.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsize_PreviewKeyDown);
     //
     // txtuomsale
     //
     this.txtuomsale.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtuomsale.Location = new System.Drawing.Point(449, 104);
     this.txtuomsale.Name = "txtuomsale";
     this.txtuomsale.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtuomsale.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.txtuomsale.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.txtuomsale.Size = new System.Drawing.Size(82, 20);
     this.txtuomsale.TabIndex = 124260;
     this.txtuomsale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtuomsale_PreviewKeyDown);
     //
     // cmbValueMethod
     //
     this.cmbValueMethod.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmbValueMethod.Location = new System.Drawing.Point(449, 85);
     this.cmbValueMethod.Name = "cmbValueMethod";
     this.cmbValueMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbValueMethod.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbValueMethod.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbValueMethod.Size = new System.Drawing.Size(82, 20);
     this.cmbValueMethod.TabIndex = 37;
     this.cmbValueMethod.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbValueMethod_PreviewKeyDown);
     //
     // txtAvgRate
     //
     this.txtAvgRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAvgRate.Location = new System.Drawing.Point(449, 66);
     this.txtAvgRate.Name = "txtAvgRate";
     this.txtAvgRate.Size = new System.Drawing.Size(82, 20);
     this.txtAvgRate.TabIndex = 36;
     this.txtAvgRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtAvgRate_PreviewKeyDown);
     //
     // txtToleranceDay
     //
     this.txtToleranceDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtToleranceDay.Location = new System.Drawing.Point(449, 47);
     this.txtToleranceDay.Name = "txtToleranceDay";
     this.txtToleranceDay.Size = new System.Drawing.Size(82, 20);
     this.txtToleranceDay.TabIndex = 35;
     this.txtToleranceDay.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtToleranceDay_PreviewKeyDown);
     //
     // txtLoadTime
     //
     this.txtLoadTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLoadTime.Location = new System.Drawing.Point(449, 28);
     this.txtLoadTime.Name = "txtLoadTime";
     this.txtLoadTime.Size = new System.Drawing.Size(82, 20);
     this.txtLoadTime.TabIndex = 34;
     this.txtLoadTime.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtLoadTime_PreviewKeyDown);
     //
     // txtPurchaseRate
     //
     this.txtPurchaseRate.EditValue = "0.00";
     this.txtPurchaseRate.Location = new System.Drawing.Point(285, 199);
     this.txtPurchaseRate.Name = "txtPurchaseRate";
     this.txtPurchaseRate.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseRate.TabIndex = 32;
     this.txtPurchaseRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseRate_PreviewKeyDown);
     //
     // txtSpecialRate
     //
     this.txtSpecialRate.EditValue = "0.00";
     this.txtSpecialRate.Location = new System.Drawing.Point(285, 180);
     this.txtSpecialRate.Name = "txtSpecialRate";
     this.txtSpecialRate.Size = new System.Drawing.Size(82, 20);
     this.txtSpecialRate.TabIndex = 31;
     this.txtSpecialRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSpecialRate_PreviewKeyDown);
     //
     // txtCostRate
     //
     this.txtCostRate.EditValue = "0.00";
     this.txtCostRate.Location = new System.Drawing.Point(285, 161);
     this.txtCostRate.Name = "txtCostRate";
     this.txtCostRate.Size = new System.Drawing.Size(82, 20);
     this.txtCostRate.TabIndex = 30;
     this.txtCostRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCostRate_PreviewKeyDown);
     //
     // txtTransit
     //
     this.txtTransit.EditValue = "0.00";
     this.txtTransit.Location = new System.Drawing.Point(285, 142);
     this.txtTransit.Name = "txtTransit";
     this.txtTransit.Size = new System.Drawing.Size(82, 20);
     this.txtTransit.TabIndex = 124268;
     this.txtTransit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTransit_PreviewKeyDown);
     //
     // txtTarget
     //
     this.txtTarget.EditValue = "0.00";
     this.txtTarget.Location = new System.Drawing.Point(285, 123);
     this.txtTarget.Name = "txtTarget";
     this.txtTarget.Size = new System.Drawing.Size(82, 20);
     this.txtTarget.TabIndex = 124266;
     this.txtTarget.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTarget_PreviewKeyDown);
     //
     // txtNetBalance
     //
     this.txtNetBalance.EditValue = "0.00";
     this.txtNetBalance.Location = new System.Drawing.Point(285, 104);
     this.txtNetBalance.Name = "txtNetBalance";
     this.txtNetBalance.Size = new System.Drawing.Size(82, 20);
     this.txtNetBalance.TabIndex = 29;
     this.txtNetBalance.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtNetBalance_PreviewKeyDown);
     //
     // txtBalanceBonus
     //
     this.txtBalanceBonus.EditValue = "";
     this.txtBalanceBonus.Location = new System.Drawing.Point(285, 85);
     this.txtBalanceBonus.Name = "txtBalanceBonus";
     this.txtBalanceBonus.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceBonus.TabIndex = 28;
     this.txtBalanceBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceBonus_PreviewKeyDown);
     //
     // txtBalanceStock
     //
     this.txtBalanceStock.Location = new System.Drawing.Point(285, 66);
     this.txtBalanceStock.Name = "txtBalanceStock";
     this.txtBalanceStock.Size = new System.Drawing.Size(82, 20);
     this.txtBalanceStock.TabIndex = 27;
     this.txtBalanceStock.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBalanceStock_PreviewKeyDown);
     //
     // txtMaxQuantityDays
     //
     this.txtMaxQuantityDays.Location = new System.Drawing.Point(285, 47);
     this.txtMaxQuantityDays.Name = "txtMaxQuantityDays";
     this.txtMaxQuantityDays.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityDays.TabIndex = 26;
     this.txtMaxQuantityDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityDays_PreviewKeyDown);
     //
     // txtMaxQuantityPCustomer
     //
     this.txtMaxQuantityPCustomer.Location = new System.Drawing.Point(285, 28);
     this.txtMaxQuantityPCustomer.Name = "txtMaxQuantityPCustomer";
     this.txtMaxQuantityPCustomer.Size = new System.Drawing.Size(82, 20);
     this.txtMaxQuantityPCustomer.TabIndex = 25;
     this.txtMaxQuantityPCustomer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxQuantityPCustomer_PreviewKeyDown);
     //
     // txtPackInBox
     //
     this.txtPackInBox.Location = new System.Drawing.Point(102, 199);
     this.txtPackInBox.Name = "txtPackInBox";
     this.txtPackInBox.Size = new System.Drawing.Size(82, 20);
     this.txtPackInBox.TabIndex = 23;
     this.txtPackInBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInBox_PreviewKeyDown);
     //
     // txtInventoryDays
     //
     this.txtInventoryDays.EditValue = "0.00";
     this.txtInventoryDays.Location = new System.Drawing.Point(102, 180);
     this.txtInventoryDays.Name = "txtInventoryDays";
     this.txtInventoryDays.Size = new System.Drawing.Size(82, 20);
     this.txtInventoryDays.TabIndex = 22;
     this.txtInventoryDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtInventoryDays_PreviewKeyDown);
     //
     // txtMinFlatRate
     //
     this.txtMinFlatRate.EditValue = "0.00";
     this.txtMinFlatRate.Location = new System.Drawing.Point(102, 161);
     this.txtMinFlatRate.Name = "txtMinFlatRate";
     this.txtMinFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMinFlatRate.TabIndex = 21;
     this.txtMinFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinFlatRate_PreviewKeyDown);
     //
     // txtMaxFlatRate
     //
     this.txtMaxFlatRate.EditValue = "0.00";
     this.txtMaxFlatRate.Location = new System.Drawing.Point(102, 142);
     this.txtMaxFlatRate.Name = "txtMaxFlatRate";
     this.txtMaxFlatRate.Size = new System.Drawing.Size(82, 20);
     this.txtMaxFlatRate.TabIndex = 20;
     this.txtMaxFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxFlatRate_PreviewKeyDown);
     //
     // cmbSaleTaxCalculation
     //
     this.cmbSaleTaxCalculation.Location = new System.Drawing.Point(102, 123);
     this.cmbSaleTaxCalculation.Name = "cmbSaleTaxCalculation";
     this.cmbSaleTaxCalculation.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSaleTaxCalculation.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSaleTaxCalculation.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSaleTaxCalculation.Size = new System.Drawing.Size(82, 20);
     this.cmbSaleTaxCalculation.TabIndex = 59;
     //
     // txtSaleTaxVale
     //
     this.txtSaleTaxVale.EditValue = "0.00";
     this.txtSaleTaxVale.Location = new System.Drawing.Point(102, 104);
     this.txtSaleTaxVale.Name = "txtSaleTaxVale";
     this.txtSaleTaxVale.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxVale.TabIndex = 19;
     this.txtSaleTaxVale.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxVale_PreviewKeyDown);
     //
     // txtSaleTaxPer
     //
     this.txtSaleTaxPer.EditValue = "0.00";
     this.txtSaleTaxPer.Location = new System.Drawing.Point(102, 85);
     this.txtSaleTaxPer.Name = "txtSaleTaxPer";
     this.txtSaleTaxPer.Size = new System.Drawing.Size(82, 20);
     this.txtSaleTaxPer.TabIndex = 18;
     this.txtSaleTaxPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleTaxPer_PreviewKeyDown);
     //
     // txtMaxSalesDisc
     //
     this.txtMaxSalesDisc.EditValue = "0.00";
     this.txtMaxSalesDisc.Location = new System.Drawing.Point(102, 66);
     this.txtMaxSalesDisc.Name = "txtMaxSalesDisc";
     this.txtMaxSalesDisc.Size = new System.Drawing.Size(82, 20);
     this.txtMaxSalesDisc.TabIndex = 17;
     this.txtMaxSalesDisc.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxSalesDisc_PreviewKeyDown);
     //
     // txtPurchaseDiscountPer
     //
     this.txtPurchaseDiscountPer.EditValue = "0.0000";
     this.txtPurchaseDiscountPer.Location = new System.Drawing.Point(102, 47);
     this.txtPurchaseDiscountPer.Name = "txtPurchaseDiscountPer";
     this.txtPurchaseDiscountPer.Size = new System.Drawing.Size(82, 20);
     this.txtPurchaseDiscountPer.TabIndex = 16;
     this.txtPurchaseDiscountPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPurchaseDiscountPer_PreviewKeyDown);
     //
     // txtRetailPrice
     //
     this.txtRetailPrice.EditValue = "0.00";
     this.txtRetailPrice.Location = new System.Drawing.Point(102, 28);
     this.txtRetailPrice.Name = "txtRetailPrice";
     this.txtRetailPrice.Size = new System.Drawing.Size(82, 20);
     this.txtRetailPrice.TabIndex = 15;
     this.txtRetailPrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtRetailPrice_PreviewKeyDown);
     //
     // chkwolallow
     //
     this.chkwolallow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkwolallow.EnterMoveNextControl = true;
     this.chkwolallow.Location = new System.Drawing.Point(545, 179);
     this.chkwolallow.Name = "chkwolallow";
     this.chkwolallow.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkwolallow.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkwolallow.Properties.Appearance.Options.UseFont = true;
     this.chkwolallow.Properties.Appearance.Options.UseForeColor = true;
     this.chkwolallow.Properties.Caption = "With Out Lic Allow";
     this.chkwolallow.Size = new System.Drawing.Size(136, 19);
     this.chkwolallow.TabIndex = 50;
     this.chkwolallow.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkwolallow_PreviewKeyDown);
     //
     // chkAllowPer
     //
     this.chkAllowPer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowPer.Location = new System.Drawing.Point(545, 145);
     this.chkAllowPer.Name = "chkAllowPer";
     this.chkAllowPer.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowPer.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowPer.Properties.Appearance.Options.UseFont = true;
     this.chkAllowPer.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowPer.Properties.Caption = "Allow 100%";
     this.chkAllowPer.Size = new System.Drawing.Size(136, 19);
     this.chkAllowPer.TabIndex = 48;
     this.chkAllowPer.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowPer_PreviewKeyDown);
     //
     // chkAutoBonus
     //
     this.chkAutoBonus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAutoBonus.Location = new System.Drawing.Point(545, 162);
     this.chkAutoBonus.Name = "chkAutoBonus";
     this.chkAutoBonus.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAutoBonus.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAutoBonus.Properties.Appearance.Options.UseFont = true;
     this.chkAutoBonus.Properties.Appearance.Options.UseForeColor = true;
     this.chkAutoBonus.Properties.Caption = "Auto Bonus";
     this.chkAutoBonus.Size = new System.Drawing.Size(136, 19);
     this.chkAutoBonus.TabIndex = 49;
     this.chkAutoBonus.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAutoBonus_PreviewKeyDown);
     //
     // chkSaleBase
     //
     this.chkSaleBase.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleBase.Location = new System.Drawing.Point(545, 128);
     this.chkSaleBase.Name = "chkSaleBase";
     this.chkSaleBase.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleBase.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleBase.Properties.Appearance.Options.UseFont = true;
     this.chkSaleBase.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleBase.Properties.Caption = "Sale Base";
     this.chkSaleBase.Size = new System.Drawing.Size(136, 19);
     this.chkSaleBase.TabIndex = 47;
     this.chkSaleBase.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleBase_PreviewKeyDown);
     //
     // chkSaleTaxReg
     //
     this.chkSaleTaxReg.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkSaleTaxReg.Location = new System.Drawing.Point(545, 93);
     this.chkSaleTaxReg.Name = "chkSaleTaxReg";
     this.chkSaleTaxReg.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkSaleTaxReg.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkSaleTaxReg.Properties.Appearance.Options.UseFont = true;
     this.chkSaleTaxReg.Properties.Appearance.Options.UseForeColor = true;
     this.chkSaleTaxReg.Properties.Caption = "S.Tax Reg";
     this.chkSaleTaxReg.Size = new System.Drawing.Size(111, 19);
     this.chkSaleTaxReg.TabIndex = 44;
     this.chkSaleTaxReg.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkSaleTaxReg_PreviewKeyDown);
     //
     // chkNonPharma
     //
     this.chkNonPharma.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNonPharma.Location = new System.Drawing.Point(545, 110);
     this.chkNonPharma.Name = "chkNonPharma";
     this.chkNonPharma.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNonPharma.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNonPharma.Properties.Appearance.Options.UseFont = true;
     this.chkNonPharma.Properties.Appearance.Options.UseForeColor = true;
     this.chkNonPharma.Properties.Caption = "Non Pharma";
     this.chkNonPharma.Size = new System.Drawing.Size(89, 19);
     this.chkNonPharma.TabIndex = 45;
     this.chkNonPharma.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNonPharma_PreviewKeyDown);
     //
     // chkExcempted
     //
     this.chkExcempted.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkExcempted.Location = new System.Drawing.Point(545, 76);
     this.chkExcempted.Name = "chkExcempted";
     this.chkExcempted.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkExcempted.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkExcempted.Properties.Appearance.Options.UseFont = true;
     this.chkExcempted.Properties.Appearance.Options.UseForeColor = true;
     this.chkExcempted.Properties.Caption = "Tax Excempted";
     this.chkExcempted.Size = new System.Drawing.Size(111, 19);
     this.chkExcempted.TabIndex = 43;
     this.chkExcempted.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkExcempted_PreviewKeyDown);
     //
     // chkUseFlatRate
     //
     this.chkUseFlatRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkUseFlatRate.Location = new System.Drawing.Point(545, 7);
     this.chkUseFlatRate.Name = "chkUseFlatRate";
     this.chkUseFlatRate.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkUseFlatRate.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkUseFlatRate.Properties.Appearance.Options.UseFont = true;
     this.chkUseFlatRate.Properties.Appearance.Options.UseForeColor = true;
     this.chkUseFlatRate.Properties.Caption = "Use Flat Rate";
     this.chkUseFlatRate.Size = new System.Drawing.Size(139, 19);
     this.chkUseFlatRate.TabIndex = 39;
     this.chkUseFlatRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkUseFlatRate_PreviewKeyDown);
     //
     // chkNorCotics
     //
     this.chkNorCotics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkNorCotics.Location = new System.Drawing.Point(545, 24);
     this.chkNorCotics.Name = "chkNorCotics";
     this.chkNorCotics.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNorCotics.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkNorCotics.Properties.Appearance.Options.UseFont = true;
     this.chkNorCotics.Properties.Appearance.Options.UseForeColor = true;
     this.chkNorCotics.Properties.Caption = "Norcotics";
     this.chkNorCotics.Size = new System.Drawing.Size(75, 19);
     this.chkNorCotics.TabIndex = 40;
     this.chkNorCotics.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkNorCotics_PreviewKeyDown);
     //
     // chkHideinTabs
     //
     this.chkHideinTabs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkHideinTabs.Location = new System.Drawing.Point(545, 59);
     this.chkHideinTabs.Name = "chkHideinTabs";
     this.chkHideinTabs.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkHideinTabs.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkHideinTabs.Properties.Appearance.Options.UseFont = true;
     this.chkHideinTabs.Properties.Appearance.Options.UseForeColor = true;
     this.chkHideinTabs.Properties.Caption = "Hide in Tabs";
     this.chkHideinTabs.Size = new System.Drawing.Size(111, 19);
     this.chkHideinTabs.TabIndex = 42;
     this.chkHideinTabs.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkHideinTabs_PreviewKeyDown);
     //
     // chkAllowMaxQtyDays
     //
     this.chkAllowMaxQtyDays.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkAllowMaxQtyDays.Location = new System.Drawing.Point(545, 42);
     this.chkAllowMaxQtyDays.Name = "chkAllowMaxQtyDays";
     this.chkAllowMaxQtyDays.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkAllowMaxQtyDays.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseFont = true;
     this.chkAllowMaxQtyDays.Properties.Appearance.Options.UseForeColor = true;
     this.chkAllowMaxQtyDays.Properties.Caption = "Allow Max Qty & Days";
     this.chkAllowMaxQtyDays.Size = new System.Drawing.Size(139, 19);
     this.chkAllowMaxQtyDays.TabIndex = 41;
     this.chkAllowMaxQtyDays.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkAllowMaxQtyDays_PreviewKeyDown);
     //
     // chkProductDiscontinue
     //
     this.chkProductDiscontinue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkProductDiscontinue.Location = new System.Drawing.Point(545, 197);
     this.chkProductDiscontinue.Name = "chkProductDiscontinue";
     this.chkProductDiscontinue.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkProductDiscontinue.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkProductDiscontinue.Properties.Appearance.Options.UseFont = true;
     this.chkProductDiscontinue.Properties.Appearance.Options.UseForeColor = true;
     this.chkProductDiscontinue.Properties.Caption = "Product Discountinue";
     this.chkProductDiscontinue.Size = new System.Drawing.Size(141, 19);
     this.chkProductDiscontinue.TabIndex = 38;
     this.chkProductDiscontinue.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkProductDiscontinue_PreviewKeyDown);
     //
     // txtTradePrice
     //
     this.txtTradePrice.EditValue = "0.00";
     this.txtTradePrice.Location = new System.Drawing.Point(102, 9);
     this.txtTradePrice.Name = "txtTradePrice";
     this.txtTradePrice.Size = new System.Drawing.Size(82, 20);
     this.txtTradePrice.TabIndex = 14;
     this.txtTradePrice.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtTradePrice_PreviewKeyDown);
     //
     // txtSaleRate
     //
     this.txtSaleRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSaleRate.EditValue = "0.00";
     this.txtSaleRate.Location = new System.Drawing.Point(449, 9);
     this.txtSaleRate.Name = "txtSaleRate";
     this.txtSaleRate.Size = new System.Drawing.Size(82, 20);
     this.txtSaleRate.TabIndex = 33;
     this.txtSaleRate.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtSaleRate_PreviewKeyDown);
     //
     // txtPackInCarton
     //
     this.txtPackInCarton.Location = new System.Drawing.Point(285, 9);
     this.txtPackInCarton.Name = "txtPackInCarton";
     this.txtPackInCarton.Size = new System.Drawing.Size(82, 20);
     this.txtPackInCarton.TabIndex = 24;
     this.txtPackInCarton.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPackInCarton_PreviewKeyDown);
     //
     // labelControl9
     //
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl9.LineVisible = true;
     this.labelControl9.Location = new System.Drawing.Point(16, 9);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(96, 20);
     this.labelControl9.TabIndex = 140;
     this.labelControl9.Text = "Trade Price";
     //
     // labelControl18
     //
     this.labelControl18.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl18.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl18.LineVisible = true;
     this.labelControl18.Location = new System.Drawing.Point(16, 28);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(96, 20);
     this.labelControl18.TabIndex = 157;
     this.labelControl18.Text = "Retail Price";
     //
     // labelControl17
     //
     this.labelControl17.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl17.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl17.LineVisible = true;
     this.labelControl17.Location = new System.Drawing.Point(16, 47);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(96, 20);
     this.labelControl17.TabIndex = 156;
     this.labelControl17.Text = "Purchase Disc %";
     //
     // labelControl16
     //
     this.labelControl16.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl16.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl16.LineVisible = true;
     this.labelControl16.Location = new System.Drawing.Point(16, 66);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(96, 20);
     this.labelControl16.TabIndex = 155;
     this.labelControl16.Text = "Max Sales Disc %";
     //
     // labelControl15
     //
     this.labelControl15.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl15.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl15.LineVisible = true;
     this.labelControl15.Location = new System.Drawing.Point(16, 85);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(96, 20);
     this.labelControl15.TabIndex = 154;
     this.labelControl15.Text = "Sale Tax %";
     //
     // labelControl13
     //
     this.labelControl13.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl13.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl13.LineVisible = true;
     this.labelControl13.Location = new System.Drawing.Point(16, 104);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(96, 20);
     this.labelControl13.TabIndex = 153;
     this.labelControl13.Text = "Sale Tax Value";
     //
     // labelControl50
     //
     this.labelControl50.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl50.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl50.LineVisible = true;
     this.labelControl50.Location = new System.Drawing.Point(16, 123);
     this.labelControl50.Name = "labelControl50";
     this.labelControl50.Size = new System.Drawing.Size(96, 20);
     this.labelControl50.TabIndex = 60;
     this.labelControl50.Text = "Sale Tax Calc";
     //
     // labelControl12
     //
     this.labelControl12.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl12.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl12.LineVisible = true;
     this.labelControl12.Location = new System.Drawing.Point(16, 142);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(96, 20);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "Max Flat Rate";
     //
     // labelControl11
     //
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl11.LineVisible = true;
     this.labelControl11.Location = new System.Drawing.Point(16, 161);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(96, 20);
     this.labelControl11.TabIndex = 151;
     this.labelControl11.Text = "Min Flat Rate";
     //
     // labelControl19
     //
     this.labelControl19.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl19.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl19.LineVisible = true;
     this.labelControl19.Location = new System.Drawing.Point(16, 180);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(96, 20);
     this.labelControl19.TabIndex = 158;
     this.labelControl19.Text = "Inventory Days";
     //
     // labelControl20
     //
     this.labelControl20.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl20.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl20.LineVisible = true;
     this.labelControl20.Location = new System.Drawing.Point(16, 198);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(96, 20);
     this.labelControl20.TabIndex = 159;
     this.labelControl20.Text = "Tabs in Pack";
     //
     // labelControl25
     //
     this.labelControl25.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl25.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl25.LineVisible = true;
     this.labelControl25.Location = new System.Drawing.Point(191, 10);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(100, 20);
     this.labelControl25.TabIndex = 164;
     this.labelControl25.Text = "Packs in Carton";
     //
     // labelControl24
     //
     this.labelControl24.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl24.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl24.LineVisible = true;
     this.labelControl24.Location = new System.Drawing.Point(191, 29);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(100, 20);
     this.labelControl24.TabIndex = 163;
     this.labelControl24.Text = "Max Qty/Customer";
     //
     // labelControl23
     //
     this.labelControl23.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl23.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl23.LineVisible = true;
     this.labelControl23.Location = new System.Drawing.Point(191, 48);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(100, 20);
     this.labelControl23.TabIndex = 162;
     this.labelControl23.Text = "Max Qty Days";
     //
     // labelControl22
     //
     this.labelControl22.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl22.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl22.LineVisible = true;
     this.labelControl22.Location = new System.Drawing.Point(191, 67);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(100, 20);
     this.labelControl22.TabIndex = 161;
     this.labelControl22.Text = "Balance Stock";
     //
     // labelControl21
     //
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl21.LineVisible = true;
     this.labelControl21.Location = new System.Drawing.Point(191, 86);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(100, 20);
     this.labelControl21.TabIndex = 160;
     this.labelControl21.Text = "Balance Bonus";
     //
     // labelControl26
     //
     this.labelControl26.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl26.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl26.LineVisible = true;
     this.labelControl26.Location = new System.Drawing.Point(191, 104);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(100, 20);
     this.labelControl26.TabIndex = 165;
     this.labelControl26.Text = "Net Balance";
     //
     // labelControl52
     //
     this.labelControl52.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl52.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl52.LineVisible = true;
     this.labelControl52.Location = new System.Drawing.Point(191, 123);
     this.labelControl52.Name = "labelControl52";
     this.labelControl52.Size = new System.Drawing.Size(100, 20);
     this.labelControl52.TabIndex = 124267;
     this.labelControl52.Text = "Target";
     //
     // labelControl53
     //
     this.labelControl53.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl53.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl53.LineVisible = true;
     this.labelControl53.Location = new System.Drawing.Point(191, 142);
     this.labelControl53.Name = "labelControl53";
     this.labelControl53.Size = new System.Drawing.Size(100, 20);
     this.labelControl53.TabIndex = 124269;
     this.labelControl53.Text = "Transit";
     //
     // labelControl27
     //
     this.labelControl27.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl27.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl27.LineVisible = true;
     this.labelControl27.Location = new System.Drawing.Point(191, 162);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(100, 20);
     this.labelControl27.TabIndex = 166;
     this.labelControl27.Text = "Total Cost";
     //
     // labelControl28
     //
     this.labelControl28.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl28.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl28.LineVisible = true;
     this.labelControl28.Location = new System.Drawing.Point(191, 180);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(100, 20);
     this.labelControl28.TabIndex = 167;
     this.labelControl28.Text = "Special Rate";
     //
     // labelControl29
     //
     this.labelControl29.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl29.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl29.LineVisible = true;
     this.labelControl29.Location = new System.Drawing.Point(191, 199);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(100, 20);
     this.labelControl29.TabIndex = 168;
     this.labelControl29.Text = "Pure Rate";
     //
     // labelControl30
     //
     this.labelControl30.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl30.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl30.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl30.LineVisible = true;
     this.labelControl30.Location = new System.Drawing.Point(373, 10);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(82, 20);
     this.labelControl30.TabIndex = 169;
     this.labelControl30.Text = "Sale Rate";
     //
     // labelControl31
     //
     this.labelControl31.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl31.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl31.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl31.LineVisible = true;
     this.labelControl31.Location = new System.Drawing.Point(373, 29);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(82, 20);
     this.labelControl31.TabIndex = 182;
     this.labelControl31.Text = "Lead Time";
     //
     // labelControl32
     //
     this.labelControl32.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl32.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl32.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl32.LineVisible = true;
     this.labelControl32.Location = new System.Drawing.Point(373, 48);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(82, 20);
     this.labelControl32.TabIndex = 184;
     this.labelControl32.Text = "Tolerance Day";
     //
     // labelControl37
     //
     this.labelControl37.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl37.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl37.LineVisible = true;
     this.labelControl37.Location = new System.Drawing.Point(373, 67);
     this.labelControl37.Name = "labelControl37";
     this.labelControl37.Size = new System.Drawing.Size(82, 20);
     this.labelControl37.TabIndex = 186;
     this.labelControl37.Text = "Avg Rate";
     //
     // labelControl38
     //
     this.labelControl38.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl38.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl38.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl38.LineVisible = true;
     this.labelControl38.Location = new System.Drawing.Point(373, 86);
     this.labelControl38.Name = "labelControl38";
     this.labelControl38.Size = new System.Drawing.Size(82, 20);
     this.labelControl38.TabIndex = 103;
     this.labelControl38.Text = "Value Method";
     //
     // labelControl44
     //
     this.labelControl44.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl44.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl44.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl44.LineVisible = true;
     this.labelControl44.Location = new System.Drawing.Point(373, 105);
     this.labelControl44.Name = "labelControl44";
     this.labelControl44.Size = new System.Drawing.Size(82, 20);
     this.labelControl44.TabIndex = 124261;
     this.labelControl44.Text = "UOM-Sale";
     //
     // labelControl43
     //
     this.labelControl43.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl43.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl43.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl43.LineVisible = true;
     this.labelControl43.Location = new System.Drawing.Point(373, 124);
     this.labelControl43.Name = "labelControl43";
     this.labelControl43.Size = new System.Drawing.Size(82, 20);
     this.labelControl43.TabIndex = 124259;
     this.labelControl43.Text = "UOM-Size";
     //
     // labelControl41
     //
     this.labelControl41.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl41.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl41.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl41.LineVisible = true;
     this.labelControl41.Location = new System.Drawing.Point(373, 144);
     this.labelControl41.Name = "labelControl41";
     this.labelControl41.Size = new System.Drawing.Size(82, 20);
     this.labelControl41.TabIndex = 124263;
     this.labelControl41.Text = "UOM-Purchase";
     //
     // labelControl42
     //
     this.labelControl42.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl42.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl42.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl42.LineVisible = true;
     this.labelControl42.Location = new System.Drawing.Point(373, 161);
     this.labelControl42.Name = "labelControl42";
     this.labelControl42.Size = new System.Drawing.Size(82, 20);
     this.labelControl42.TabIndex = 124265;
     this.labelControl42.Text = "Factor";
     //
     // XtrabarBonus
     //
     this.XtrabarBonus.Controls.Add(this.datagridBonus);
     this.XtrabarBonus.Name = "XtrabarBonus";
     this.XtrabarBonus.Size = new System.Drawing.Size(695, 226);
     this.XtrabarBonus.Text = "Bonus";
     //
     // datagridBonus
     //
     this.datagridBonus.AllowAddNew = true;
     this.datagridBonus.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridBonus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridBonus.Caption = "Product Bonus";
     this.datagridBonus.CaptionHeight = 20;
     this.datagridBonus.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ColumnFooters = true;
     this.datagridBonus.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridBonus.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridBonus.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridBonus.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridBonus.Images"))));
     this.datagridBonus.Location = new System.Drawing.Point(0, 1);
     this.datagridBonus.Name = "datagridBonus";
     this.datagridBonus.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridBonus.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridBonus.PreviewInfo.ZoomFactor = 75D;
     this.datagridBonus.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridBonus.PrintInfo.PageSettings")));
     this.datagridBonus.RecordSelectors = false;
     this.datagridBonus.RowHeight = 20;
     this.datagridBonus.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridBonus.ScrollTips = true;
     this.datagridBonus.Size = new System.Drawing.Size(726, 304);
     this.datagridBonus.TabIndex = 32000;
     this.datagridBonus.Text = "c1TrueDBGrid1";
     this.datagridBonus.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridBonus.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridBonus_AfterColUpdate);
     this.datagridBonus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridBonus_KeyDown);
     this.datagridBonus.PropBag = resources.GetString("datagridBonus.PropBag");
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.datagridProductAllocation);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage1.Text = "Territory Allocation";
     //
     // datagridProductAllocation
     //
     this.datagridProductAllocation.AllowAddNew = true;
     this.datagridProductAllocation.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.datagridProductAllocation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.datagridProductAllocation.Caption = "Product Allocation";
     this.datagridProductAllocation.CaptionHeight = 20;
     this.datagridProductAllocation.CollapseColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ColumnFooters = true;
     this.datagridProductAllocation.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.datagridProductAllocation.ExpandColor = System.Drawing.Color.Transparent;
     this.datagridProductAllocation.ForeColor = System.Drawing.SystemColors.Window;
     this.datagridProductAllocation.Images.Add(((System.Drawing.Image)(resources.GetObject("datagridProductAllocation.Images"))));
     this.datagridProductAllocation.Location = new System.Drawing.Point(-1, 0);
     this.datagridProductAllocation.Name = "datagridProductAllocation";
     this.datagridProductAllocation.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.datagridProductAllocation.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.datagridProductAllocation.PreviewInfo.ZoomFactor = 75D;
     this.datagridProductAllocation.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("datagridProductAllocation.PrintInfo.PageSettings")));
     this.datagridProductAllocation.RecordSelectors = false;
     this.datagridProductAllocation.RowHeight = 20;
     this.datagridProductAllocation.RowSubDividerColor = System.Drawing.Color.Black;
     this.datagridProductAllocation.ScrollTips = true;
     this.datagridProductAllocation.Size = new System.Drawing.Size(696, 233);
     this.datagridProductAllocation.TabIndex = 1;
     this.datagridProductAllocation.Text = "c1TrueDBGrid1";
     this.datagridProductAllocation.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2007Blue;
     this.datagridProductAllocation.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.datagridProductAllocation_AfterColUpdate);
     this.datagridProductAllocation.KeyDown += new System.Windows.Forms.KeyEventHandler(this.datagridProductAllocation_KeyDown);
     this.datagridProductAllocation.PropBag = resources.GetString("datagridProductAllocation.PropBag");
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.groupControl5);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage2.Text = "Advance Information";
     //
     // groupControl5
     //
     this.groupControl5.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.groupControl5.Controls.Add(this.txtMaxLimit);
     this.groupControl5.Controls.Add(this.txtMinLimit);
     this.groupControl5.Controls.Add(this.txtBarCode);
     this.groupControl5.Controls.Add(this.txtShelfCode);
     this.groupControl5.Controls.Add(this.grdPresevasionStandard);
     this.groupControl5.Controls.Add(this.simpleButton8);
     this.groupControl5.Controls.Add(this.txtClaimPartnerID);
     this.groupControl5.Controls.Add(this.txtClaimPartnerName);
     this.groupControl5.Controls.Add(this.simpleButton7);
     this.groupControl5.Controls.Add(this.txtBussinessPartnerid);
     this.groupControl5.Controls.Add(this.businessPartnerName);
     this.groupControl5.Controls.Add(this.labelControl40);
     this.groupControl5.Controls.Add(this.labelControl48);
     this.groupControl5.Controls.Add(this.labelControl46);
     this.groupControl5.Controls.Add(this.labelControl47);
     this.groupControl5.Controls.Add(this.labelControl54);
     this.groupControl5.Controls.Add(this.labelControl55);
     this.groupControl5.Location = new System.Drawing.Point(0, 0);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.ShowCaption = false;
     this.groupControl5.Size = new System.Drawing.Size(695, 233);
     this.groupControl5.TabIndex = 0;
     this.groupControl5.Text = "Extra Information";
     //
     // txtMaxLimit
     //
     this.txtMaxLimit.Location = new System.Drawing.Point(103, 102);
     this.txtMaxLimit.Name = "txtMaxLimit";
     this.txtMaxLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMaxLimit.TabIndex = 124268;
     this.txtMaxLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMaxLimit_PreviewKeyDown);
     //
     // txtMinLimit
     //
     this.txtMinLimit.Location = new System.Drawing.Point(103, 83);
     this.txtMinLimit.Name = "txtMinLimit";
     this.txtMinLimit.Size = new System.Drawing.Size(209, 20);
     this.txtMinLimit.TabIndex = 124266;
     this.txtMinLimit.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtMinLimit_PreviewKeyDown);
     //
     // txtBarCode
     //
     this.txtBarCode.Location = new System.Drawing.Point(103, 64);
     this.txtBarCode.Name = "txtBarCode";
     this.txtBarCode.Size = new System.Drawing.Size(209, 20);
     this.txtBarCode.TabIndex = 124261;
     this.txtBarCode.TabStop = false;
     this.txtBarCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBarCode_PreviewKeyDown);
     //
     // txtShelfCode
     //
     this.txtShelfCode.Location = new System.Drawing.Point(103, 45);
     this.txtShelfCode.Name = "txtShelfCode";
     this.txtShelfCode.Size = new System.Drawing.Size(209, 20);
     this.txtShelfCode.TabIndex = 124259;
     this.txtShelfCode.TabStop = false;
     this.txtShelfCode.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShelfCode_PreviewKeyDown);
     //
     // grdPresevasionStandard
     //
     this.grdPresevasionStandard.AllowAddNew = true;
     this.grdPresevasionStandard.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.grdPresevasionStandard.CaptionHeight = 17;
     this.grdPresevasionStandard.Images.Add(((System.Drawing.Image)(resources.GetObject("grdPresevasionStandard.Images"))));
     this.grdPresevasionStandard.Location = new System.Drawing.Point(411, 5);
     this.grdPresevasionStandard.Name = "grdPresevasionStandard";
     this.grdPresevasionStandard.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdPresevasionStandard.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdPresevasionStandard.PreviewInfo.ZoomFactor = 75D;
     this.grdPresevasionStandard.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdPresevasionStandard.PrintInfo.PageSettings")));
     this.grdPresevasionStandard.RowHeight = 15;
     this.grdPresevasionStandard.Size = new System.Drawing.Size(277, 225);
     this.grdPresevasionStandard.TabIndex = 124270;
     this.grdPresevasionStandard.Text = "c1TrueDBGrid2";
     this.grdPresevasionStandard.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.grdPresevasionStandard_AfterColUpdate);
     this.grdPresevasionStandard.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.grdPresevasionStandard_PreviewKeyDown);
     this.grdPresevasionStandard.PropBag = resources.GetString("grdPresevasionStandard.PropBag");
     //
     // simpleButton8
     //
     this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton8.Appearance.Options.UseFont = true;
     this.simpleButton8.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton8.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton8.Location = new System.Drawing.Point(152, 26);
     this.simpleButton8.Name = "simpleButton8";
     this.simpleButton8.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton8.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem1.Text = "Add New Entry";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.simpleButton8.SuperTip = superToolTip1;
     this.simpleButton8.TabIndex = 124264;
     this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
     //
     // txtClaimPartnerID
     //
     this.txtClaimPartnerID.Location = new System.Drawing.Point(103, 25);
     this.txtClaimPartnerID.Mask = "000000";
     this.txtClaimPartnerID.Name = "txtClaimPartnerID";
     this.txtClaimPartnerID.Size = new System.Drawing.Size(49, 21);
     this.txtClaimPartnerID.TabIndex = 124262;
     this.txtClaimPartnerID.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtClaimPartnerID_PreviewKeyDown);
     //
     // txtClaimPartnerName
     //
     this.txtClaimPartnerName.Location = new System.Drawing.Point(176, 26);
     this.txtClaimPartnerName.Name = "txtClaimPartnerName";
     this.txtClaimPartnerName.Size = new System.Drawing.Size(136, 20);
     this.txtClaimPartnerName.TabIndex = 124265;
     //
     // simpleButton7
     //
     this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton7.Appearance.Options.UseFont = true;
     this.simpleButton7.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton7.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton7.Location = new System.Drawing.Point(152, 6);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton7.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem2.Text = "Add New Entry";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.simpleButton7.SuperTip = superToolTip2;
     this.simpleButton7.TabIndex = 124250;
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // txtBussinessPartnerid
     //
     this.txtBussinessPartnerid.Location = new System.Drawing.Point(103, 6);
     this.txtBussinessPartnerid.Mask = "000000";
     this.txtBussinessPartnerid.Name = "txtBussinessPartnerid";
     this.txtBussinessPartnerid.Size = new System.Drawing.Size(49, 21);
     this.txtBussinessPartnerid.TabIndex = 124248;
     this.txtBussinessPartnerid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtBussinessPartnerid_PreviewKeyDown);
     //
     // businessPartnerName
     //
     this.businessPartnerName.Location = new System.Drawing.Point(176, 7);
     this.businessPartnerName.Name = "businessPartnerName";
     this.businessPartnerName.Size = new System.Drawing.Size(136, 20);
     this.businessPartnerName.TabIndex = 124251;
     //
     // labelControl40
     //
     this.labelControl40.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl40.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl40.LineVisible = true;
     this.labelControl40.Location = new System.Drawing.Point(8, 6);
     this.labelControl40.Name = "labelControl40";
     this.labelControl40.Size = new System.Drawing.Size(103, 20);
     this.labelControl40.TabIndex = 124249;
     this.labelControl40.Text = "Business Partner ID";
     //
     // labelControl48
     //
     this.labelControl48.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl48.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl48.LineVisible = true;
     this.labelControl48.Location = new System.Drawing.Point(8, 26);
     this.labelControl48.Name = "labelControl48";
     this.labelControl48.Size = new System.Drawing.Size(103, 20);
     this.labelControl48.TabIndex = 124263;
     this.labelControl48.Text = "Claim Partner ID";
     //
     // labelControl46
     //
     this.labelControl46.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl46.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl46.LineVisible = true;
     this.labelControl46.Location = new System.Drawing.Point(8, 46);
     this.labelControl46.Name = "labelControl46";
     this.labelControl46.Size = new System.Drawing.Size(103, 20);
     this.labelControl46.TabIndex = 124258;
     this.labelControl46.Text = "Shelf Code";
     //
     // labelControl47
     //
     this.labelControl47.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl47.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl47.LineVisible = true;
     this.labelControl47.Location = new System.Drawing.Point(8, 65);
     this.labelControl47.Name = "labelControl47";
     this.labelControl47.Size = new System.Drawing.Size(103, 20);
     this.labelControl47.TabIndex = 124260;
     this.labelControl47.Text = "Bar Code";
     //
     // labelControl54
     //
     this.labelControl54.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl54.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl54.LineVisible = true;
     this.labelControl54.Location = new System.Drawing.Point(8, 85);
     this.labelControl54.Name = "labelControl54";
     this.labelControl54.Size = new System.Drawing.Size(103, 20);
     this.labelControl54.TabIndex = 124267;
     this.labelControl54.Text = "Min Limit";
     //
     // labelControl55
     //
     this.labelControl55.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl55.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl55.LineVisible = true;
     this.labelControl55.Location = new System.Drawing.Point(8, 103);
     this.labelControl55.Name = "labelControl55";
     this.labelControl55.Size = new System.Drawing.Size(103, 20);
     this.labelControl55.TabIndex = 124269;
     this.labelControl55.Text = "Max Limit";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dgFileAttachments);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(695, 226);
     this.xtraTabPage3.Text = "Attachment & Remarks";
     //
     // dgFileAttachments
     //
     this.dgFileAttachments.AllowAddNew = true;
     this.dgFileAttachments.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.dgFileAttachments.CaptionHeight = 17;
     this.dgFileAttachments.Images.Add(((System.Drawing.Image)(resources.GetObject("dgFileAttachments.Images"))));
     this.dgFileAttachments.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.Name = "dgFileAttachments";
     this.dgFileAttachments.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.dgFileAttachments.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.dgFileAttachments.PreviewInfo.ZoomFactor = 75D;
     this.dgFileAttachments.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("dgFileAttachments.PrintInfo.PageSettings")));
     this.dgFileAttachments.RowHeight = 15;
     this.dgFileAttachments.Size = new System.Drawing.Size(698, 233);
     this.dgFileAttachments.TabIndex = 0;
     this.dgFileAttachments.Text = "c1TrueDBGrid1";
     this.dgFileAttachments.AfterColUpdate += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_AfterColUpdate);
     this.dgFileAttachments.ButtonClick += new C1.Win.C1TrueDBGrid.ColEventHandler(this.dgFileAttachments_ButtonClick);
     this.dgFileAttachments.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgFileAttachments_PreviewKeyDown);
     this.dgFileAttachments.PropBag = resources.GetString("dgFileAttachments.PropBag");
     //
     // Productid
     //
     this.Productid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.Productid.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Productid.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.Productid.LineVisible = true;
     this.Productid.Location = new System.Drawing.Point(4, 12);
     this.Productid.Name = "Productid";
     this.Productid.Size = new System.Drawing.Size(72, 20);
     this.Productid.TabIndex = 1;
     this.Productid.Text = "Item Id";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cmbProductCategory);
     this.groupControl1.Controls.Add(this.txtShortName);
     this.groupControl1.Controls.Add(this.txtArtical);
     this.groupControl1.Controls.Add(this.txtProductName);
     this.groupControl1.Controls.Add(this.cmbSkuType);
     this.groupControl1.Controls.Add(this.cmbGeneralName);
     this.groupControl1.Controls.Add(this.cmbProtoType);
     this.groupControl1.Controls.Add(this.btnPickList);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.txtProductId);
     this.groupControl1.Controls.Add(this.txtPack);
     this.groupControl1.Controls.Add(this.Productid);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl14);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.labelControl49);
     this.groupControl1.Controls.Add(this.labelControl39);
     this.groupControl1.Location = new System.Drawing.Point(2, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(405, 105);
     this.groupControl1.TabIndex = 11;
     this.groupControl1.Text = "Products";
     //
     // cmbProductCategory
     //
     this.cmbProductCategory.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProductCategory.Location = new System.Drawing.Point(308, 67);
     this.cmbProductCategory.Name = "cmbProductCategory";
     this.cmbProductCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProductCategory.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProductCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProductCategory.Size = new System.Drawing.Size(91, 20);
     this.cmbProductCategory.TabIndex = 55;
     this.cmbProductCategory.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProductCategory_PreviewKeyDown);
     //
     // txtShortName
     //
     this.txtShortName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtShortName.Location = new System.Drawing.Point(62, 69);
     this.txtShortName.Name = "txtShortName";
     this.txtShortName.Size = new System.Drawing.Size(169, 20);
     this.txtShortName.TabIndex = 6;
     this.txtShortName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtShortName_PreviewKeyDown);
     //
     // txtArtical
     //
     this.txtArtical.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtArtical.Location = new System.Drawing.Point(62, 50);
     this.txtArtical.Name = "txtArtical";
     this.txtArtical.Size = new System.Drawing.Size(169, 20);
     this.txtArtical.TabIndex = 5;
     this.txtArtical.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtArtical_PreviewKeyDown);
     //
     // txtProductName
     //
     this.txtProductName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductName.Location = new System.Drawing.Point(62, 31);
     this.txtProductName.Name = "txtProductName";
     this.txtProductName.Size = new System.Drawing.Size(169, 20);
     this.txtProductName.TabIndex = 4;
     this.txtProductName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductName_PreviewKeyDown);
     //
     // cmbSkuType
     //
     this.cmbSkuType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbSkuType.Location = new System.Drawing.Point(308, 48);
     this.cmbSkuType.Name = "cmbSkuType";
     this.cmbSkuType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbSkuType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbSkuType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbSkuType.Size = new System.Drawing.Size(91, 20);
     this.cmbSkuType.TabIndex = 57;
     this.cmbSkuType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbSkuType_PreviewKeyDown);
     //
     // cmbGeneralName
     //
     this.cmbGeneralName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbGeneralName.Location = new System.Drawing.Point(308, 29);
     this.cmbGeneralName.Name = "cmbGeneralName";
     this.cmbGeneralName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbGeneralName.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbGeneralName.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbGeneralName.Size = new System.Drawing.Size(91, 20);
     this.cmbGeneralName.TabIndex = 3;
     this.cmbGeneralName.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbGeneralName_PreviewKeyDown);
     //
     // cmbProtoType
     //
     this.cmbProtoType.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.cmbProtoType.Location = new System.Drawing.Point(308, 11);
     this.cmbProtoType.Name = "cmbProtoType";
     this.cmbProtoType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbProtoType.Properties.Items.AddRange(new object[] {
     "Town",
     "Brick",
     "SubBrick",
     "Terriorty"});
     this.cmbProtoType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cmbProtoType.Size = new System.Drawing.Size(91, 20);
     this.cmbProtoType.TabIndex = 2;
     this.cmbProtoType.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.cmbProtoType_PreviewKeyDown);
     //
     // btnPickList
     //
     this.btnPickList.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.btnPickList.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.btnPickList.Appearance.Options.UseFont = true;
     this.btnPickList.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.btnPickList.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnPickList.Location = new System.Drawing.Point(113, 12);
     this.btnPickList.Name = "btnPickList";
     this.btnPickList.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.btnPickList.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem3.Text = "Add New Entry";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btnPickList.SuperTip = superToolTip3;
     this.btnPickList.TabIndex = 47;
     this.btnPickList.TabStop = false;
     this.btnPickList.Click += new System.EventHandler(this.btnPickList_Click);
     //
     // labelControl3
     //
     this.labelControl3.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl3.Location = new System.Drawing.Point(140, 15);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(22, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "Pack";
     //
     // txtProductId
     //
     this.txtProductId.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtProductId.Location = new System.Drawing.Point(62, 11);
     this.txtProductId.Mask = "000-000";
     this.txtProductId.Name = "txtProductId";
     this.txtProductId.Size = new System.Drawing.Size(51, 21);
     this.txtProductId.TabIndex = 0;
     this.txtProductId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtProductId_KeyDown);
     this.txtProductId.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtProductId_KeyPress);
     this.txtProductId.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtProductId_PreviewKeyDown);
     //
     // txtPack
     //
     this.txtPack.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtPack.Location = new System.Drawing.Point(171, 12);
     this.txtPack.Name = "txtPack";
     this.txtPack.Size = new System.Drawing.Size(60, 20);
     this.txtPack.TabIndex = 1;
     this.txtPack.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtPack_PreviewKeyDown);
     //
     // labelControl6
     //
     this.labelControl6.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl6.LineVisible = true;
     this.labelControl6.Location = new System.Drawing.Point(4, 32);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(79, 20);
     this.labelControl6.TabIndex = 7;
     this.labelControl6.Text = "Item Name";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location = new System.Drawing.Point(4, 51);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(72, 20);
     this.labelControl2.TabIndex = 52;
     this.labelControl2.Text = "Artical No.";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl8.LineVisible = true;
     this.labelControl8.Location = new System.Drawing.Point(4, 70);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(72, 20);
     this.labelControl8.TabIndex = 59;
     this.labelControl8.Text = "Description";
     //
     // labelControl14
     //
     this.labelControl14.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl14.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl14.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl14.LineVisible = true;
     this.labelControl14.Location = new System.Drawing.Point(235, 11);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(90, 20);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "Item Type";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl7.LineVisible = true;
     this.labelControl7.Location = new System.Drawing.Point(235, 30);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(90, 20);
     this.labelControl7.TabIndex = 54;
     this.labelControl7.Text = "Gen. Name";
     //
     // labelControl49
     //
     this.labelControl49.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl49.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl49.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl49.LineVisible = true;
     this.labelControl49.Location = new System.Drawing.Point(235, 48);
     this.labelControl49.Name = "labelControl49";
     this.labelControl49.Size = new System.Drawing.Size(77, 20);
     this.labelControl49.TabIndex = 58;
     this.labelControl49.Text = "SKU Type";
     //
     // labelControl39
     //
     this.labelControl39.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl39.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl39.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl39.LineVisible = true;
     this.labelControl39.Location = new System.Drawing.Point(235, 67);
     this.labelControl39.Name = "labelControl39";
     this.labelControl39.Size = new System.Drawing.Size(90, 20);
     this.labelControl39.TabIndex = 56;
     this.labelControl39.Text = "Item Category";
     //
     // labelControl4
     //
     this.labelControl4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl4.LineVisible = true;
     this.labelControl4.Location = new System.Drawing.Point(169, 9);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 20);
     this.labelControl4.TabIndex = 5;
     this.labelControl4.Text = "Group Seq.";
     //
     // labelControl5
     //
     this.labelControl5.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl5.LineVisible = true;
     this.labelControl5.Location = new System.Drawing.Point(5, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(84, 20);
     this.labelControl5.TabIndex = 6;
     this.labelControl5.Text = "Group Name";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl10.LineVisible = true;
     this.labelControl10.Location = new System.Drawing.Point(5, 8);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(71, 20);
     this.labelControl10.TabIndex = 11;
     this.labelControl10.Text = "Group Id";
     //
     // txtGroupSeq
     //
     this.txtGroupSeq.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupSeq.Location = new System.Drawing.Point(224, 10);
     this.txtGroupSeq.Name = "txtGroupSeq";
     this.txtGroupSeq.Size = new System.Drawing.Size(62, 20);
     this.txtGroupSeq.TabIndex = 8;
     this.txtGroupSeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupSeq_PreviewKeyDown);
     //
     // txtGroupName
     //
     this.txtGroupName.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupName.Location = new System.Drawing.Point(85, 29);
     this.txtGroupName.Name = "txtGroupName";
     this.txtGroupName.Size = new System.Drawing.Size(201, 20);
     this.txtGroupName.TabIndex = 124244;
     this.txtGroupName.TabStop = false;
     //
     // txtGroupid
     //
     this.txtGroupid.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtGroupid.Location = new System.Drawing.Point(85, 9);
     this.txtGroupid.Mask = "000-000";
     this.txtGroupid.Name = "txtGroupid";
     this.txtGroupid.Size = new System.Drawing.Size(51, 21);
     this.txtGroupid.TabIndex = 7;
     this.txtGroupid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtGroupid_PreviewKeyDown);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton1.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton1.Appearance.Options.UseFont = true;
     this.simpleButton1.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton1.Location = new System.Drawing.Point(137, 9);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton1.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem4.Text = "Add New Entry";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.simpleButton1.SuperTip = superToolTip4;
     this.simpleButton1.TabIndex = 48;
     this.simpleButton1.TabStop = false;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.txtmanualgroup);
     this.groupControl2.Controls.Add(this.labelControl57);
     this.groupControl2.Controls.Add(this.txtdateto);
     this.groupControl2.Controls.Add(this.txtdatefrom);
     this.groupControl2.Controls.Add(this.simpleButton4);
     this.groupControl2.Controls.Add(this.simpleButton1);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.txtGroupName);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.txtGroupSeq);
     this.groupControl2.Controls.Add(this.txtGroupid);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl56);
     this.groupControl2.Controls.Add(this.labelControl51);
     this.groupControl2.Location = new System.Drawing.Point(411, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(291, 105);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "Group";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // txtmanualgroup
     //
     this.txtmanualgroup.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.txtmanualgroup.Location = new System.Drawing.Point(85, 68);
     this.txtmanualgroup.Name = "txtmanualgroup";
     this.txtmanualgroup.Size = new System.Drawing.Size(201, 20);
     this.txtmanualgroup.TabIndex = 124245;
     this.txtmanualgroup.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtmanualgroup_PreviewKeyDown);
     //
     // labelControl57
     //
     this.labelControl57.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl57.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl57.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl57.LineVisible = true;
     this.labelControl57.Location = new System.Drawing.Point(168, 50);
     this.labelControl57.Name = "labelControl57";
     this.labelControl57.Size = new System.Drawing.Size(38, 20);
     this.labelControl57.TabIndex = 124252;
     this.labelControl57.Text = "Date To";
     //
     // txtdateto
     //
     this.txtdateto.Location = new System.Drawing.Point(211, 48);
     this.txtdateto.Mask = "00/00/0000";
     this.txtdateto.Name = "txtdateto";
     this.txtdateto.Size = new System.Drawing.Size(75, 21);
     this.txtdateto.TabIndex = 124251;
     this.txtdateto.ValidatingType = typeof(System.DateTime);
     this.txtdateto.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdateto_PreviewKeyDown);
     //
     // txtdatefrom
     //
     this.txtdatefrom.Location = new System.Drawing.Point(85, 48);
     this.txtdatefrom.Mask = "00/00/0000";
     this.txtdatefrom.Name = "txtdatefrom";
     this.txtdatefrom.Size = new System.Drawing.Size(75, 21);
     this.txtdatefrom.TabIndex = 124250;
     this.txtdatefrom.ValidatingType = typeof(System.DateTime);
     this.txtdatefrom.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtdatefrom_PreviewKeyDown);
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton4.Location = new System.Drawing.Point(63, 9);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(21, 20);
     toolTipItem1.Text = "Save Module";
     superToolTip5.Items.Add(toolTipItem1);
     this.simpleButton4.SuperTip = superToolTip5;
     this.simpleButton4.TabIndex = 187;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // labelControl56
     //
     this.labelControl56.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl56.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl56.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl56.LineVisible = true;
     this.labelControl56.Location = new System.Drawing.Point(5, 51);
     this.labelControl56.Name = "labelControl56";
     this.labelControl56.Size = new System.Drawing.Size(84, 20);
     this.labelControl56.TabIndex = 124249;
     this.labelControl56.Text = "Date From";
     //
     // labelControl51
     //
     this.labelControl51.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.labelControl51.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl51.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl51.LineVisible = true;
     this.labelControl51.Location = new System.Drawing.Point(5, 69);
     this.labelControl51.Name = "labelControl51";
     this.labelControl51.Size = new System.Drawing.Size(84, 20);
     this.labelControl51.TabIndex = 124246;
     this.labelControl51.Text = "Manual Groups";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Image = global::ERPGUI.Properties.Resources.addfooter_16x16;
     this.btnAdd.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnAdd.Location = new System.Drawing.Point(3, 426);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(70, 23);
     toolTipItem2.Text = "Add New Module";
     superToolTip6.Items.Add(toolTipItem2);
     this.btnAdd.SuperTip = superToolTip6;
     this.btnAdd.TabIndex = 47;
     this.btnAdd.Text = " &Add ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCancel.Image = global::ERPGUI.Properties.Resources.deletedatasource_16x16;
     this.btnCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(79, 426);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(70, 23);
     toolTipItem3.Text = "Cancel Current Operation";
     superToolTip7.Items.Add(toolTipItem3);
     this.btnCancel.SuperTip = superToolTip7;
     this.btnCancel.TabIndex = 50;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // groupControl4
     //
     this.groupControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl4.Controls.Add(this.simpleButton6);
     this.groupControl4.Controls.Add(this.simpleButton5);
     this.groupControl4.Controls.Add(this.chkCompanyDiscount);
     this.groupControl4.Controls.Add(this.txtCompanySeq);
     this.groupControl4.Controls.Add(this.simpleButton3);
     this.groupControl4.Controls.Add(this.labelControl35);
     this.groupControl4.Controls.Add(this.txtReportCompanyName);
     this.groupControl4.Controls.Add(this.txtReportCompanyid);
     this.groupControl4.Controls.Add(this.simpleButton2);
     this.groupControl4.Controls.Add(this.txtCompanyName);
     this.groupControl4.Controls.Add(this.txtCompanyid);
     this.groupControl4.Controls.Add(this.labelControl33);
     this.groupControl4.Controls.Add(this.labelControl34);
     this.groupControl4.Controls.Add(this.labelControl36);
     this.groupControl4.Controls.Add(this.labelControl1);
     this.groupControl4.Location = new System.Drawing.Point(3, 110);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.ShowCaption = false;
     this.groupControl4.Size = new System.Drawing.Size(699, 55);
     this.groupControl4.TabIndex = 49;
     this.groupControl4.Text = "Group";
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton6.Location = new System.Drawing.Point(110, 27);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(21, 20);
     toolTipItem4.Text = "Save Module";
     superToolTip8.Items.Add(toolTipItem4);
     this.simpleButton6.SuperTip = superToolTip8;
     this.simpleButton6.TabIndex = 124246;
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton5.Location = new System.Drawing.Point(110, 6);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(21, 20);
     toolTipItem5.Text = "Save Module";
     superToolTip9.Items.Add(toolTipItem5);
     this.simpleButton5.SuperTip = superToolTip9;
     this.simpleButton5.TabIndex = 124245;
     //
     // chkCompanyDiscount
     //
     this.chkCompanyDiscount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.chkCompanyDiscount.Location = new System.Drawing.Point(472, 26);
     this.chkCompanyDiscount.Name = "chkCompanyDiscount";
     this.chkCompanyDiscount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkCompanyDiscount.Properties.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(88)))), ((int)(((byte)(168)))));
     this.chkCompanyDiscount.Properties.Appearance.Options.UseFont = true;
     this.chkCompanyDiscount.Properties.Appearance.Options.UseForeColor = true;
     this.chkCompanyDiscount.Properties.Caption = "Company Discount";
     this.chkCompanyDiscount.Size = new System.Drawing.Size(136, 19);
     this.chkCompanyDiscount.TabIndex = 100001;
     this.chkCompanyDiscount.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.chkCompanyDiscount_PreviewKeyDown);
     //
     // txtCompanySeq
     //
     this.txtCompanySeq.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanySeq.Location = new System.Drawing.Point(542, 6);
     this.txtCompanySeq.Name = "txtCompanySeq";
     this.txtCompanySeq.Size = new System.Drawing.Size(62, 20);
     this.txtCompanySeq.TabIndex = 10;
     this.txtCompanySeq.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanySeq_PreviewKeyDown);
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton3.Appearance.Options.UseFont = true;
     this.simpleButton3.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton3.Location = new System.Drawing.Point(159, 27);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton3.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem5.Text = "Add New Entry";
     superToolTip10.Items.Add(toolTipTitleItem5);
     this.simpleButton3.SuperTip = superToolTip10;
     this.simpleButton3.TabIndex = 53;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // labelControl35
     //
     this.labelControl35.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl35.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl35.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl35.LineVisible = true;
     this.labelControl35.Location = new System.Drawing.Point(17, 29);
     this.labelControl35.Name = "labelControl35";
     this.labelControl35.Size = new System.Drawing.Size(101, 20);
     this.labelControl35.TabIndex = 50;
     this.labelControl35.Text = "Report CompanyId";
     //
     // txtReportCompanyName
     //
     this.txtReportCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyName.Location = new System.Drawing.Point(264, 26);
     this.txtReportCompanyName.Name = "txtReportCompanyName";
     this.txtReportCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtReportCompanyName.TabIndex = 13;
     //
     // txtReportCompanyid
     //
     this.txtReportCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtReportCompanyid.Location = new System.Drawing.Point(133, 27);
     this.txtReportCompanyid.Mask = "000";
     this.txtReportCompanyid.Name = "txtReportCompanyid";
     this.txtReportCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtReportCompanyid.TabIndex = 11;
     this.txtReportCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtReportCompanyid_PreviewKeyDown);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.simpleButton2.Appearance.Font = new System.Drawing.Font("Tahoma", 9F);
     this.simpleButton2.Appearance.Options.UseFont = true;
     this.simpleButton2.Image = global::ERPGUI.Properties.Resources.find_16x16;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.simpleButton2.Location = new System.Drawing.Point(159, 6);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.simpleButton2.Size = new System.Drawing.Size(24, 20);
     toolTipTitleItem6.Text = "Add New Entry";
     superToolTip11.Items.Add(toolTipTitleItem6);
     this.simpleButton2.SuperTip = superToolTip11;
     this.simpleButton2.TabIndex = 48;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyName.Location = new System.Drawing.Point(264, 6);
     this.txtCompanyName.Name = "txtCompanyName";
     this.txtCompanyName.Size = new System.Drawing.Size(204, 20);
     this.txtCompanyName.TabIndex = 100000;
     //
     // txtCompanyid
     //
     this.txtCompanyid.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.txtCompanyid.Location = new System.Drawing.Point(133, 6);
     this.txtCompanyid.Mask = "000";
     this.txtCompanyid.Name = "txtCompanyid";
     this.txtCompanyid.Size = new System.Drawing.Size(25, 21);
     this.txtCompanyid.TabIndex = 9;
     this.txtCompanyid.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.txtCompanyid_PreviewKeyDown);
     //
     // labelControl33
     //
     this.labelControl33.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl33.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl33.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl33.LineVisible = true;
     this.labelControl33.Location = new System.Drawing.Point(17, 7);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(101, 20);
     this.labelControl33.TabIndex = 11;
     this.labelControl33.Text = "Company Id";
     //
     // labelControl34
     //
     this.labelControl34.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl34.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl34.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl34.LineVisible = true;
     this.labelControl34.Location = new System.Drawing.Point(187, 6);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(95, 20);
     this.labelControl34.TabIndex = 6;
     this.labelControl34.Text = "Company Name";
     //
     // labelControl36
     //
     this.labelControl36.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl36.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl36.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl36.LineVisible = true;
     this.labelControl36.Location = new System.Drawing.Point(187, 26);
     this.labelControl36.Name = "labelControl36";
     this.labelControl36.Size = new System.Drawing.Size(95, 20);
     this.labelControl36.TabIndex = 49;
     this.labelControl36.Text = "Company Name";
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Bottom;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location = new System.Drawing.Point(471, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(81, 20);
     this.labelControl1.TabIndex = 54;
     this.labelControl1.Text = "Company Seq.";
     //
     // frmProducts
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 454);
     this.Controls.Add(this.groupControl4);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnCancel);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmProducts";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Products";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmProducts_FormClosing);
     this.Load += new System.EventHandler(this.frmProducts_Load);
     this.Enter += new System.EventHandler(this.frmProducts_Enter);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtrabarGeneralinformation.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtfactor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuompurchase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsize.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtuomsale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbValueMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAvgRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtToleranceDay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoadTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSpecialRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCostRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTransit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTarget.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNetBalance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBalanceStock.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxQuantityPCustomer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInventoryDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSaleTaxCalculation.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxVale.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleTaxPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxSalesDisc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPurchaseDiscountPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRetailPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkwolallow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowPer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAutoBonus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleBase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkSaleTaxReg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNonPharma.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkExcempted.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkUseFlatRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkNorCotics.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkHideinTabs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkAllowMaxQtyDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkProductDiscontinue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTradePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSaleRate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPackInCarton.Properties)).EndInit();
     this.XtrabarBonus.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridBonus)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.datagridProductAllocation)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     this.groupControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtMaxLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMinLimit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBarCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShelfCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdPresevasionStandard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtClaimPartnerName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.businessPartnerName.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgFileAttachments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProductCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtShortName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtArtical.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtProductName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbSkuType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbGeneralName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbProtoType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPack.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupSeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtGroupName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmanualgroup.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkCompanyDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanySeq.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReportCompanyName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCompanyName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
示例#42
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
            this.c1TrueDBGrid1 = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();

            this.dsMasterDetail1     = new Tutor3.DsMasterDetail();
            this.c1TrueDBGrid2       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
            this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
            this.oleDbDeleteCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
            this.oleDbInsertCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbUpdateCommand1 = new System.Data.OleDb.OleDbCommand();
            this.oleDbDataAdapter2   = new System.Data.OleDb.OleDbDataAdapter();
            this.oleDbDeleteCommand2 = new System.Data.OleDb.OleDbCommand();
            this.oleDbInsertCommand2 = new System.Data.OleDb.OleDbCommand();
            this.oleDbSelectCommand2 = new System.Data.OleDb.OleDbCommand();
            this.oleDbUpdateCommand2 = new System.Data.OleDb.OleDbCommand();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsMasterDetail1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid2)).BeginInit();
            this.SuspendLayout();
            //
            // c1TrueDBGrid1
            //
            this.c1TrueDBGrid1.Caption        = "C1TrueDBGrid.Net";
            this.c1TrueDBGrid1.CaptionHeight  = 17;
            this.c1TrueDBGrid1.DataMember     = "Composer";
            this.c1TrueDBGrid1.DataSource     = this.dsMasterDetail1;
            this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
            this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
            this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 40);
            this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
            this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
            this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
            this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
            this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
            this.c1TrueDBGrid1.RowHeight              = 15;
            this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(488, 152);
            this.c1TrueDBGrid1.TabIndex               = 0;
            this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
            this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Birth\" Data" +
                                                        "Field=\"Birth\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" " +
                                                        "Caption=\"Country\" DataField=\"Country\"><ValueItems /><GroupInfo /></C1DataColumn>" +
                                                        "<C1DataColumn Level=\"0\" Caption=\"Death\" DataField=\"Death\"><ValueItems /><GroupIn" +
                                                        "fo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"First\" DataField=\"First\"><V" +
                                                        "alueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Last\" D" +
                                                        "ataField=\"Last\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"1" +
                                                        "\" Caption=\"Last\" DataField=\"Last\"><ValueItems /><GroupInfo /></C1DataColumn><C1D" +
                                                        "ataColumn Level=\"1\" Caption=\"Opus\" DataField=\"Opus\"><ValueItems /><GroupInfo /><" +
                                                        "/C1DataColumn></DataCols><Styles type=\"C1.Win.C1TrueDBGrid.Design.ContextWrapper" +
                                                        "\"><Data>Style108{}Style109{}HighlightRow{ForeColor:HighlightText;BackColor:Highl" +
                                                        "ight;}Style104{}Style105{}Style106{AlignHorz:Near;}Style107{AlignHorz:Near;}Styl" +
                                                        "e100{AlignHorz:Near;}Style101{AlignHorz:Near;}Normal{Font:Tahoma, 11world;}Style" +
                                                        "103{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Editor{}Style94{Align" +
                                                        "Horz:Far;}Style110{}Style96{}Style10{AlignHorz:Near;}Style11{}Style12{}Style13{}" +
                                                        "Caption{AlignHorz:Center;}Style98{}Style34{}Style35{}Style85{}Style84{}Style87{}" +
                                                        "Style86{}Style83{AlignHorz:Far;}Style82{AlignHorz:Far;}RecordSelector{AlignImage" +
                                                        ":Center;}Footer{}Style89{AlignHorz:Near;}Style88{AlignHorz:Near;}Style102{}Inact" +
                                                        "ive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}EvenRow{BackColor:A" +
                                                        "qua;}OddRow{}Heading{Wrap:True;BackColor:Control;Border:Raised,,1, 1, 1, 1;ForeC" +
                                                        "olor:ControlText;AlignVert:Center;}Style91{}Style97{}Style90{}FilterBar{}Style95" +
                                                        "{AlignHorz:Far;}Style111{}Style4{}Style9{}Style8{}Style92{}Style93{}Style5{}Grou" +
                                                        "p{AlignVert:Center;Border:None,,0, 0, 0, 0;BackColor:ControlDark;}Style7{}Style6" +
                                                        "{}Style1{}Style99{}Style3{}Style2{}</Data></Styles><Splits><C1.Win.C1TrueDBGrid." +
                                                        "MergeView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooterHeight" +
                                                        "=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRecSelWidth=\"1" +
                                                        "7\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 17, 484, 131" +
                                                        "</ClientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"Style10" +
                                                        "\" /><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenRow\" me" +
                                                        "=\"Style8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle paren" +
                                                        "t=\"Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><HeadingStyle" +
                                                        " parent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" me=\"Sty" +
                                                        "le7\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=\"OddRo" +
                                                        "w\" me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\" /><Se" +
                                                        "lectedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Style1\" /" +
                                                        "><internalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style100\" /><S" +
                                                        "tyle parent=\"Style1\" me=\"Style101\" /><FooterStyle parent=\"Style3\" me=\"Style102\" " +
                                                        "/><EditorStyle parent=\"Style5\" me=\"Style103\" /><GroupHeaderStyle parent=\"Style1\"" +
                                                        " me=\"Style105\" /><GroupFooterStyle parent=\"Style1\" me=\"Style104\" /><Visible>True" +
                                                        "</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>102</Width><Heigh" +
                                                        "t>15</Height><DCIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle pa" +
                                                        "rent=\"Style2\" me=\"Style106\" /><Style parent=\"Style1\" me=\"Style107\" /><FooterStyl" +
                                                        "e parent=\"Style3\" me=\"Style108\" /><EditorStyle parent=\"Style5\" me=\"Style109\" /><" +
                                                        "GroupHeaderStyle parent=\"Style1\" me=\"Style111\" /><GroupFooterStyle parent=\"Style" +
                                                        "1\" me=\"Style110\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</Column" +
                                                        "Divider><Width>102</Width><Height>15</Height><DCIdx>4</DCIdx></C1DisplayColumn><" +
                                                        "C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style88\" /><Style parent=\"Styl" +
                                                        "e1\" me=\"Style89\" /><FooterStyle parent=\"Style3\" me=\"Style90\" /><EditorStyle pare" +
                                                        "nt=\"Style5\" me=\"Style91\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style93\" /><Gro" +
                                                        "upFooterStyle parent=\"Style1\" me=\"Style92\" /><Visible>True</Visible><ColumnDivid" +
                                                        "er>DarkGray,Single</ColumnDivider><Width>102</Width><Height>15</Height><DCIdx>1<" +
                                                        "/DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Styl" +
                                                        "e82\" /><Style parent=\"Style1\" me=\"Style83\" /><FooterStyle parent=\"Style3\" me=\"St" +
                                                        "yle84\" /><EditorStyle parent=\"Style5\" me=\"Style85\" /><GroupHeaderStyle parent=\"S" +
                                                        "tyle1\" me=\"Style87\" /><GroupFooterStyle parent=\"Style1\" me=\"Style86\" /><Visible>" +
                                                        "True</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Width>102</Width><H" +
                                                        "eight>15</Height><DCIdx>0</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyl" +
                                                        "e parent=\"Style2\" me=\"Style94\" /><Style parent=\"Style1\" me=\"Style95\" /><FooterSt" +
                                                        "yle parent=\"Style3\" me=\"Style96\" /><EditorStyle parent=\"Style5\" me=\"Style97\" /><" +
                                                        "GroupHeaderStyle parent=\"Style1\" me=\"Style99\" /><GroupFooterStyle parent=\"Style1" +
                                                        "\" me=\"Style98\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDi" +
                                                        "vider><Width>102</Width><Height>15</Height><DCIdx>2</DCIdx></C1DisplayColumn></i" +
                                                        "nternalCols></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent=" +
                                                        "\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"Heading\" /><Style parent=\"Heading\" m" +
                                                        "e=\"Footer\" /><Style parent=\"Heading\" me=\"Caption\" /><Style parent=\"Heading\" me=\"" +
                                                        "Inactive\" /><Style parent=\"Normal\" me=\"Selected\" /><Style parent=\"Normal\" me=\"Ed" +
                                                        "itor\" /><Style parent=\"Normal\" me=\"HighlightRow\" /><Style parent=\"Normal\" me=\"Ev" +
                                                        "enRow\" /><Style parent=\"Normal\" me=\"OddRow\" /><Style parent=\"Heading\" me=\"Record" +
                                                        "Selector\" /><Style parent=\"Normal\" me=\"FilterBar\" /><Style parent=\"Caption\" me=\"" +
                                                        "Group\" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layo" +
                                                        "ut>Modified</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0," +
                                                        " 484, 148</ClientArea><PrintPageHeaderStyle parent=\"\" me=\"Style34\" /><PrintPageF" +
                                                        "ooterStyle parent=\"\" me=\"Style35\" /></Blob>";
            //
            // dsMasterDetail1
            //
            this.dsMasterDetail1.DataSetName = "DsMasterDetail";
            this.dsMasterDetail1.Locale      = new System.Globalization.CultureInfo("en-US");
            this.dsMasterDetail1.Namespace   = "http://www.tempuri.org/DsMasterDetail.xsd";
            //
            // c1TrueDBGrid2
            //
            this.c1TrueDBGrid2.CaptionHeight  = 17;
            this.c1TrueDBGrid2.DataMember     = "Composer.ComposerOpus";
            this.c1TrueDBGrid2.DataSource     = this.dsMasterDetail1;
            this.c1TrueDBGrid2.GroupByCaption = "Drag a column header here to group by that column";
            this.c1TrueDBGrid2.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images1"))));
            this.c1TrueDBGrid2.Location               = new System.Drawing.Point(8, 240);
            this.c1TrueDBGrid2.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
            this.c1TrueDBGrid2.Name                   = "c1TrueDBGrid2";
            this.c1TrueDBGrid2.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
            this.c1TrueDBGrid2.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
            this.c1TrueDBGrid2.PreviewInfo.ZoomFactor = 75;
            this.c1TrueDBGrid2.RecordSelectorWidth    = 17;
            this.c1TrueDBGrid2.RowDivider.Color       = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid2.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
            this.c1TrueDBGrid2.RowHeight              = 15;
            this.c1TrueDBGrid2.RowSubDividerColor     = System.Drawing.Color.DarkGray;
            this.c1TrueDBGrid2.Size                   = new System.Drawing.Size(480, 96);
            this.c1TrueDBGrid2.TabIndex               = 1;
            this.c1TrueDBGrid2.Text                   = "c1TrueDBGrid2";
            this.c1TrueDBGrid2.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Last\" DataF" +
                                                        "ield=\"Last\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Ca" +
                                                        "ption=\"Opus\" DataField=\"Opus\"><ValueItems /><GroupInfo /></C1DataColumn></DataCo" +
                                                        "ls><Styles type=\"C1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>HighlightRow{F" +
                                                        "oreColor:HighlightText;BackColor:Highlight;}Caption{AlignHorz:Center;}Normal{Fon" +
                                                        "t:Tahoma, 11world;}Style25{}Selected{ForeColor:HighlightText;BackColor:Highlight" +
                                                        ";}Editor{}Style18{AlignHorz:Near;}Style19{AlignHorz:Near;}Style14{AlignHorz:Near" +
                                                        ";}Style15{AlignHorz:Near;}Style16{}Style17{}Style10{AlignHorz:Near;}Style11{}Odd" +
                                                        "Row{}Style13{}Footer{}Style27{}Style26{}RecordSelector{AlignImage:Center;}Style2" +
                                                        "4{}Style23{}Style22{}Style21{}Style20{}Inactive{ForeColor:InactiveCaptionText;Ba" +
                                                        "ckColor:InactiveCaption;}EvenRow{BackColor:Aqua;}Heading{Wrap:True;BackColor:Con" +
                                                        "trol;Border:Raised,,1, 1, 1, 1;ForeColor:ControlText;AlignVert:Center;}FilterBar" +
                                                        "{}Style5{}Style4{}Style9{}Style8{}Style12{}Group{AlignVert:Center;Border:None,,0" +
                                                        ", 0, 0, 0;BackColor:ControlDark;}Style7{}Style6{}Style1{}Style3{}Style2{}</Data>" +
                                                        "</Styles><Splits><C1.Win.C1TrueDBGrid.MergeView Name=\"\" CaptionHeight=\"17\" Colum" +
                                                        "nCaptionHeight=\"17\" ColumnFooterHeight=\"17\" MarqueeStyle=\"DottedCellBorder\" Reco" +
                                                        "rdSelectorWidth=\"17\" DefRecSelWidth=\"17\" VerticalScrollGroup=\"1\" HorizontalScrol" +
                                                        "lGroup=\"1\"><ClientRect>0, 0, 476, 92</ClientRect><BorderSide>0</BorderSide><Capt" +
                                                        "ionStyle parent=\"Style2\" me=\"Style10\" /><EditorStyle parent=\"Editor\" me=\"Style5\"" +
                                                        " /><EvenRowStyle parent=\"EvenRow\" me=\"Style8\" /><FilterBarStyle parent=\"FilterBa" +
                                                        "r\" me=\"Style13\" /><FooterStyle parent=\"Footer\" me=\"Style3\" /><GroupStyle parent=" +
                                                        "\"Group\" me=\"Style12\" /><HeadingStyle parent=\"Heading\" me=\"Style2\" /><HighLightRo" +
                                                        "wStyle parent=\"HighlightRow\" me=\"Style7\" /><InactiveStyle parent=\"Inactive\" me=\"" +
                                                        "Style4\" /><OddRowStyle parent=\"OddRow\" me=\"Style9\" /><RecordSelectorStyle parent" +
                                                        "=\"RecordSelector\" me=\"Style11\" /><SelectedStyle parent=\"Selected\" me=\"Style6\" />" +
                                                        "<Style parent=\"Normal\" me=\"Style1\" /><internalCols><C1DisplayColumn><HeadingStyl" +
                                                        "e parent=\"Style2\" me=\"Style14\" /><Style parent=\"Style1\" me=\"Style15\" /><FooterSt" +
                                                        "yle parent=\"Style3\" me=\"Style16\" /><EditorStyle parent=\"Style5\" me=\"Style17\" /><" +
                                                        "GroupHeaderStyle parent=\"Style1\" me=\"Style25\" /><GroupFooterStyle parent=\"Style1" +
                                                        "\" me=\"Style24\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDi" +
                                                        "vider><Width>83</Width><Height>15</Height><DCIdx>0</DCIdx></C1DisplayColumn><C1D" +
                                                        "isplayColumn><HeadingStyle parent=\"Style2\" me=\"Style18\" /><Style parent=\"Style1\"" +
                                                        " me=\"Style19\" /><FooterStyle parent=\"Style3\" me=\"Style20\" /><EditorStyle parent=" +
                                                        "\"Style5\" me=\"Style21\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style27\" /><GroupF" +
                                                        "ooterStyle parent=\"Style1\" me=\"Style26\" /><Visible>True</Visible><ColumnDivider>" +
                                                        "DarkGray,Single</ColumnDivider><Width>373</Width><Height>15</Height><DCIdx>1</DC" +
                                                        "Idx></C1DisplayColumn></internalCols></C1.Win.C1TrueDBGrid.MergeView></Splits><N" +
                                                        "amedStyles><Style parent=\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"Heading\" />" +
                                                        "<Style parent=\"Heading\" me=\"Footer\" /><Style parent=\"Heading\" me=\"Caption\" /><St" +
                                                        "yle parent=\"Heading\" me=\"Inactive\" /><Style parent=\"Normal\" me=\"Selected\" /><Sty" +
                                                        "le parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal\" me=\"HighlightRow\" /><Sty" +
                                                        "le parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Normal\" me=\"OddRow\" /><Style pa" +
                                                        "rent=\"Heading\" me=\"RecordSelector\" /><Style parent=\"Normal\" me=\"FilterBar\" /><St" +
                                                        "yle parent=\"Caption\" me=\"Group\" /></NamedStyles><vertSplits>1</vertSplits><horzS" +
                                                        "plits>1</horzSplits><Layout>Modified</Layout><DefaultRecSelWidth>17</DefaultRecS" +
                                                        "elWidth><ClientArea>0, 0, 476, 92</ClientArea><PrintPageHeaderStyle parent=\"\" me" +
                                                        "=\"Style22\" /><PrintPageFooterStyle parent=\"\" me=\"Style23\" /></Blob>";
            //
            // oleDbDataAdapter1
            //
            this.oleDbDataAdapter1.DeleteCommand = this.oleDbDeleteCommand1;
            this.oleDbDataAdapter1.InsertCommand = this.oleDbInsertCommand1;
            this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
            this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "Composer", new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("Birth", "Birth"),
                    new System.Data.Common.DataColumnMapping("Country", "Country"),
                    new System.Data.Common.DataColumnMapping("Death", "Death"),
                    new System.Data.Common.DataColumnMapping("First", "First"),
                    new System.Data.Common.DataColumnMapping("Last", "Last")
                })
            });
            this.oleDbDataAdapter1.UpdateCommand = this.oleDbUpdateCommand1;
            //
            // oleDbDeleteCommand1
            //
            this.oleDbDeleteCommand1.CommandText = "DELETE FROM Composer WHERE (Last = ?) AND (Birth = ? OR ? IS NULL AND Birth IS NU" +
                                                   "LL) AND (Country = ? OR ? IS NULL AND Country IS NULL) AND (Death = ? OR ? IS NU" +
                                                   "LL AND Death IS NULL) AND (First = ? OR ? IS NULL AND First IS NULL)";
            this.oleDbDeleteCommand1.Connection = this.oleDbConnection1;
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Last", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Birth", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Birth", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Birth1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Birth", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Country", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Country", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Country1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Country", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Death", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Death", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Death1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Death", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_First", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "First", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_First1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "First", System.Data.DataRowVersion.Original, null));
            //
            // oleDbConnection1
            //
            this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=5;Jet OLEDB:Database Locking Mode=1;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
            //
            // oleDbInsertCommand1
            //
            this.oleDbInsertCommand1.CommandText = "INSERT INTO Composer(Birth, Country, Death, First, Last) VALUES (?, ?, ?, ?, ?)";
            this.oleDbInsertCommand1.Connection  = this.oleDbConnection1;
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"));
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"));
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"));
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"));
            this.oleDbInsertCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"));
            //
            // oleDbSelectCommand1
            //
            this.oleDbSelectCommand1.CommandText = "SELECT Birth, Country, Death, First, Last FROM Composer";
            this.oleDbSelectCommand1.Connection  = this.oleDbConnection1;
            //
            // oleDbUpdateCommand1
            //
            this.oleDbUpdateCommand1.CommandText = @"UPDATE Composer SET Birth = ?, Country = ?, Death = ?, First = ?, Last = ? WHERE (Last = ?) AND (Birth = ? OR ? IS NULL AND Birth IS NULL) AND (Country = ? OR ? IS NULL AND Country IS NULL) AND (Death = ? OR ? IS NULL AND Death IS NULL) AND (First = ? OR ? IS NULL AND First IS NULL)";
            this.oleDbUpdateCommand1.Connection  = this.oleDbConnection1;
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Birth", System.Data.OleDb.OleDbType.DBDate, 0, "Birth"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Country", System.Data.OleDb.OleDbType.VarWChar, 50, "Country"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Death", System.Data.OleDb.OleDbType.DBDate, 0, "Death"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("First", System.Data.OleDb.OleDbType.VarWChar, 50, "First"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Last", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Birth", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Birth", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Birth1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Birth", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Country", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Country", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Country1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Country", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Death", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Death", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Death1", System.Data.OleDb.OleDbType.DBDate, 0, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Death", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_First", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "First", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand1.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_First1", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "First", System.Data.DataRowVersion.Original, null));
            //
            // oleDbDataAdapter2
            //
            this.oleDbDataAdapter2.DeleteCommand = this.oleDbDeleteCommand2;
            this.oleDbDataAdapter2.InsertCommand = this.oleDbInsertCommand2;
            this.oleDbDataAdapter2.SelectCommand = this.oleDbSelectCommand2;
            this.oleDbDataAdapter2.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
                new System.Data.Common.DataTableMapping("Table", "Opus", new System.Data.Common.DataColumnMapping[] {
                    new System.Data.Common.DataColumnMapping("Last", "Last"),
                    new System.Data.Common.DataColumnMapping("Opus", "Opus")
                })
            });
            this.oleDbDataAdapter2.UpdateCommand = this.oleDbUpdateCommand2;
            //
            // oleDbDeleteCommand2
            //
            this.oleDbDeleteCommand2.CommandText = "DELETE FROM Opus WHERE (Last = ?) AND (Opus = ?)";
            this.oleDbDeleteCommand2.Connection  = this.oleDbConnection1;
            this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Last", System.Data.DataRowVersion.Original, null));
            this.oleDbDeleteCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Opus", System.Data.OleDb.OleDbType.VarWChar, 150, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Opus", System.Data.DataRowVersion.Original, null));
            //
            // oleDbInsertCommand2
            //
            this.oleDbInsertCommand2.CommandText = "INSERT INTO Opus(Last, Opus) VALUES (?, ?)";
            this.oleDbInsertCommand2.Connection  = this.oleDbConnection1;
            this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"));
            this.oleDbInsertCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Opus", System.Data.OleDb.OleDbType.VarWChar, 150, "Opus"));
            //
            // oleDbSelectCommand2
            //
            this.oleDbSelectCommand2.CommandText = "SELECT Last, Opus FROM Opus";
            this.oleDbSelectCommand2.Connection  = this.oleDbConnection1;
            //
            // oleDbUpdateCommand2
            //
            this.oleDbUpdateCommand2.CommandText = "UPDATE Opus SET Last = ?, Opus = ? WHERE (Last = ?) AND (Opus = ?)";
            this.oleDbUpdateCommand2.Connection  = this.oleDbConnection1;
            this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Last", System.Data.OleDb.OleDbType.VarWChar, 50, "Last"));
            this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Opus", System.Data.OleDb.OleDbType.VarWChar, 150, "Opus"));
            this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Last", System.Data.OleDb.OleDbType.VarWChar, 50, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Last", System.Data.DataRowVersion.Original, null));
            this.oleDbUpdateCommand2.Parameters.Add(new System.Data.OleDb.OleDbParameter("Original_Opus", System.Data.OleDb.OleDbType.VarWChar, 150, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "Opus", System.Data.DataRowVersion.Original, null));
            //
            // label1
            //
            this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label1.Location = new System.Drawing.Point(16, 8);
            this.label1.Name     = "label1";
            this.label1.TabIndex = 2;
            this.label1.Text     = "Composers:";
            //
            // label2
            //
            this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.label2.Location = new System.Drawing.Point(16, 208);
            this.label2.Name     = "label2";
            this.label2.TabIndex = 3;
            this.label2.Text     = "Their Works:";
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(512, 358);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                this.label2,
                this.label1,
                this.c1TrueDBGrid2,
                this.c1TrueDBGrid1
            });
            this.Name  = "Form1";
            this.Text  = "Tutorial 03";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dsMasterDetail1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid2)).EndInit();
            this.ResumeLayout(false);
        }
示例#43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.c1TrueDBGrid1       = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.dsContacts1         = new Tutorial10.DsContacts();
     this.oleDbDataAdapter1   = new System.Data.OleDb.OleDbDataAdapter();
     this.oleDbSelectCommand1 = new System.Data.OleDb.OleDbCommand();
     this.oleDbConnection1    = new System.Data.OleDb.OleDbConnection();
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsContacts1)).BeginInit();
     this.SuspendLayout();
     //
     // c1TrueDBGrid1
     //
     this.c1TrueDBGrid1.Caption        = "C1True DBGrid .Net";
     this.c1TrueDBGrid1.CaptionHeight  = 17;
     this.c1TrueDBGrid1.DataMember     = "Contacts";
     this.c1TrueDBGrid1.DataSource     = this.dsContacts1;
     this.c1TrueDBGrid1.GroupByCaption = "Drag a column header here to group by that column";
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images"))));
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images1"))));
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images2"))));
     this.c1TrueDBGrid1.Images.Add(((System.Drawing.Bitmap)(resources.GetObject("resource.Images3"))));
     this.c1TrueDBGrid1.Location               = new System.Drawing.Point(8, 8);
     this.c1TrueDBGrid1.MarqueeStyle           = C1.Win.C1TrueDBGrid.MarqueeEnum.DottedCellBorder;
     this.c1TrueDBGrid1.Name                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.PreviewInfo.Location   = new System.Drawing.Point(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.Size       = new System.Drawing.Size(0, 0);
     this.c1TrueDBGrid1.PreviewInfo.ZoomFactor = 75;
     this.c1TrueDBGrid1.RecordSelectorWidth    = 17;
     this.c1TrueDBGrid1.RowDivider.Color       = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.RowDivider.Style       = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.c1TrueDBGrid1.RowHeight              = 15;
     this.c1TrueDBGrid1.RowSubDividerColor     = System.Drawing.Color.DarkGray;
     this.c1TrueDBGrid1.Size                   = new System.Drawing.Size(616, 168);
     this.c1TrueDBGrid1.TabIndex               = 0;
     this.c1TrueDBGrid1.Text                   = "c1TrueDBGrid1";
     this.c1TrueDBGrid1.UnboundColumnFetch    += new C1.Win.C1TrueDBGrid.UnboundColumnFetchEventHandler(this.c1TrueDBGrid1_UnboundColumnFetch);
     this.c1TrueDBGrid1.PropBag                = "<?xml version=\"1.0\"?><Blob><DataCols><C1DataColumn Level=\"0\" Caption=\"Name\" DataF" +
                                                 "ield=\"\"><ValueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Captio" +
                                                 "n=\"FirstName\" DataField=\"FirstName\"><ValueItems /><GroupInfo /></C1DataColumn><C" +
                                                 "1DataColumn Level=\"0\" Caption=\"LastName\" DataField=\"LastName\"><ValueItems /><Gro" +
                                                 "upInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"CustType\" DataField=\"Cu" +
                                                 "stType\"><ValueItems Presentation=\"ComboBox\" Translate=\"True\"><internalValues><Va" +
                                                 "lueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"1\" dispVal=\"Prospective\" /><" +
                                                 "ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"2\" dispVal=\"Normal\" /><Val" +
                                                 "ueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"3\" dispVal=\"Buyer\" /><ValueIt" +
                                                 "em type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"4\" dispVal=\"Distributor\" /><Value" +
                                                 "Item type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"5\" dispVal=\"Other\" /></internal" +
                                                 "Values></ValueItems><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=" +
                                                 "\"ContactType\" DataField=\"ContactType\"><ValueItems CycleOnClick=\"True\" Translate=" +
                                                 "\"True\"><internalValues><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"0\"" +
                                                 " ImgIdx=\"1\" /><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"1\" ImgIdx=\"" +
                                                 "2\" /><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"2\" ImgIdx=\"3\" /></in" +
                                                 "ternalValues></ValueItems><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Ca" +
                                                 "ption=\"CallBack\" DataField=\"Callback\"><ValueItems CycleOnClick=\"True\" Presentati" +
                                                 "on=\"CheckBox\" Translate=\"True\" /><GroupInfo /></C1DataColumn><C1DataColumn Level" +
                                                 "=\"0\" Caption=\"ContactDate\" DataField=\"ContactDate\"><ValueItems /><GroupInfo /></" +
                                                 "C1DataColumn><C1DataColumn Level=\"0\" Caption=\"UserCode\" DataField=\"UserCode\"><Va" +
                                                 "lueItems /><GroupInfo /></C1DataColumn><C1DataColumn Level=\"0\" Caption=\"Expr1\" D" +
                                                 "ataField=\"Expr1\"><ValueItems Presentation=\"ComboBox\" Translate=\"True\"><internalV" +
                                                 "alues><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"1\" dispVal=\"Prospec" +
                                                 "tive\" /><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"2\" dispVal=\"Norma" +
                                                 "l\" /><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"3\" dispVal=\"Buyer\" /" +
                                                 "><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"4\" dispVal=\"Distributor\"" +
                                                 " /><ValueItem type=\"C1.Win.C1TrueDBGrid.ValueItem\" Value=\"5\" dispVal=\"Other\" /><" +
                                                 "/internalValues></ValueItems><GroupInfo /></C1DataColumn></DataCols><Styles type" +
                                                 "=\"C1.Win.C1TrueDBGrid.Design.ContextWrapper\"><Data>HighlightRow{ForeColor:Highli" +
                                                 "ghtText;BackColor:Highlight;}Inactive{ForeColor:InactiveCaptionText;BackColor:In" +
                                                 "activeCaption;}Selected{ForeColor:HighlightText;BackColor:Highlight;}Editor{}Fil" +
                                                 "terBar{}Heading{Wrap:True;BackColor:Control;Border:Raised,,1, 1, 1, 1;ForeColor:" +
                                                 "ControlText;AlignVert:Center;}Style18{AlignHorz:Near;}Style19{AlignHorz:Near;}St" +
                                                 "yle14{AlignHorz:Near;}Style15{AlignHorz:Near;}Style16{}Style17{}Style10{AlignHor" +
                                                 "z:Near;}Style11{}Style12{}Style13{}Style27{AlignHorz:Center;AlignVert:Center;}St" +
                                                 "yle29{}Style28{}Style26{AlignHorz:Far;}Style25{}Style9{}Style8{}Style24{}Style23" +
                                                 "{AlignHorz:Far;}Style5{}Style4{}Style7{}Style6{}Style1{}Style22{AlignHorz:Far;}S" +
                                                 "tyle3{}Style2{}Style21{}Style20{}OddRow{}Style38{AlignHorz:Near;}Style39{AlignHo" +
                                                 "rz:Near;}Style36{}Style37{}Style34{AlignHorz:Far;}Style35{AlignHorz:Far;}Style32" +
                                                 "{}Style33{}Style30{AlignHorz:Center;}Style49{}Style48{}Style31{AlignHorz:Center;" +
                                                 "AlignVert:Center;}Normal{Font:Tahoma, 11world;}Style41{}Style40{}Style43{AlignHo" +
                                                 "rz:Near;}Style42{AlignHorz:Near;}Style45{}Style44{}Style47{AlignHorz:Near;}Style" +
                                                 "46{AlignHorz:Near;}EvenRow{BackColor:Aqua;}Style59{}Style58{}RecordSelector{Alig" +
                                                 "nImage:Center;}Style51{}Style50{}Footer{}Style52{}Style53{}Style54{}Style55{}Sty" +
                                                 "le56{}Style57{}Caption{AlignHorz:Center;}Style69{}Style68{}Style63{}Style62{}Sty" +
                                                 "le61{}Style60{}Style67{}Style66{}Style65{}Style64{}Group{AlignVert:Center;Border" +
                                                 ":None,,0, 0, 0, 0;BackColor:ControlDark;}</Data></Styles><Splits><C1.Win.C1TrueD" +
                                                 "BGrid.MergeView Name=\"\" CaptionHeight=\"17\" ColumnCaptionHeight=\"17\" ColumnFooter" +
                                                 "Height=\"17\" MarqueeStyle=\"DottedCellBorder\" RecordSelectorWidth=\"17\" DefRecSelWi" +
                                                 "dth=\"17\" VerticalScrollGroup=\"1\" HorizontalScrollGroup=\"1\"><ClientRect>0, 17, 61" +
                                                 "2, 147</ClientRect><BorderSide>0</BorderSide><CaptionStyle parent=\"Style2\" me=\"S" +
                                                 "tyle10\" /><EditorStyle parent=\"Editor\" me=\"Style5\" /><EvenRowStyle parent=\"EvenR" +
                                                 "ow\" me=\"Style8\" /><FilterBarStyle parent=\"FilterBar\" me=\"Style13\" /><FooterStyle" +
                                                 " parent=\"Footer\" me=\"Style3\" /><GroupStyle parent=\"Group\" me=\"Style12\" /><Headin" +
                                                 "gStyle parent=\"Heading\" me=\"Style2\" /><HighLightRowStyle parent=\"HighlightRow\" m" +
                                                 "e=\"Style7\" /><InactiveStyle parent=\"Inactive\" me=\"Style4\" /><OddRowStyle parent=" +
                                                 "\"OddRow\" me=\"Style9\" /><RecordSelectorStyle parent=\"RecordSelector\" me=\"Style11\"" +
                                                 " /><SelectedStyle parent=\"Selected\" me=\"Style6\" /><Style parent=\"Normal\" me=\"Sty" +
                                                 "le1\" /><internalCols><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style46\"" +
                                                 " /><Style parent=\"Style1\" me=\"Style47\" /><FooterStyle parent=\"Style3\" me=\"Style4" +
                                                 "8\" /><EditorStyle parent=\"Style5\" me=\"Style49\" /><GroupHeaderStyle parent=\"Style" +
                                                 "1\" me=\"Style53\" /><GroupFooterStyle parent=\"Style1\" me=\"Style52\" /><ColumnDivide" +
                                                 "r>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>0</DCIdx></C1DisplayC" +
                                                 "olumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style14\" /><Style paren" +
                                                 "t=\"Style1\" me=\"Style15\" /><FooterStyle parent=\"Style3\" me=\"Style16\" /><EditorSty" +
                                                 "le parent=\"Style5\" me=\"Style17\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style55\"" +
                                                 " /><GroupFooterStyle parent=\"Style1\" me=\"Style54\" /><Visible>True</Visible><Colu" +
                                                 "mnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>1</DCIdx></C1" +
                                                 "DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style18\" /><Sty" +
                                                 "le parent=\"Style1\" me=\"Style19\" /><FooterStyle parent=\"Style3\" me=\"Style20\" /><E" +
                                                 "ditorStyle parent=\"Style5\" me=\"Style21\" /><GroupHeaderStyle parent=\"Style1\" me=\"" +
                                                 "Style57\" /><GroupFooterStyle parent=\"Style1\" me=\"Style56\" /><Visible>True</Visib" +
                                                 "le><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><DCIdx>2</DC" +
                                                 "Idx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style22" +
                                                 "\" /><Style parent=\"Style1\" me=\"Style23\" /><FooterStyle parent=\"Style3\" me=\"Style" +
                                                 "24\" /><EditorStyle parent=\"Style5\" me=\"Style25\" /><GroupHeaderStyle parent=\"Styl" +
                                                 "e1\" me=\"Style59\" /><GroupFooterStyle parent=\"Style1\" me=\"Style58\" /><Visible>Tru" +
                                                 "e</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><But" +
                                                 "ton>True</Button><DCIdx>3</DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyl" +
                                                 "e parent=\"Style2\" me=\"Style26\" /><Style parent=\"Style1\" me=\"Style27\" /><FooterSt" +
                                                 "yle parent=\"Style3\" me=\"Style28\" /><EditorStyle parent=\"Style5\" me=\"Style29\" /><" +
                                                 "GroupHeaderStyle parent=\"Style1\" me=\"Style61\" /><GroupFooterStyle parent=\"Style1" +
                                                 "\" me=\"Style60\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</ColumnDi" +
                                                 "vider><Height>15</Height><DCIdx>4</DCIdx></C1DisplayColumn><C1DisplayColumn><Hea" +
                                                 "dingStyle parent=\"Style2\" me=\"Style30\" /><Style parent=\"Style1\" me=\"Style31\" /><" +
                                                 "FooterStyle parent=\"Style3\" me=\"Style32\" /><EditorStyle parent=\"Style5\" me=\"Styl" +
                                                 "e33\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style63\" /><GroupFooterStyle parent" +
                                                 "=\"Style1\" me=\"Style62\" /><Visible>True</Visible><ColumnDivider>DarkGray,Single</" +
                                                 "ColumnDivider><Height>15</Height><DCIdx>5</DCIdx></C1DisplayColumn><C1DisplayCol" +
                                                 "umn><HeadingStyle parent=\"Style2\" me=\"Style34\" /><Style parent=\"Style1\" me=\"Styl" +
                                                 "e35\" /><FooterStyle parent=\"Style3\" me=\"Style36\" /><EditorStyle parent=\"Style5\" " +
                                                 "me=\"Style37\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style65\" /><GroupFooterStyl" +
                                                 "e parent=\"Style1\" me=\"Style64\" /><Visible>True</Visible><ColumnDivider>DarkGray," +
                                                 "Single</ColumnDivider><Height>15</Height><DCIdx>6</DCIdx></C1DisplayColumn><C1Di" +
                                                 "splayColumn><HeadingStyle parent=\"Style2\" me=\"Style42\" /><Style parent=\"Style1\" " +
                                                 "me=\"Style43\" /><FooterStyle parent=\"Style3\" me=\"Style44\" /><EditorStyle parent=\"" +
                                                 "Style5\" me=\"Style45\" /><GroupHeaderStyle parent=\"Style1\" me=\"Style69\" /><GroupFo" +
                                                 "oterStyle parent=\"Style1\" me=\"Style68\" /><Visible>True</Visible><ColumnDivider>D" +
                                                 "arkGray,Single</ColumnDivider><Height>15</Height><Button>True</Button><DCIdx>8</" +
                                                 "DCIdx></C1DisplayColumn><C1DisplayColumn><HeadingStyle parent=\"Style2\" me=\"Style" +
                                                 "38\" /><Style parent=\"Style1\" me=\"Style39\" /><FooterStyle parent=\"Style3\" me=\"Sty" +
                                                 "le40\" /><EditorStyle parent=\"Style5\" me=\"Style41\" /><GroupHeaderStyle parent=\"St" +
                                                 "yle1\" me=\"Style67\" /><GroupFooterStyle parent=\"Style1\" me=\"Style66\" /><Visible>T" +
                                                 "rue</Visible><ColumnDivider>DarkGray,Single</ColumnDivider><Height>15</Height><D" +
                                                 "CIdx>7</DCIdx></C1DisplayColumn></internalCols></C1.Win.C1TrueDBGrid.MergeView><" +
                                                 "/Splits><NamedStyles><Style parent=\"\" me=\"Normal\" /><Style parent=\"Normal\" me=\"H" +
                                                 "eading\" /><Style parent=\"Heading\" me=\"Footer\" /><Style parent=\"Heading\" me=\"Capt" +
                                                 "ion\" /><Style parent=\"Heading\" me=\"Inactive\" /><Style parent=\"Normal\" me=\"Select" +
                                                 "ed\" /><Style parent=\"Normal\" me=\"Editor\" /><Style parent=\"Normal\" me=\"HighlightR" +
                                                 "ow\" /><Style parent=\"Normal\" me=\"EvenRow\" /><Style parent=\"Normal\" me=\"OddRow\" /" +
                                                 "><Style parent=\"Heading\" me=\"RecordSelector\" /><Style parent=\"Normal\" me=\"Filter" +
                                                 "Bar\" /><Style parent=\"Caption\" me=\"Group\" /></NamedStyles><vertSplits>1</vertSpl" +
                                                 "its><horzSplits>1</horzSplits><Layout>Modified</Layout><DefaultRecSelWidth>17</D" +
                                                 "efaultRecSelWidth><ClientArea>0, 0, 612, 164</ClientArea><PrintPageHeaderStyle p" +
                                                 "arent=\"\" me=\"Style50\" /><PrintPageFooterStyle parent=\"\" me=\"Style51\" /></Blob>";
     //
     // dsContacts1
     //
     this.dsContacts1.DataSetName = "DsContacts";
     this.dsContacts1.Locale      = new System.Globalization.CultureInfo("en-US");
     this.dsContacts1.Namespace   = "http://www.tempuri.org/DsContacts.xsd";
     //
     // oleDbDataAdapter1
     //
     this.oleDbDataAdapter1.SelectCommand = this.oleDbSelectCommand1;
     this.oleDbDataAdapter1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "Contacts", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("FirstName", "FirstName"),
             new System.Data.Common.DataColumnMapping("LastName", "LastName"),
             new System.Data.Common.DataColumnMapping("CustType", "CustType"),
             new System.Data.Common.DataColumnMapping("ContactType", "ContactType"),
             new System.Data.Common.DataColumnMapping("Callback", "Callback"),
             new System.Data.Common.DataColumnMapping("ContactDate", "ContactDate"),
             new System.Data.Common.DataColumnMapping("UserCode", "UserCode"),
             new System.Data.Common.DataColumnMapping("Expr1", "Expr1")
         })
     });
     //
     // oleDbSelectCommand1
     //
     this.oleDbSelectCommand1.CommandText = "SELECT Customer.FirstName, Customer.LastName, Customer.CustType, Contacts.Cont" +
                                            "actType, Contacts.Callback, Contacts.ContactDate, Contacts.UserCode, Customer.U" +
                                            "serCode AS Expr1 FROM Contacts INNER JOIN Customer ON Contacts.UserCode = Custo" +
                                            "mer.UserCode";
     this.oleDbSelectCommand1.Connection = this.oleDbConnection1;
     //
     // oleDbConnection1
     //
     this.oleDbConnection1.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Program Files\ComponentOne Studio.NET 2.0\Common\TDBGDemo.mdb;Mode=Share Deny None;Extended Properties="""";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB:Database Password="""";Jet OLEDB:Engine Type=4;Jet OLEDB:Database Locking Mode=0;Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="""";Jet OLEDB:Create System Database=False;Jet OLEDB:Encrypt Database=False;Jet OLEDB:Don't Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(632, 182);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.c1TrueDBGrid1
     });
     this.Name  = "Form1";
     this.Text  = "Tutorial 10";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.c1TrueDBGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsContacts1)).EndInit();
     this.ResumeLayout(false);
 }
示例#44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOpenDSS));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.grdOrderDetails = new C1.Win.C1TrueDBGrid.C1TrueDBGrid();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.lblTotalDSS = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrderDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupControl3
     //
     this.groupControl3.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.groupControl3.Controls.Add(this.grdOrderDetails);
     this.groupControl3.Controls.Add(this.lblTotalDSS);
     this.groupControl3.Location = new System.Drawing.Point(2, 1);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(701, 368);
     this.groupControl3.TabIndex = 27;
     this.groupControl3.Text = "Details";
     //
     // grdOrderDetails
     //
     this.grdOrderDetails.AllowAddNew = true;
     this.grdOrderDetails.CaptionHeight = 17;
     this.grdOrderDetails.DirectionAfterEnter = C1.Win.C1TrueDBGrid.DirectionAfterEnterEnum.MoveNone;
     this.grdOrderDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdOrderDetails.Images.Add(((System.Drawing.Image)(resources.GetObject("grdOrderDetails.Images"))));
     this.grdOrderDetails.LinesPerRow = 1;
     this.grdOrderDetails.Location = new System.Drawing.Point(2, 21);
     this.grdOrderDetails.Name = "grdOrderDetails";
     this.grdOrderDetails.PreviewInfo.Location = new System.Drawing.Point(0, 0);
     this.grdOrderDetails.PreviewInfo.Size = new System.Drawing.Size(0, 0);
     this.grdOrderDetails.PreviewInfo.ZoomFactor = 75D;
     this.grdOrderDetails.PrintInfo.PageSettings = ((System.Drawing.Printing.PageSettings)(resources.GetObject("grdOrderDetails.PrintInfo.PageSettings")));
     this.grdOrderDetails.RowDivider.Color = System.Drawing.SystemColors.ActiveCaption;
     this.grdOrderDetails.RowDivider.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single;
     this.grdOrderDetails.RowHeight = 23;
     this.grdOrderDetails.RowSubDividerColor = System.Drawing.SystemColors.ActiveCaption;
     this.grdOrderDetails.Size = new System.Drawing.Size(697, 345);
     this.grdOrderDetails.TabIndex = 13;
     this.grdOrderDetails.Text = "c1TrueDBGrid1";
     this.grdOrderDetails.VisualStyle = C1.Win.C1TrueDBGrid.VisualStyle.Office2010Blue;
     this.grdOrderDetails.PropBag = resources.GetString("grdOrderDetails.PropBag");
     //
     // groupControl2
     //
     this.groupControl2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.groupControl2.Controls.Add(this.btnExit);
     this.groupControl2.Controls.Add(this.btnClose);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl2.Location = new System.Drawing.Point(0, 368);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.ShowCaption = false;
     this.groupControl2.Size = new System.Drawing.Size(704, 49);
     this.groupControl2.TabIndex = 30;
     //
     // btnExit
     //
     this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnExit.Image = global::ERPGUI.Properties.Resources.close_16x16;
     this.btnExit.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnExit.Location = new System.Drawing.Point(640, 8);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(58, 32);
     toolTipItem1.Text = "Close Modules List";
     superToolTip1.Items.Add(toolTipItem1);
     this.btnExit.SuperTip = superToolTip1;
     this.btnExit.TabIndex = 19;
     this.btnExit.Text = "E&xit  ";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnClose
     //
     this.btnClose.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btnClose.Location = new System.Drawing.Point(576, 8);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(58, 32);
     toolTipItem2.Text = "Cancel Current Operation";
     superToolTip2.Items.Add(toolTipItem2);
     this.btnClose.SuperTip = superToolTip2;
     this.btnClose.TabIndex = 18;
     this.btnClose.Text = "&Close";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // lblTotalDSS
     //
     this.lblTotalDSS.Location = new System.Drawing.Point(589, 3);
     this.lblTotalDSS.Name = "lblTotalDSS";
     this.lblTotalDSS.Size = new System.Drawing.Size(60, 13);
     this.lblTotalDSS.TabIndex = 14;
     this.lblTotalDSS.Text = "Total DSS = ";
     //
     // frmOpenDSS
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(704, 417);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "frmOpenDSS";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Open DSS";
     this.Load += new System.EventHandler(this.frmOpenDSS_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOrderDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }