Esempio n. 1
0
        /// <summary>
        /// Create Account binding s ource data
        /// </summary>
        /// <param name="accountID">The accountID value</param>
        /// <returns>The report binding source collection.</returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] Account(int accountID = 0)
        {
            // Assign the binding sources
            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "Accounts";

            if (accountID == 0)
                bindingSource.DataSource = new Nequeo.DataAccess.NequeoCompany.Data.Extension.Accounts().Select.SelectDataEntities();
            else
                bindingSource.DataSource = new Nequeo.DataAccess.NequeoCompany.Data.Extension.Accounts().Select.SelectDataEntitiesPredicate(u => u.AccountID == accountID);

            // Return the data within the binding source.
            return new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData() { DataSource = bindingSource, DataSourceName = "Accounts", 
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[] 
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter() 
                        { 
                            Name = "ReportTitle", 
                            Value = "Account Details", 
                            ValueType = typeof(String) 
                        },
                    }},
            };
        }
Esempio n. 2
0
        // </Snippet1>

        private void ThisAddIn_Startup(object sender, System.EventArgs e)
        {
            // <Snippet2>
            this.addressTableAdapter   = new AdventureWorksLTDataSetTableAdapters.AddressTableAdapter();
            this.adventureWorksDataSet = new AdventureWorksLTDataSet();
            this.addressTableAdapter.Fill(this.adventureWorksDataSet.Address);
            this.addressBindingSource = new System.Windows.Forms.BindingSource();
            // </Snippet2>

            // <Snippet3>
            Excel.Worksheet worksheet = (Excel.Worksheet) this.Application.ActiveWorkbook.Worksheets[1];
            // Create a workhseet host item.
            Worksheet extendedWorksheet = Globals.Factory.GetVstoObject(worksheet);


            // </Snippet3>

            // <Snippet4>
            Excel.Range cell = extendedWorksheet.Range["$A$1:$G$5"];
            this.addressListObject = extendedWorksheet.Controls.AddListObject(cell, "list1");
            // </Snippet4>

            // <Snippet5>
            this.addressBindingSource.DataSource = this.adventureWorksDataSet.Address;
            this.addressListObject.AutoSetDataBoundColumnHeaders = true;
            this.addressListObject.SetDataBinding(
                this.addressBindingSource, "", "AddressID", "AddressLine1",
                "AddressLine2", "City", "StateProvince", "CountryRegion", "PostalCode");
            // </Snippet5>
        }
        public ReportViewProvider(
            String DataSource,
            String InitialCatalog,
            String UserID,
            String Password)
        {
            builder                = new SqlConnectionStringBuilder();
            builder.DataSource     = DataSource;
            builder.InitialCatalog = InitialCatalog;
            builder.UserID         = UserID;
            builder.Password       = Password;

            this.TransactionBindingSource         = new System.Windows.Forms.BindingSource();
            this.TransactionCustomerBindingSource = new System.Windows.Forms.BindingSource();
            this.TransactionLinesBindingSource    = new System.Windows.Forms.BindingSource();

            Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new Microsoft.Reporting.WinForms.ReportDataSource();
            Microsoft.Reporting.WinForms.ReportDataSource reportDataSource2 = new Microsoft.Reporting.WinForms.ReportDataSource();
            Microsoft.Reporting.WinForms.ReportDataSource reportDataSource3 = new Microsoft.Reporting.WinForms.ReportDataSource();
            reportDataSource1.Name  = "Transaction";
            reportDataSource1.Value = this.TransactionBindingSource;
            reportDataSource2.Name  = "TransactionCustomer";
            reportDataSource2.Value = this.TransactionCustomerBindingSource;
            reportDataSource3.Name  = "TransactionLines";
            reportDataSource3.Value = this.TransactionLinesBindingSource;
            this.LocalReport        = new LocalReport();
            LocalReport.DataSources.Add(reportDataSource1);
            LocalReport.DataSources.Add(reportDataSource2);
            LocalReport.DataSources.Add(reportDataSource3);
            LocalReport.ReportEmbeddedResource = "LSDelevaryNote.DelivaryReport.rdlc";
        }
Esempio n. 4
0
        public System.Windows.Forms.BindingSource getDataset()
        {
            OnStateChanged(new StatusEventArgs(StatusType.none, "reading dataset"));

            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();

            using (SQLiteConnection connection = new SQLiteConnection(connectionString))
            {
                connection.Open();
                DataSet data_set = new DataSet();

                //SQLiteCommand sql_command = connection.CreateCommand();
                string command_string = "select * from licensedata";

                SQLiteDataAdapter    sql_data_adapter = new SQLiteDataAdapter(command_string, connection);
                SQLiteCommandBuilder commandBuilder   = new SQLiteCommandBuilder(sql_data_adapter);

                sql_data_adapter.Fill(data_set);
                DataTable data_table = data_set.Tables[0];

                bs.DataSource = data_table;
                OnStateChanged(new StatusEventArgs(StatusType.none, "dataset has " + data_table.Rows.Count.ToString() + " data rows"));
            }

            return(bs);
        }
Esempio n. 5
0
        public DataTable GridControlToDataTable(GridControl dgrid)
        {
            System.Windows.Forms.BindingSource bs = (System.Windows.Forms.BindingSource)dgrid.DataSource; // Se convierte el DataSource
            DataTable tbl = (DataTable)bs.DataSource;

            return(tbl);
        }
Esempio n. 6
0
        private void NewModel(type_of_date date)
        {
            if (date == type_of_date.day)
            {
                var obr = new ObservableCollectionCore <Models.RepairView>();

                System.Windows.Forms.BindingSource BB = new System.Windows.Forms.BindingSource();
                DataTable HGF  = new DataTable();
                var       Repa = new RepairVIEW();
                Repa.Create(TypeSearch.Day, obr);
            }
            else if (date == type_of_date.month)
            {
                var obr = new ObservableCollectionCore <Models.RepairView>();

                System.Windows.Forms.BindingSource BB = new System.Windows.Forms.BindingSource();
                DataTable HGF  = new DataTable();
                var       Repa = new RepairVIEW();
                Repa.Create(TypeSearch.Month, obr);
            }
            else if (date == type_of_date.year)
            {
                var obr = new ObservableCollectionCore <Models.RepairView>();

                System.Windows.Forms.BindingSource BB = new System.Windows.Forms.BindingSource();
                DataTable HGF  = new DataTable();
                var       Repa = new RepairVIEW();
                Repa.Create(TypeSearch.Year, obr);
            }
        }
 private void WireUpBindingSource(ref System.Windows.Forms.BindingSource oldBindingSource, System.Windows.Forms.BindingSource newBindingSource)
 {
     if (oldBindingSource != newBindingSource)
     {
         if (oldBindingSource != null)
         {
             oldBindingSource.PositionChanged    -= new EventHandler(this.OnBindingSourceStateChanged);
             oldBindingSource.CurrentChanged     -= new EventHandler(this.OnBindingSourceStateChanged);
             oldBindingSource.CurrentItemChanged -= new EventHandler(this.OnBindingSourceStateChanged);
             oldBindingSource.DataSourceChanged  -= new EventHandler(this.OnBindingSourceStateChanged);
             oldBindingSource.DataMemberChanged  -= new EventHandler(this.OnBindingSourceStateChanged);
             oldBindingSource.ListChanged        -= new ListChangedEventHandler(this.OnBindingSourceListChanged);
         }
         if (newBindingSource != null)
         {
             newBindingSource.PositionChanged    += new EventHandler(this.OnBindingSourceStateChanged);
             newBindingSource.CurrentChanged     += new EventHandler(this.OnBindingSourceStateChanged);
             newBindingSource.CurrentItemChanged += new EventHandler(this.OnBindingSourceStateChanged);
             newBindingSource.DataSourceChanged  += new EventHandler(this.OnBindingSourceStateChanged);
             newBindingSource.DataMemberChanged  += new EventHandler(this.OnBindingSourceStateChanged);
             newBindingSource.ListChanged        += new ListChangedEventHandler(this.OnBindingSourceListChanged);
         }
         oldBindingSource = newBindingSource;
         this.RefreshItemsInternal();
     }
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label label1;
     this.newTekConsumerBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.comboBox5 = new System.Windows.Forms.ComboBox();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.newTekConsumerBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     label1.AutoSize = true;
     label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(190)))), ((int)(((byte)(190)))), ((int)(((byte)(190)))));
     label1.Location = new System.Drawing.Point(12, 10);
     label1.Name = "label1";
     label1.Size = new System.Drawing.Size(87, 13);
     label1.TabIndex = 17;
     label1.Text = "Channel Layout";
     //
     // newTekConsumerBindingSource
     //
     this.newTekConsumerBindingSource.AllowNew = false;
     this.newTekConsumerBindingSource.DataSource = typeof(CasparCGFrontend.DecklinkConsumer);
     //
     // comboBox5
     //
     this.comboBox5.DataBindings.Add(new System.Windows.Forms.Binding("SelectedItem", this.newTekConsumerBindingSource, "ChannelLayout", true));
     this.comboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox5.FormattingEnabled = true;
     this.comboBox5.Items.AddRange(new object[] {
     "mono",
     "stereo",
     "dts",
     "dolbye",
     "dolbydigital",
     "smpte",
     "passthru"});
     this.comboBox5.Location = new System.Drawing.Point(105, 7);
     this.comboBox5.Name = "comboBox5";
     this.comboBox5.Size = new System.Drawing.Size(121, 21);
     this.comboBox5.TabIndex = 18;
     this.toolTip.SetToolTip(this.comboBox5, "This is the audio channels configuration. Passthru will pass 16 channels of audio" +
     " withour modifying it. More information: http://casparcg.com/wiki/Content_/_Medi" +
     "a#Audio Default is Stereo.");
     //
     // NewTekIVGAConsumerControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.Controls.Add(this.comboBox5);
     this.Controls.Add(label1);
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "NewTekIVGAConsumerControl";
     ((System.ComponentModel.ISupportInitialize)(this.newTekConsumerBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 public void HienthiDataGridview(System.Windows.Forms.DataGridView dg, System.Windows.Forms.BindingNavigator bn)
 {
     System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
     bs.DataSource    = factory.DanhsachDVT();
     bn.BindingSource = bs;
     dg.DataSource    = bs;
 }
Esempio n. 10
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();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.textBox1       = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Location    = new System.Drawing.Point(-1, -2);
     this.textBox1.Multiline   = true;
     this.textBox1.Name        = "textBox1";
     this.textBox1.ReadOnly    = true;
     this.textBox1.Size        = new System.Drawing.Size(540, 342);
     this.textBox1.TabIndex    = 100;
     this.textBox1.TabStop     = false;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(539, 340);
     this.Controls.Add(this.textBox1);
     this.Name  = "Form1";
     this.Text  = "ge";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 public Form3()
 {
     InitializeComponent();
     this.dataGridView1  = new DataGridView();
     this.VM             = new ListAddressViewModel();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     //this.bindingSource1.DataSource = typeof(ListAddressViewModel);
     this.bindingSource1.DataSource                 = this.VM;
     this.dataGridView1.AllowUserToAddRows          = false;
     this.dataGridView1.AllowUserToDeleteRows       = false;
     this.dataGridView1.AllowUserToOrderColumns     = true;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     //this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     //    this.AddressLine1,
     //    this.City,
     //    this.PostCode});
     this.dataGridView1.DataBindings.Add(new System.Windows.Forms.Binding("DataSource", this.bindingSource1, "AddressList", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     //this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     //this.dataGridView1.Location = new System.Drawing.Point(0, 50);
     this.dataGridView1.Location          = new System.Drawing.Point(33, 27);
     this.dataGridView1.MultiSelect       = false;
     this.dataGridView1.Name              = "dataGridView1";
     this.dataGridView1.ReadOnly          = true;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.ShowCellErrors    = false;
     this.dataGridView1.ShowCellToolTips  = false;
     this.dataGridView1.ShowEditingIcon   = false;
     this.dataGridView1.ShowRowErrors     = false;
     //this.dataGridView1.Size = new System.Drawing.Size(1014, 421);
     this.dataGridView1.Size              = new System.Drawing.Size(345, 150);
     this.dataGridView1.TabIndex          = 2;
     this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
     this.Controls.Add(this.dataGridView1);
 }
Esempio n. 12
0
        /// <summary>
        /// Create DetailFromToDate binding source data
        /// </summary>
        /// <param name="fromDate">The fromDate value</param>
        /// <param name="toDate">The toDate value</param>
        /// <returns>The report binding source collection.</returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] DetailFromToDate(DateTime?fromDate, DateTime?toDate)
        {
            // Assign the binding sources
            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "GetVendorDetailsBetweenDate";
            bindingSource.DataSource = new Nequeo.DataAccess.NequeoCompany.Data.Extension.VendorDetails().GetVendorDetailsBetweenDate(fromDate, toDate);

            // Return the data within the binding source.
            return(new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData()
                {
                    DataSource = bindingSource, DataSourceName = "GetVendorDetailsBetweenDate",
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[]
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTitle",
                            Value = "Vendor Details From: " + fromDate.Value.ToShortDateString() + " To: " + toDate.Value.ToShortDateString(),
                            ValueType = typeof(String)
                        },
                    }
                },
            });
        }
Esempio n. 13
0
        private void LoadDataReport()
        {
            //Create the local report
            LocalReport report = new LocalReport();
            report.ReportEmbeddedResource = "RDLCDemo.ReportTest.rdlc";

            //Create the dataset
            _northWindDataSet = new NorthwindDataSet();
            _dataAdapter = new NorthwindDataSetTableAdapters.ProductsByCategoriesTableAdapter();

            _northWindDataSet.DataSetName = "NorthwindDataSet";
            _northWindDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            _dataAdapter.ClearBeforeFill = true;

            //Created datasource and binding source
            ReportDataSource dataSource = new ReportDataSource();
            System.Windows.Forms.BindingSource source = new System.Windows.Forms.BindingSource();

            dataSource.Name = "ProductsDataSources";  //the datasource name in the RDLC report
            dataSource.Value = source;
            source.DataMember = "ProductsByCategories";
            source.DataSource = _northWindDataSet;
            report.DataSources.Add(dataSource);

            //Fill Data in the dataset
            _dataAdapter.Fill(_northWindDataSet.ProductsByCategories);

            //Create the printer/export rdlc printer
            RDLCPrinter rdlcPrinter = new RDLCPrinter(report);

            rdlcPrinter.BeforeRefresh += rdlcPrinter_BeforeRefresh;

            //Load in report viewer
            ReportViewer.Report = rdlcPrinter;
        }
Esempio n. 14
0
        private void button2_Click(object sender, RoutedEventArgs e)
        {
            var ListTest2 = listboxedit2.EditValue;
            var ListTest  = listboxedit.EditValue;

            //    var listcasting = (List<object>)ListTest; // list로 형변환 ㅡㅡ;
            var list2casting = (List <object>)ListTest2;


            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();

            for (int j = 0; j < list2casting.Count; j++)
            {
                string[] split = list2casting[j].ToString().Split('/');

                string alldata     = list2casting[j].ToString();
                string SelectType  = "비밀참조"; // radio box로 선택했다 치고
                string replacelist = SelectType + "/" + split[1] + "/" + split[2];

                list2casting[j] = list2casting[j].ToString().Replace(alldata, replacelist);
                listboxedit2.Items.BeginUpdate();


                listboxedit2.ItemsSource = null;
                listboxedit2.ItemsSource = list2casting;
            }
        }
Esempio n. 15
0
        /// <summary>
        /// Create Employee binding s ource data
        /// </summary>
        /// <param name="employeeID">The employeeID value</param>
        /// <returns>The report binding source collection.</returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] Employee(int employeeID = 0)
        {
            // Assign the binding sources
            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "Employees";

            if (employeeID == 0)
            {
                bindingSource.DataSource = new Nequeo.DataAccess.NequeoCompany.Data.Extension.Employees().Select.SelectDataEntities();
            }
            else
            {
                bindingSource.DataSource = new Nequeo.DataAccess.NequeoCompany.Data.Extension.Employees().Select.SelectDataEntitiesPredicate(u => u.EmployeeID == employeeID);
            }

            // Return the data within the binding source.
            return(new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData()
                {
                    DataSource = bindingSource, DataSourceName = "Employees",
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[]
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTitle",
                            Value = "Employee Details",
                            ValueType = typeof(String)
                        },
                    }
                },
            });
        }
 /// <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();
     this.labratoryBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.labratoryBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // FormDefineLabratory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(802, 431);
     this.Font = new System.Drawing.Font("B Nazanin", 9.3F, System.Drawing.FontStyle.Bold);
     this.MinimumSize = new System.Drawing.Size(810, 465);
     this.Name = "FormDefineLabratory";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "لابراتوار";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.FormDefineLabratory_Load);
     ((System.ComponentModel.ISupportInitialize)(this.labratoryBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 17
0
 private void SearchingBox_EditValueChanged(object sender, DevExpress.Xpf.Editors.EditValueChangedEventArgs e)
 {
     if (string.IsNullOrEmpty(SearchingBox.Text))
     {
         show.show3(Datatable);
         System.Windows.Forms.BindingSource BindS = new System.Windows.Forms.BindingSource();
         BindS.DataSource = Datatable;
         DD.ItemsSource   = BindS;
         Resultpri.Text   = Fos.sumPrice();
         Resultpri_a.Text = Fos.sumPrice_a();
     }
     else
     {
         if (int.Parse(SearchingBox.Text) >= 10)
         {
             int a = int.Parse(SearchingBox.Text);
             SearchingBox.Text = "";
             SearchingBox.Text = a.ToString();
         }
         searching(SearchingBox.Text);
         Resultpri.Text   = Fos.sumPrice(SearchingBox.Text);
         Resultpri_a.Text = Fos.sumPrice_a(SearchingBox.Text);
         Datatable.Clear();
     }
 }
 private void InitializeComponents()
 {
     this.components = new System.ComponentModel.Container();
     if ((this.adventureWorksLTDataSet == null))
     {
         // Instantiate the object if not yet loaded from the data cache.
         this.adventureWorksLTDataSet = new AdventureWorksDataSet.AdventureWorksLTDataSet();
     }
     this.productBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.adventureWorksLTDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.productListObject)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.productBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // adventureWorksLTDataSet
     //
     this.adventureWorksLTDataSet.DataSetName             = "AdventureWorksLTDataSet";
     this.adventureWorksLTDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // productBindingSource
     //
     this.productBindingSource.DataMember = "Product";
     this.productBindingSource.DataSource = this.adventureWorksLTDataSet;
     //
     // Sheet1
     //
     ((System.ComponentModel.ISupportInitialize)(this.adventureWorksLTDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.productListObject)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.productBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio n. 19
0
        /// <summary>
        /// Create InvoiceDetailFromToInvoicesDateNotPaid binding s ource data
        /// </summary>
        /// <param name="fromDate">The fromDate value</param>
        /// <param name="toDate">The toDate value</param>
        /// <returns>The report binding source collection.</returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] InvoiceDetailFromToInvoicesDateNotPaid(DateTime?fromDate, DateTime?toDate)
        {
            // Assign the binding sources
            Nequeo.DataAccess.NequeoCompany.DataSet.StoredProcedures dataSet = new Nequeo.DataAccess.NequeoCompany.DataSet.StoredProcedures();
            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "GetInvoiceDetailsBetweenDateNotPaid";
            bindingSource.DataSource = dataSet;

            // Get the data
            Nequeo.DataAccess.NequeoCompany.DataSet.StoredProceduresTableAdapters.GetInvoiceDetailsBetweenDateNotPaidTableAdapter tableAdapter =
                new Nequeo.DataAccess.NequeoCompany.DataSet.StoredProceduresTableAdapters.GetInvoiceDetailsBetweenDateNotPaidTableAdapter();
            tableAdapter.ClearBeforeFill = true;
            tableAdapter.Fill(dataSet.GetInvoiceDetailsBetweenDateNotPaid, fromDate, toDate);

            // Return the data within the binding source.
            return(new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData()
                {
                    DataSource = bindingSource, DataSourceName = "GetInvoiceDetailsBetweenDateNotPaid",
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[]
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTitle",
                            Value = Convert.ToString("Invoice Not Paid Details From: " + fromDate.Value.ToShortDateString() + " To: " + toDate.Value.ToShortDateString()),
                            ValueType = typeof(String)
                        },
                    }
                },
            });
        }
Esempio n. 20
0
        /// <summary>
        /// Create SuperAccount binding s ource data
        /// </summary>
        /// <param name="employeeID">The employeeID value</param>
        /// <returns><returns>The report binding source collection.</returns></returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] SuperAccount(int?employeeID)
        {
            // Assign the binding sources
            Nequeo.DataAccess.NequeoCompany.DataSet.StoredProcedures dataSet = new Nequeo.DataAccess.NequeoCompany.DataSet.StoredProcedures();

            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "GetSelectedEmployeeSuperAccount";
            bindingSource.DataSource = dataSet;

            // Get the data
            Nequeo.DataAccess.NequeoCompany.DataSet.StoredProceduresTableAdapters.GetSelectedEmployeeSuperAccountTableAdapter tableAdapter =
                new Nequeo.DataAccess.NequeoCompany.DataSet.StoredProceduresTableAdapters.GetSelectedEmployeeSuperAccountTableAdapter();
            tableAdapter.ClearBeforeFill = true;
            tableAdapter.Fill(dataSet.GetSelectedEmployeeSuperAccount, employeeID);

            // Return the data within the binding source.
            return(new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData()
                {
                    DataSource = bindingSource, DataSourceName = "GetSelectedEmployeeSuperAccount",
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[]
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTitle",
                            Value = "Employee Super Account",
                            ValueType = typeof(String)
                        },
                    }
                },
            });
        }
Esempio n. 21
0
        /// <summary>
        /// Create SuperFromToDateSummary binding s ource data
        /// </summary>
        /// <param name="fromDate">The fromDate value</param>
        /// <param name="toDate">The toDate value</param>
        /// <returns><returns>The report binding source collection.</returns></returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] SuperFromToDateSummary(DateTime?fromDate, DateTime?toDate)
        {
            // Assign the binding sources
            Nequeo.DataAccess.NequeoCompany.DataSet.StoredProcedures dataSet = new Nequeo.DataAccess.NequeoCompany.DataSet.StoredProcedures();

            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "GetEmployeeSuperBetweenDate";
            bindingSource.DataSource = dataSet;

            // Get the data
            Nequeo.DataAccess.NequeoCompany.DataSet.StoredProceduresTableAdapters.GetEmployeeSuperBetweenDateTableAdapter tableAdapter =
                new Nequeo.DataAccess.NequeoCompany.DataSet.StoredProceduresTableAdapters.GetEmployeeSuperBetweenDateTableAdapter();
            tableAdapter.ClearBeforeFill = true;
            tableAdapter.Fill(dataSet.GetEmployeeSuperBetweenDate, fromDate, toDate);

            // Return the data within the binding source.
            return(new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData()
                {
                    DataSource = bindingSource, DataSourceName = "GetEmployeeSuperBetweenDate",
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[]
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTitle",
                            Value = "Employee Superannuation From :" + fromDate.Value.ToShortDateString() + " To : " + toDate.Value.ToShortDateString(),
                            ValueType = typeof(String)
                        },
                    }
                },
            });
        }
Esempio n. 22
0
        /// <summary>
        /// Create TaxReturn binding s ource data
        /// </summary>
        /// <param name="fromDate">The fromDate value</param>
        /// <param name="toDate">The toDate value</param>
        /// <param name="companyID">The companyID value</param>
        /// <returns>The report binding source collection.</returns>
        public virtual Nequeo.Model.DataSource.BindingSourceData[] TaxReturn(DateTime?fromDate, DateTime?toDate, int?companyID)
        {
            // Assign the binding sources
            System.Windows.Forms.BindingSource bindingSource = new System.Windows.Forms.BindingSource();
            bindingSource.DataMember = "GetTaxReturnSelectedCompany";
            bindingSource.DataSource = new Nequeo.DataAccess.NequeoCompany.Data.Extension.TaxReturn().GetTaxReturnSelectedCompany(companyID);

            // Return the data within the binding source.
            return(new Model.DataSource.BindingSourceData[]
            {
                new Model.DataSource.BindingSourceData()
                {
                    DataSource = bindingSource, DataSourceName = "GetTaxReturnSelectedCompany",
                    BindingSourceParameters = new Nequeo.Model.DataSource.BindingSourceParameter[]
                    {
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTaxReturnYear",
                            Value = fromDate.Value.Year.ToString(),
                            ValueType = typeof(String)
                        },
                        new Nequeo.Model.DataSource.BindingSourceParameter()
                        {
                            Name = "ReportTaxReturnInterval",
                            Value = fromDate.Value.ToShortDateString() + " to " + toDate.Value.ToShortDateString(),
                            ValueType = typeof(String)
                        },
                    }
                },
            });
        }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.dataSet1       = new System.Data.DataSet();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.dataGridView1  = new System.Windows.Forms.DataGridView();
     this.button1        = new System.Windows.Forms.Button();
     this.comboBox1      = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.SuspendLayout();
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows          = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location = new System.Drawing.Point(12, 12);
     this.dataGridView1.Name     = "dataGridView1";
     this.dataGridView1.Size     = new System.Drawing.Size(302, 150);
     this.dataGridView1.TabIndex = 0;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(12, 230);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 1;
     this.button1.Text     = "button1";
     this.button1.UseVisualStyleBackColor = true;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location          = new System.Drawing.Point(128, 230);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(121, 21);
     this.comboBox1.TabIndex = 2;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(326, 343);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dataGridView1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 24
0
        public void HienthiGhiChuDataGridview(System.Windows.Forms.DataGridView dg, string manv)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachGhiChuTheoMANV(manv);

            bs.DataSource = tbl;
            dg.DataSource = bs;
        }
        public void HienthiTHANNHANNUOCNGOAIDataGridview(System.Windows.Forms.DataGridView dg, string manv)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachTHANNHANNUOCNGOAI(manv);

            bs.DataSource = tbl;
            dg.DataSource = bs;
        }
Esempio n. 26
0
 public void ToContainer(System.Windows.Forms.BindingSource container)
 {
     container.Clear();
     foreach (var p in Books)
     {
         container.Add(p);
     }
 }
Esempio n. 27
0
 }                                              //Variable or property binded with TextBox
 public Form1()
 {
     InitializeComponent();
     this.form1BindingSource            = new System.Windows.Forms.BindingSource(new System.ComponentModel.Container());
     this.form1BindingSource.DataSource = typeof(binding.Form1);
     this.textBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.form1BindingSource, "BindedProp", true));
     this.form1BindingSource.DataSource = this;
 }
Esempio n. 28
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();
     Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new Microsoft.Reporting.WinForms.ReportDataSource();
     this.ShippersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.AFIDBDataSet = new AFIPO.AFIDBDataSet();
     this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
     this.ShippersTableAdapter = new AFIPO.AFIDBDataSetTableAdapters.ShippersTableAdapter();
     this.shippersListBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.ShippersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AFIDBDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.shippersListBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // ShippersBindingSource
     //
     this.ShippersBindingSource.DataMember = "Shippers";
     this.ShippersBindingSource.DataSource = this.AFIDBDataSet;
     //
     // AFIDBDataSet
     //
     this.AFIDBDataSet.DataSetName = "AFIDBDataSet";
     this.AFIDBDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // reportViewer1
     //
     reportDataSource1.Name = "AFIDBDataSet_Shippers";
     reportDataSource1.Value = this.ShippersBindingSource;
     this.reportViewer1.LocalReport.DataSources.Add(reportDataSource1);
     this.reportViewer1.LocalReport.ReportEmbeddedResource = "AFIPO.Shippers.rdlc";
     this.reportViewer1.Location = new System.Drawing.Point(1, -4);
     this.reportViewer1.Name = "reportViewer1";
     this.reportViewer1.Size = new System.Drawing.Size(860, 753);
     this.reportViewer1.TabIndex = 0;
     this.reportViewer1.Load += new System.EventHandler(this.reportViewer1_Load_1);
     //
     // ShippersTableAdapter
     //
     this.ShippersTableAdapter.ClearBeforeFill = true;
     //
     // shippersListBindingSource
     //
     this.shippersListBindingSource.DataSource = typeof(AFIObjects.ShippersList);
     //
     // ShippersReportForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(861, 748);
     this.Controls.Add(this.reportViewer1);
     this.Name = "Form12";
     this.Text = "Shippers Report";
     this.Load += new System.EventHandler(this.Form2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ShippersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AFIDBDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.shippersListBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 29
0
        public void HienthiQuanHeGiaDinhDataGridview(System.Windows.Forms.DataGridView dg, string manv)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachQUANHEGIADINH(manv);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
Esempio n. 30
0
        public void HienthiBnDataGridview(DevComponents.DotNetBar.Controls.DataGridViewX dg, string str)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachNguoiDung(str);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
Esempio n. 31
0
        public void HienthiQuaTrinhBoiDuongGridview(System.Windows.Forms.DataGridView dg, string manv)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachQuaTrinhBoiDuong(manv);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
        public void HienthiDanhSachNgheNghiepDataGridview(System.Windows.Forms.DataGridView dg, string manv)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DANHSACHNGHENGHIEP(manv);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
Esempio n. 33
0
        public void HienthiQuaTrinhCTNNGridview(System.Windows.Forms.DataGridView dg, string manv)
        {
            System.Windows.Forms.BindingSource bs = new System.Windows.Forms.BindingSource();
            DataTable tbl = data.DanhsachQUATRINHCONGTACNUOCNGOAITheoMANV(manv);

            bs.DataSource = tbl;
            //bn.BindingSource = bs;
            dg.DataSource = bs;
        }
Esempio n. 34
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();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.bindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.bindingSource3 = new System.Windows.Forms.BindingSource(this.components);
     this.bindingSource4 = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 50F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 20F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BaseReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin
     });
     this.DataSource = this.bindingSource1;
     this.Font       = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.Margins    = new System.Drawing.Printing.Margins(50, 20, 50, 20);
     this.PageHeight = 1169;
     this.PageWidth  = 827;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "10.2";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Esempio n. 35
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();
     Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new Microsoft.Reporting.WinForms.ReportDataSource();
     this.RelatoriosBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.BD_VIDEO_SYSTEM_ULTIMATEDataSet = new Video_System_Ultimate.BD_VIDEO_SYSTEM_ULTIMATEDataSet();
     this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
     this.RelatoriosTableAdapter = new Video_System_Ultimate.BD_VIDEO_SYSTEM_ULTIMATEDataSetTableAdapters.RelatoriosTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.RelatoriosBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BD_VIDEO_SYSTEM_ULTIMATEDataSet)).BeginInit();
     this.SuspendLayout();
     //
     // RelatoriosBindingSource
     //
     this.RelatoriosBindingSource.DataMember = "Relatorios";
     this.RelatoriosBindingSource.DataSource = this.BD_VIDEO_SYSTEM_ULTIMATEDataSet;
     //
     // BD_VIDEO_SYSTEM_ULTIMATEDataSet
     //
     this.BD_VIDEO_SYSTEM_ULTIMATEDataSet.DataSetName = "BD_VIDEO_SYSTEM_ULTIMATEDataSet";
     this.BD_VIDEO_SYSTEM_ULTIMATEDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // reportViewer1
     //
     this.reportViewer1.AutoValidate = System.Windows.Forms.AutoValidate.EnablePreventFocusChange;
     this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
     reportDataSource1.Name = "RelHistFilme";
     reportDataSource1.Value = this.RelatoriosBindingSource;
     this.reportViewer1.LocalReport.DataSources.Add(reportDataSource1);
     this.reportViewer1.LocalReport.ReportEmbeddedResource = "Video_System_Ultimate.Report2.rdlc";
     this.reportViewer1.Location = new System.Drawing.Point(0, 0);
     this.reportViewer1.Name = "reportViewer1";
     this.reportViewer1.Size = new System.Drawing.Size(402, 325);
     this.reportViewer1.TabIndex = 0;
     //
     // RelatoriosTableAdapter
     //
     this.RelatoriosTableAdapter.ClearBeforeFill = true;
     //
     // RelHistFilme
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(402, 325);
     this.Controls.Add(this.reportViewer1);
     this.Name = "RelHistFilme";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Relatório de Histórico de Filmes";
     this.TopMost = true;
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RelHistFilme_Load);
     ((System.ComponentModel.ISupportInitialize)(this.RelatoriosBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BD_VIDEO_SYSTEM_ULTIMATEDataSet)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 36
0
        public MainWindow()
        {
            InitializeComponent();
            // Create a DataSet for the Customers data.
            this.nwDataSet = new NorthwindDataSet();
            this.nwDataSet.DataSetName = "nwDataSet";

            // Create a BindingSource for the Customers data.
            this.nwBindingSource = new System.Windows.Forms.BindingSource();
            this.nwBindingSource.DataMember = "Customers";
            this.nwBindingSource.DataSource = this.nwDataSet;
        }
Esempio n. 37
0
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            this.msViewer = new Microsoft.Reporting.WinForms.ReportViewer();
            this.MessageRecordBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.ViolationRecordBindingSource = new System.Windows.Forms.BindingSource(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.MessageRecordBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ViolationRecordBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // msViewer
            // 
            this.msViewer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.msViewer.LocalReport.ReportEmbeddedResource = "Workshare.Reports.Viewer.MessageReport.rdlc";
            this.msViewer.Location = new System.Drawing.Point(0, 0);
            this.msViewer.Name = "msViewer";
            this.msViewer.ShowBackButton = false;
            this.msViewer.ShowContextMenu = false;
            this.msViewer.ShowCredentialPrompts = false;
            this.msViewer.ShowDocumentMapButton = false;
            this.msViewer.ShowParameterPrompts = false;
            this.msViewer.ShowPromptAreaButton = false;
            this.msViewer.ShowRefreshButton = false;
            this.msViewer.ShowStopButton = false;
            this.msViewer.Size = new System.Drawing.Size(744, 521);
            this.msViewer.TabIndex = 0;
            // 
            // MessageRecordBindingSource
            // 
            this.MessageRecordBindingSource.DataSource = typeof(Workshare.Reports.Viewer.MessageRecord);
            // 
            // ViolationRecordBindingSource
            // 
            this.ViolationRecordBindingSource.DataSource = typeof(Workshare.Reports.Viewer.ViolationRecord);
            // 
            // ReportViewer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(744, 521);
            this.Controls.Add(this.msViewer);
            this.Name = "ReportViewer";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
            this.Text = "ReportViewer";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnClosing);
            this.Load += new System.EventHandler(this.OnLoad);
            ((System.ComponentModel.ISupportInitialize)(this.MessageRecordBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ViolationRecordBindingSource)).EndInit();
            this.ResumeLayout(false);

		}
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.MyBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.MyBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // MyBindingSource
     //
     this.MyBindingSource.AllowNew = false;
     ((System.ComponentModel.ISupportInitialize)(this.MyBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
        private void PrepareReport()
        {
            this.mform_components = new System.ComponentModel.Container();
            Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new Microsoft.Reporting.WinForms.ReportDataSource();

            this.ProductBindingSource = new System.Windows.Forms.BindingSource(this.mform_components);
            ((System.ComponentModel.ISupportInitialize)(this.ProductBindingSource)).BeginInit();

            reportDataSource1.Name = "DataSet2";
            reportDataSource1.Value = this.ProductBindingSource;

            this.viewerInstance.LocalReport.DataSources.Add(reportDataSource1);
            this.viewerInstance.LocalReport.ReportEmbeddedResource = "MadeInHouse.ReportViewer.Report1.rdlc";
            this.viewerInstance.Location = new System.Drawing.Point(0,0);

            ((System.ComponentModel.ISupportInitialize)(this.ProductBindingSource)).EndInit();
        }
 /// <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(frmTestList));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.sTOCKOUTWARDDETAILBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsTEST = new Do_An_Quan_Ly_Kho.Test.DS.dsTEST();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOutward_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStock_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRefType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProduct_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProductName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCurrentQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQtyConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCharge = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProfit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBatch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSerial = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChassyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIME = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWidth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colHeight = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOrgin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSize = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStoreID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSorted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActive = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.sTOCK_OUTWARD_DETAILTableAdapter = new Do_An_Quan_Ly_Kho.Test.DS.dsTESTTableAdapters.STOCK_OUTWARD_DETAILTableAdapter();
     this.bbiExportExcel = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiExportExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiExportExcel)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 26);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(326, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(122, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(176, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(122, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.DataSource = this.sTOCKOUTWARDDETAILBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.Size = new System.Drawing.Size(1098, 362);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // sTOCKOUTWARDDETAILBindingSource
     //
     this.sTOCKOUTWARDDETAILBindingSource.DataMember = "STOCK_OUTWARD_DETAIL";
     this.sTOCKOUTWARDDETAILBindingSource.DataSource = this.dsTEST;
     //
     // dsTEST
     //
     this.dsTEST.DataSetName = "dsTEST";
     this.dsTEST.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colID,
     this.colOutward_ID,
     this.colStock_ID,
     this.colRefType,
     this.colProduct_ID,
     this.colProductName,
     this.colVat,
     this.colLev1,
     this.colLev2,
     this.colLev3,
     this.colLev4,
     this.colUnit,
     this.colUnitConvert,
     this.colCurrentQty,
     this.colQuantity,
     this.colUnitPrice,
     this.colAmount,
     this.colQtyConvert,
     this.colDiscount,
     this.colCharge,
     this.colCost,
     this.colProfit,
     this.colBatch,
     this.colSerial,
     this.colChassyNo,
     this.colIME,
     this.colWidth,
     this.colHeight,
     this.colOrgin,
     this.colSize,
     this.colStoreID,
     this.colDescription,
     this.colSorted,
     this.colActive});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colID
     //
     this.colID.AppearanceHeader.Options.UseTextOptions = true;
     this.colID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colID.FieldName = "ID";
     this.colID.Name = "colID";
     this.colID.OptionsColumn.ReadOnly = true;
     this.colID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colID.Visible = true;
     this.colID.VisibleIndex = 0;
     this.colID.Width = 33;
     //
     // colOutward_ID
     //
     this.colOutward_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colOutward_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOutward_ID.FieldName = "Outward_ID";
     this.colOutward_ID.Name = "colOutward_ID";
     this.colOutward_ID.OptionsColumn.ReadOnly = true;
     this.colOutward_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOutward_ID.Visible = true;
     this.colOutward_ID.VisibleIndex = 1;
     this.colOutward_ID.Width = 81;
     //
     // colStock_ID
     //
     this.colStock_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStock_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStock_ID.FieldName = "Stock_ID";
     this.colStock_ID.Name = "colStock_ID";
     this.colStock_ID.OptionsColumn.ReadOnly = true;
     this.colStock_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStock_ID.Visible = true;
     this.colStock_ID.VisibleIndex = 2;
     this.colStock_ID.Width = 65;
     //
     // colRefType
     //
     this.colRefType.AppearanceHeader.Options.UseTextOptions = true;
     this.colRefType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRefType.FieldName = "RefType";
     this.colRefType.Name = "colRefType";
     this.colRefType.OptionsColumn.ReadOnly = true;
     this.colRefType.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colRefType.Visible = true;
     this.colRefType.VisibleIndex = 3;
     this.colRefType.Width = 66;
     //
     // colProduct_ID
     //
     this.colProduct_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colProduct_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProduct_ID.FieldName = "Product_ID";
     this.colProduct_ID.Name = "colProduct_ID";
     this.colProduct_ID.OptionsColumn.ReadOnly = true;
     this.colProduct_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProduct_ID.Visible = true;
     this.colProduct_ID.VisibleIndex = 4;
     this.colProduct_ID.Width = 76;
     //
     // colProductName
     //
     this.colProductName.AppearanceHeader.Options.UseTextOptions = true;
     this.colProductName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProductName.FieldName = "ProductName";
     this.colProductName.Name = "colProductName";
     this.colProductName.OptionsColumn.ReadOnly = true;
     this.colProductName.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProductName.Visible = true;
     this.colProductName.VisibleIndex = 5;
     this.colProductName.Width = 89;
     //
     // colVat
     //
     this.colVat.AppearanceHeader.Options.UseTextOptions = true;
     this.colVat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colVat.FieldName = "Vat";
     this.colVat.Name = "colVat";
     this.colVat.OptionsColumn.ReadOnly = true;
     this.colVat.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colVat.Visible = true;
     this.colVat.VisibleIndex = 6;
     this.colVat.Width = 38;
     //
     // colLev1
     //
     this.colLev1.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev1.FieldName = "Lev1";
     this.colLev1.Name = "colLev1";
     this.colLev1.OptionsColumn.ReadOnly = true;
     this.colLev1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev1.Visible = true;
     this.colLev1.VisibleIndex = 7;
     this.colLev1.Width = 45;
     //
     // colLev2
     //
     this.colLev2.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev2.FieldName = "Lev2";
     this.colLev2.Name = "colLev2";
     this.colLev2.OptionsColumn.ReadOnly = true;
     this.colLev2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev2.Visible = true;
     this.colLev2.VisibleIndex = 8;
     this.colLev2.Width = 45;
     //
     // colLev3
     //
     this.colLev3.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev3.FieldName = "Lev3";
     this.colLev3.Name = "colLev3";
     this.colLev3.OptionsColumn.ReadOnly = true;
     this.colLev3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev3.Visible = true;
     this.colLev3.VisibleIndex = 9;
     this.colLev3.Width = 45;
     //
     // colLev4
     //
     this.colLev4.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev4.FieldName = "Lev4";
     this.colLev4.Name = "colLev4";
     this.colLev4.OptionsColumn.ReadOnly = true;
     this.colLev4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev4.Visible = true;
     this.colLev4.VisibleIndex = 10;
     this.colLev4.Width = 45;
     //
     // colUnit
     //
     this.colUnit.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnit.FieldName = "Unit";
     this.colUnit.Name = "colUnit";
     this.colUnit.OptionsColumn.ReadOnly = true;
     this.colUnit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnit.Visible = true;
     this.colUnit.VisibleIndex = 11;
     this.colUnit.Width = 41;
     //
     // colUnitConvert
     //
     this.colUnitConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitConvert.FieldName = "UnitConvert";
     this.colUnitConvert.Name = "colUnitConvert";
     this.colUnitConvert.OptionsColumn.ReadOnly = true;
     this.colUnitConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitConvert.Visible = true;
     this.colUnitConvert.VisibleIndex = 12;
     this.colUnitConvert.Width = 83;
     //
     // colCurrentQty
     //
     this.colCurrentQty.AppearanceHeader.Options.UseTextOptions = true;
     this.colCurrentQty.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrentQty.FieldName = "CurrentQty";
     this.colCurrentQty.Name = "colCurrentQty";
     this.colCurrentQty.OptionsColumn.ReadOnly = true;
     this.colCurrentQty.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCurrentQty.Visible = true;
     this.colCurrentQty.VisibleIndex = 13;
     this.colCurrentQty.Width = 80;
     //
     // colQuantity
     //
     this.colQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.colQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQuantity.FieldName = "Quantity";
     this.colQuantity.Name = "colQuantity";
     this.colQuantity.OptionsColumn.ReadOnly = true;
     this.colQuantity.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQuantity.Visible = true;
     this.colQuantity.VisibleIndex = 14;
     this.colQuantity.Width = 64;
     //
     // colUnitPrice
     //
     this.colUnitPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitPrice.FieldName = "UnitPrice";
     this.colUnitPrice.Name = "colUnitPrice";
     this.colUnitPrice.OptionsColumn.ReadOnly = true;
     this.colUnitPrice.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitPrice.Visible = true;
     this.colUnitPrice.VisibleIndex = 15;
     this.colUnitPrice.Width = 67;
     //
     // colAmount
     //
     this.colAmount.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmount.FieldName = "Amount";
     this.colAmount.Name = "colAmount";
     this.colAmount.OptionsColumn.ReadOnly = true;
     this.colAmount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colAmount.Visible = true;
     this.colAmount.VisibleIndex = 16;
     this.colAmount.Width = 59;
     //
     // colQtyConvert
     //
     this.colQtyConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colQtyConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQtyConvert.FieldName = "QtyConvert";
     this.colQtyConvert.Name = "colQtyConvert";
     this.colQtyConvert.OptionsColumn.ReadOnly = true;
     this.colQtyConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQtyConvert.Visible = true;
     this.colQtyConvert.VisibleIndex = 17;
     this.colQtyConvert.Width = 82;
     //
     // colDiscount
     //
     this.colDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.colDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDiscount.FieldName = "Discount";
     this.colDiscount.Name = "colDiscount";
     this.colDiscount.OptionsColumn.ReadOnly = true;
     this.colDiscount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDiscount.Visible = true;
     this.colDiscount.VisibleIndex = 18;
     this.colDiscount.Width = 63;
     //
     // colCharge
     //
     this.colCharge.AppearanceHeader.Options.UseTextOptions = true;
     this.colCharge.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCharge.FieldName = "Charge";
     this.colCharge.Name = "colCharge";
     this.colCharge.OptionsColumn.ReadOnly = true;
     this.colCharge.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCharge.Visible = true;
     this.colCharge.VisibleIndex = 19;
     this.colCharge.Width = 57;
     //
     // colCost
     //
     this.colCost.AppearanceHeader.Options.UseTextOptions = true;
     this.colCost.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCost.FieldName = "Cost";
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.ReadOnly = true;
     this.colCost.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 20;
     this.colCost.Width = 44;
     //
     // colProfit
     //
     this.colProfit.AppearanceHeader.Options.UseTextOptions = true;
     this.colProfit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProfit.FieldName = "Profit";
     this.colProfit.Name = "colProfit";
     this.colProfit.OptionsColumn.ReadOnly = true;
     this.colProfit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProfit.Visible = true;
     this.colProfit.VisibleIndex = 21;
     this.colProfit.Width = 48;
     //
     // colBatch
     //
     this.colBatch.AppearanceHeader.Options.UseTextOptions = true;
     this.colBatch.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBatch.FieldName = "Batch";
     this.colBatch.Name = "colBatch";
     this.colBatch.OptionsColumn.ReadOnly = true;
     this.colBatch.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colBatch.Visible = true;
     this.colBatch.VisibleIndex = 22;
     this.colBatch.Width = 49;
     //
     // colSerial
     //
     this.colSerial.AppearanceHeader.Options.UseTextOptions = true;
     this.colSerial.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSerial.FieldName = "Serial";
     this.colSerial.Name = "colSerial";
     this.colSerial.OptionsColumn.ReadOnly = true;
     this.colSerial.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSerial.Visible = true;
     this.colSerial.VisibleIndex = 23;
     this.colSerial.Width = 48;
     //
     // colChassyNo
     //
     this.colChassyNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colChassyNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChassyNo.FieldName = "ChassyNo";
     this.colChassyNo.Name = "colChassyNo";
     this.colChassyNo.OptionsColumn.ReadOnly = true;
     this.colChassyNo.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChassyNo.Visible = true;
     this.colChassyNo.VisibleIndex = 24;
     this.colChassyNo.Width = 73;
     //
     // colIME
     //
     this.colIME.AppearanceHeader.Options.UseTextOptions = true;
     this.colIME.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colIME.FieldName = "IME";
     this.colIME.Name = "colIME";
     this.colIME.OptionsColumn.ReadOnly = true;
     this.colIME.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colIME.Visible = true;
     this.colIME.VisibleIndex = 25;
     this.colIME.Width = 40;
     //
     // colWidth
     //
     this.colWidth.AppearanceHeader.Options.UseTextOptions = true;
     this.colWidth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWidth.FieldName = "Width";
     this.colWidth.Name = "colWidth";
     this.colWidth.OptionsColumn.ReadOnly = true;
     this.colWidth.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colWidth.Visible = true;
     this.colWidth.VisibleIndex = 26;
     this.colWidth.Width = 50;
     //
     // colHeight
     //
     this.colHeight.AppearanceHeader.Options.UseTextOptions = true;
     this.colHeight.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colHeight.FieldName = "Height";
     this.colHeight.Name = "colHeight";
     this.colHeight.OptionsColumn.ReadOnly = true;
     this.colHeight.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colHeight.Visible = true;
     this.colHeight.VisibleIndex = 27;
     this.colHeight.Width = 53;
     //
     // colOrgin
     //
     this.colOrgin.AppearanceHeader.Options.UseTextOptions = true;
     this.colOrgin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOrgin.FieldName = "Orgin";
     this.colOrgin.Name = "colOrgin";
     this.colOrgin.OptionsColumn.ReadOnly = true;
     this.colOrgin.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOrgin.Visible = true;
     this.colOrgin.VisibleIndex = 28;
     this.colOrgin.Width = 48;
     //
     // colSize
     //
     this.colSize.AppearanceHeader.Options.UseTextOptions = true;
     this.colSize.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSize.FieldName = "Size";
     this.colSize.Name = "colSize";
     this.colSize.OptionsColumn.ReadOnly = true;
     this.colSize.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSize.Visible = true;
     this.colSize.VisibleIndex = 29;
     this.colSize.Width = 41;
     //
     // colStoreID
     //
     this.colStoreID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStoreID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStoreID.FieldName = "StoreID";
     this.colStoreID.Name = "colStoreID";
     this.colStoreID.OptionsColumn.ReadOnly = true;
     this.colStoreID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStoreID.Visible = true;
     this.colStoreID.VisibleIndex = 30;
     this.colStoreID.Width = 62;
     //
     // colDescription
     //
     this.colDescription.AppearanceHeader.Options.UseTextOptions = true;
     this.colDescription.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.ReadOnly = true;
     this.colDescription.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 31;
     //
     // colSorted
     //
     this.colSorted.AppearanceHeader.Options.UseTextOptions = true;
     this.colSorted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSorted.FieldName = "Sorted";
     this.colSorted.Name = "colSorted";
     this.colSorted.OptionsColumn.ReadOnly = true;
     this.colSorted.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSorted.Visible = true;
     this.colSorted.VisibleIndex = 32;
     this.colSorted.Width = 54;
     //
     // colActive
     //
     this.colActive.AppearanceHeader.Options.UseTextOptions = true;
     this.colActive.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActive.FieldName = "Active";
     this.colActive.Name = "colActive";
     this.colActive.OptionsColumn.ReadOnly = true;
     this.colActive.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colActive.Visible = true;
     this.colActive.VisibleIndex = 33;
     this.colActive.Width = 52;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 366);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // sTOCK_OUTWARD_DETAILTableAdapter
     //
     this.sTOCK_OUTWARD_DETAILTableAdapter.ClearBeforeFill = true;
     //
     // bbiExportExcel
     //
     this.bbiExportExcel.Caption = "Xuất Excel";
     this.bbiExportExcel.Id = 12;
     this.bbiExportExcel.ImageIndex = 52;
     this.bbiExportExcel.Name = "bbiExportExcel";
     this.bbiExportExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiExportExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiExportExcel_ItemClick);
     //
     // frmTestList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTestList";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.frmTestList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repositoryItemLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry46BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry46TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry46TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.vQry46BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEdituserin});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate,
     this.colNum});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 1;
     //
     // colNum
     //
     this.colNum.AppearanceCell.Options.UseTextOptions = true;
     this.colNum.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.AppearanceHeader.Options.UseTextOptions = true;
     this.colNum.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNum.Caption = "العدد";
     this.colNum.FieldName = "Num";
     this.colNum.Name = "colNum";
     this.colNum.OptionsColumn.ReadOnly = true;
     this.colNum.Visible = true;
     this.colNum.VisibleIndex = 3;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     //
     // repositoryItemLookUpEdituserin
     //
     this.repositoryItemLookUpEdituserin.AutoHeight = false;
     this.repositoryItemLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemLookUpEdituserin.Name = "repositoryItemLookUpEdituserin";
     this.repositoryItemLookUpEdituserin.NullText = "";
     this.repositoryItemLookUpEdituserin.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEdituserin.ValueMember = "UserID";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry46BindingSource
     //
     this.vQry46BindingSource.DataMember = "vQry46";
     this.vQry46BindingSource.DataSource = this.dsQueries;
     //
     // vQry46TableAdapter
     //
     this.vQry46TableAdapter.ClearBeforeFill = true;
     //
     // Qry46Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry46Frm";
     this.Text = "البيانات المصدرة للبنك - احصاء 2";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vQry46BindingSource)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.XPSCSData = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.UOWData = new DevExpress.Xpo.UnitOfWork(this.components);
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditremarks = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colBeandate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coldateremember = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldeleted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colMMashatName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.tBLBeanWarsaTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLBeanWarsaTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPSCSData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UOWData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditremarks)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.XPSCSData;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditremarks,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(1051, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // XPSCSData
     //
     this.XPSCSData.AllowEdit = true;
     this.XPSCSData.AllowNew = true;
     this.XPSCSData.AllowRemove = true;
     this.XPSCSData.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.vQry59DataTable);
     this.XPSCSData.Session = this.UOWData;
     //
     // UOWData
     //
     this.UOWData.TrackPropertiesModifications = false;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colBeandate,
     this.coldateremember,
     this.coldeleted,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colMMashatName1,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.FieldName = "DofatSarf";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.AllowEdit = false;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 0;
     this.colDofatSarfAId.Width = 128;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "اسم الوريث";
     this.colMMashatId.FieldName = "personName";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.AllowEdit = false;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 3;
     this.colMMashatId.Width = 150;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditremarks;
     this.colamanatrem.FieldName = "remarks";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 7;
     //
     // repositoryItemMemoExEditremarks
     //
     this.repositoryItemMemoExEditremarks.AutoHeight = false;
     this.repositoryItemMemoExEditremarks.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditremarks.Name = "repositoryItemMemoExEditremarks";
     //
     // colBeandate
     //
     this.colBeandate.AppearanceCell.Options.UseTextOptions = true;
     this.colBeandate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBeandate.AppearanceHeader.Options.UseTextOptions = true;
     this.colBeandate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBeandate.Caption = "التاريخ";
     this.colBeandate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colBeandate.FieldName = "Beandate";
     this.colBeandate.Name = "colBeandate";
     this.colBeandate.Visible = true;
     this.colBeandate.VisibleIndex = 8;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "d/M/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "d/M/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "d/M/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coldateremember
     //
     this.coldateremember.AppearanceCell.Options.UseTextOptions = true;
     this.coldateremember.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateremember.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateremember.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateremember.Caption = "تاريخ التذكير";
     this.coldateremember.FieldName = "dateremember";
     this.coldateremember.Name = "coldateremember";
     this.coldateremember.Visible = true;
     this.coldateremember.VisibleIndex = 9;
     //
     // coldeleted
     //
     this.coldeleted.AppearanceCell.Options.UseTextOptions = true;
     this.coldeleted.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldeleted.AppearanceHeader.Options.UseTextOptions = true;
     this.coldeleted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldeleted.Caption = "منع";
     this.coldeleted.FieldName = "deleted";
     this.coldeleted.Name = "coldeleted";
     this.coldeleted.OptionsColumn.AllowEdit = false;
     this.coldeleted.Visible = true;
     this.coldeleted.VisibleIndex = 6;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "حفظ";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 10;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 11;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colMMashatName1
     //
     this.colMMashatName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName1.Caption = "اسم الاب";
     this.colMMashatName1.FieldName = "MMashatName";
     this.colMMashatName1.Name = "colMMashatName1";
     this.colMMashatName1.OptionsColumn.AllowEdit = false;
     this.colMMashatName1.Visible = true;
     this.colMMashatName1.VisibleIndex = 1;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.OptionsColumn.AllowEdit = false;
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 2;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "فرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.OptionsColumn.AllowEdit = false;
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.OptionsColumn.AllowEdit = false;
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // 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.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1055, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(1055, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(850, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // tBLBeanWarsaTableAdapter
     //
     this.tBLBeanWarsaTableAdapter.ClearBeforeFill = true;
     //
     // TBLBeanWarsaFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1079, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLBeanWarsaFrm";
     this.Text = "بيان الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPSCSData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UOWData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditremarks)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 43
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CellQueryForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnRefresh = new System.Windows.Forms.Button();
     this.btnChart = new System.Windows.Forms.Button();
     this.btnExit = new System.Windows.Forms.Button();
     this.pnlChart = new System.Windows.Forms.Panel();
     this.sbShelf = new System.Windows.Forms.VScrollBar();
     this.pnlData = new System.Windows.Forms.Panel();
     this.pnlProgress = new System.Windows.Forms.Panel();
     this.lblInfo = new System.Windows.Forms.Label();
     this.dgvMain = new System.Windows.Forms.DataGridView();
     this.ShelfName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CellCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CellName = new DataGridViewAutoFilter.DataGridViewAutoFilterTextBoxColumn();
     this.ProductCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ProductName = new DataGridViewAutoFilter.DataGridViewAutoFilterTextBoxColumn();
     this.QUANTITY = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WareCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WareName = new DataGridViewAutoFilter.DataGridViewAutoFilterTextBoxColumn();
     this.IsActive = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsMain = new System.Windows.Forms.BindingSource(this.components);
     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.pnlTool.SuspendLayout();
     this.pnlContent.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.pnlChart.SuspendLayout();
     this.pnlData.SuspendLayout();
     this.pnlProgress.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsMain)).BeginInit();
     this.SuspendLayout();
     //
     // pnlTool
     //
     this.pnlTool.Controls.Add(this.button5);
     this.pnlTool.Controls.Add(this.button4);
     this.pnlTool.Controls.Add(this.button3);
     this.pnlTool.Controls.Add(this.button1);
     this.pnlTool.Controls.Add(this.button2);
     this.pnlTool.Controls.Add(this.btnExit);
     this.pnlTool.Controls.Add(this.btnChart);
     this.pnlTool.Controls.Add(this.btnRefresh);
     this.pnlTool.Size = new System.Drawing.Size(1020, 46);
     //
     // pnlContent
     //
     this.pnlContent.Controls.Add(this.pnlData);
     this.pnlContent.Controls.Add(this.pnlChart);
     this.pnlContent.Location = new System.Drawing.Point(0, 46);
     this.pnlContent.Size = new System.Drawing.Size(1020, 229);
     //
     // pnlMain
     //
     this.pnlMain.Size = new System.Drawing.Size(1020, 275);
     //
     // btnRefresh
     //
     this.btnRefresh.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnRefresh.Image = global::THOK.WES.Properties.Resources.onebit_02;
     this.btnRefresh.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnRefresh.Location = new System.Drawing.Point(0, 0);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(48, 44);
     this.btnRefresh.TabIndex = 1;
     this.btnRefresh.Text = "查询";
     this.btnRefresh.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnRefresh.UseVisualStyleBackColor = true;
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnChart
     //
     this.btnChart.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnChart.Image = ((System.Drawing.Image)(resources.GetObject("btnChart.Image")));
     this.btnChart.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnChart.Location = new System.Drawing.Point(48, 0);
     this.btnChart.Name = "btnChart";
     this.btnChart.Size = new System.Drawing.Size(48, 44);
     this.btnChart.TabIndex = 2;
     this.btnChart.Text = "图形";
     this.btnChart.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnChart.UseVisualStyleBackColor = true;
     this.btnChart.Click += new System.EventHandler(this.btnChart_Click);
     //
     // btnExit
     //
     this.btnExit.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnExit.Image = global::THOK.WES.Properties.Resources.shut_down;
     this.btnExit.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnExit.Location = new System.Drawing.Point(96, 0);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(48, 44);
     this.btnExit.TabIndex = 3;
     this.btnExit.Text = "退出";
     this.btnExit.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnExit.UseVisualStyleBackColor = true;
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // pnlChart
     //
     this.pnlChart.BackColor = System.Drawing.SystemColors.Info;
     this.pnlChart.Controls.Add(this.sbShelf);
     this.pnlChart.Location = new System.Drawing.Point(3, 138);
     this.pnlChart.Name = "pnlChart";
     this.pnlChart.Size = new System.Drawing.Size(1022, 89);
     this.pnlChart.TabIndex = 2;
     this.pnlChart.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlChart_Paint);
     this.pnlChart.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pnlChart_MouseClick);
     this.pnlChart.Resize += new System.EventHandler(this.pnlChart_Resize);
     //
     // sbShelf
     //
     this.sbShelf.Dock = System.Windows.Forms.DockStyle.Right;
     this.sbShelf.LargeChange = 30;
     this.sbShelf.Location = new System.Drawing.Point(1003, 0);
     this.sbShelf.Maximum = 60;
     this.sbShelf.Name = "sbShelf";
     this.sbShelf.Size = new System.Drawing.Size(19, 89);
     this.sbShelf.SmallChange = 30;
     this.sbShelf.TabIndex = 0;
     this.sbShelf.Value = 1;
     this.sbShelf.ValueChanged += new System.EventHandler(this.sbShelf_ValueChanged);
     //
     // pnlData
     //
     this.pnlData.Controls.Add(this.pnlProgress);
     this.pnlData.Controls.Add(this.dgvMain);
     this.pnlData.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlData.Location = new System.Drawing.Point(0, 0);
     this.pnlData.Name = "pnlData";
     this.pnlData.Size = new System.Drawing.Size(1020, 132);
     this.pnlData.TabIndex = 3;
     //
     // pnlProgress
     //
     this.pnlProgress.Controls.Add(this.lblInfo);
     this.pnlProgress.Location = new System.Drawing.Point(250, 18);
     this.pnlProgress.Name = "pnlProgress";
     this.pnlProgress.Size = new System.Drawing.Size(238, 79);
     this.pnlProgress.TabIndex = 10;
     this.pnlProgress.Visible = false;
     //
     // lblInfo
     //
     this.lblInfo.AutoSize = true;
     this.lblInfo.Location = new System.Drawing.Point(32, 34);
     this.lblInfo.Name = "lblInfo";
     this.lblInfo.Size = new System.Drawing.Size(167, 12);
     this.lblInfo.TabIndex = 1;
     this.lblInfo.Text = "正在准备货位数据,请稍候...";
     //
     // dgvMain
     //
     this.dgvMain.AllowUserToAddRows = false;
     this.dgvMain.AllowUserToDeleteRows = false;
     this.dgvMain.AllowUserToResizeRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.dgvMain.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvMain.AutoGenerateColumns = false;
     this.dgvMain.BackgroundColor = System.Drawing.SystemColors.Info;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvMain.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dgvMain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvMain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ShelfName,
     this.CellCode,
     this.CellName,
     this.ProductCode,
     this.ProductName,
     this.QUANTITY,
     this.WareCode,
     this.WareName,
     this.IsActive});
     this.dgvMain.DataSource = this.bsMain;
     this.dgvMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvMain.Location = new System.Drawing.Point(0, 0);
     this.dgvMain.MultiSelect = false;
     this.dgvMain.Name = "dgvMain";
     this.dgvMain.ReadOnly = true;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvMain.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.dgvMain.RowHeadersWidth = 30;
     this.dgvMain.RowTemplate.Height = 23;
     this.dgvMain.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvMain.Size = new System.Drawing.Size(1020, 132);
     this.dgvMain.TabIndex = 10;
     //
     // ShelfName
     //
     this.ShelfName.DataPropertyName = "ShelfName";
     this.ShelfName.HeaderText = "货架名称";
     this.ShelfName.Name = "ShelfName";
     this.ShelfName.ReadOnly = true;
     this.ShelfName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ShelfName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.ShelfName.Width = 80;
     //
     // CellCode
     //
     this.CellCode.DataPropertyName = "CellCode";
     this.CellCode.HeaderText = "货位编码";
     this.CellCode.Name = "CellCode";
     this.CellCode.ReadOnly = true;
     this.CellCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.CellCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.CellCode.Width = 88;
     //
     // CellName
     //
     this.CellName.DataPropertyName = "CellName";
     this.CellName.FilteringEnabled = false;
     this.CellName.HeaderText = "货位名称";
     this.CellName.Name = "CellName";
     this.CellName.ReadOnly = true;
     this.CellName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // ProductCode
     //
     this.ProductCode.DataPropertyName = "ProductCode";
     this.ProductCode.HeaderText = "卷烟代码";
     this.ProductCode.Name = "ProductCode";
     this.ProductCode.ReadOnly = true;
     this.ProductCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ProductCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.ProductCode.Width = 80;
     //
     // ProductName
     //
     this.ProductName.DataPropertyName = "ProductName";
     this.ProductName.FilteringEnabled = false;
     this.ProductName.HeaderText = "卷烟名称";
     this.ProductName.Name = "ProductName";
     this.ProductName.ReadOnly = true;
     this.ProductName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ProductName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // QUANTITY
     //
     this.QUANTITY.DataPropertyName = "QuantityJian";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.QUANTITY.DefaultCellStyle = dataGridViewCellStyle3;
     this.QUANTITY.HeaderText = "卷烟数量";
     this.QUANTITY.Name = "QUANTITY";
     this.QUANTITY.ReadOnly = true;
     this.QUANTITY.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.QUANTITY.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.QUANTITY.Width = 95;
     //
     // WareCode
     //
     this.WareCode.DataPropertyName = "WareCode";
     this.WareCode.HeaderText = "仓库编码";
     this.WareCode.Name = "WareCode";
     this.WareCode.ReadOnly = true;
     this.WareCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.WareCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.WareCode.Width = 80;
     //
     // WareName
     //
     this.WareName.DataPropertyName = "WareName";
     this.WareName.FilteringEnabled = false;
     this.WareName.HeaderText = "仓库名称";
     this.WareName.Name = "WareName";
     this.WareName.ReadOnly = true;
     this.WareName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // IsActive
     //
     this.IsActive.DataPropertyName = "IsActive";
     this.IsActive.HeaderText = "是否可用";
     this.IsActive.Name = "IsActive";
     this.IsActive.ReadOnly = true;
     this.IsActive.Width = 80;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Gold;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button1.Location = new System.Drawing.Point(150, 6);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(51, 23);
     this.button1.TabIndex = 11;
     this.button1.Text = "整托盘";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Visible = false;
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.RoyalBlue;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Location = new System.Drawing.Point(207, 6);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(51, 23);
     this.button2.TabIndex = 1;
     this.button2.Text = "半托盘";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Visible = false;
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.SpringGreen;
     this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button3.Location = new System.Drawing.Point(264, 6);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(51, 23);
     this.button3.TabIndex = 2;
     this.button3.Text = "空货位";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Visible = false;
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.Red;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button4.Location = new System.Drawing.Point(321, 6);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(51, 23);
     this.button4.TabIndex = 12;
     this.button4.Text = "预警";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Visible = false;
     //
     // button5
     //
     this.button5.BackColor = System.Drawing.Color.White;
     this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button5.Location = new System.Drawing.Point(264, 6);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(51, 23);
     this.button5.TabIndex = 13;
     this.button5.Text = "空货位";
     this.button5.UseVisualStyleBackColor = false;
     this.button5.Visible = false;
     //
     // CellQueryForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1020, 275);
     this.Name = "CellQueryForm";
     this.Text = "CellQueryForm";
     this.pnlTool.ResumeLayout(false);
     this.pnlContent.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlChart.ResumeLayout(false);
     this.pnlData.ResumeLayout(false);
     this.pnlProgress.ResumeLayout(false);
     this.pnlProgress.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsMain)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.ViewNSX = new System.Windows.Forms.DataGridView();
     this.nhaSXIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tenNhaSXDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nhaSXBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.txtMaNhaSanXuat = new System.Windows.Forms.TextBox();
     this.txtTenNhaSanXuat = new System.Windows.Forms.TextBox();
     this.btnLuu = new System.Windows.Forms.Button();
     this.btnThem = new System.Windows.Forms.Button();
     this.btnSua = new System.Windows.Forms.Button();
     this.btnXoa = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.ViewNSX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nhaSXBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // ViewNSX
     //
     this.ViewNSX.AllowUserToAddRows = false;
     this.ViewNSX.AllowUserToDeleteRows = false;
     this.ViewNSX.AutoGenerateColumns = false;
     this.ViewNSX.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ViewNSX.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nhaSXIDDataGridViewTextBoxColumn,
     this.tenNhaSXDataGridViewTextBoxColumn});
     this.ViewNSX.DataSource = this.nhaSXBindingSource;
     this.ViewNSX.Location = new System.Drawing.Point(12, 12);
     this.ViewNSX.Name = "ViewNSX";
     this.ViewNSX.ReadOnly = true;
     this.ViewNSX.Size = new System.Drawing.Size(445, 150);
     this.ViewNSX.TabIndex = 0;
     this.ViewNSX.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ViewNSX_Click);
     this.ViewNSX.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ViewNSX_Click);
     this.ViewNSX.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.ViewNSX_CellMouseClick);
     //
     // nhaSXIDDataGridViewTextBoxColumn
     //
     this.nhaSXIDDataGridViewTextBoxColumn.DataPropertyName = "NhaSX_ID";
     this.nhaSXIDDataGridViewTextBoxColumn.HeaderText = "Mã Nhà Sản Xuất";
     this.nhaSXIDDataGridViewTextBoxColumn.Name = "nhaSXIDDataGridViewTextBoxColumn";
     this.nhaSXIDDataGridViewTextBoxColumn.ReadOnly = true;
     this.nhaSXIDDataGridViewTextBoxColumn.Width = 200;
     //
     // tenNhaSXDataGridViewTextBoxColumn
     //
     this.tenNhaSXDataGridViewTextBoxColumn.DataPropertyName = "TenNhaSX";
     this.tenNhaSXDataGridViewTextBoxColumn.HeaderText = "Tên Nhà Sản Xuất";
     this.tenNhaSXDataGridViewTextBoxColumn.Name = "tenNhaSXDataGridViewTextBoxColumn";
     this.tenNhaSXDataGridViewTextBoxColumn.ReadOnly = true;
     this.tenNhaSXDataGridViewTextBoxColumn.Width = 200;
     //
     // nhaSXBindingSource
     //
     this.nhaSXBindingSource.DataSource = typeof(Winform.QuanLyNhaSXServiceReference.NhaSX);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial Narrow", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(12, 194);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(108, 20);
     this.label1.TabIndex = 1;
     this.label1.Text = "Mã Nhà Sản Xuất";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial Narrow", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(12, 226);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(113, 20);
     this.label2.TabIndex = 2;
     this.label2.Text = "Tên Nhà Sản Xuất";
     //
     // txtMaNhaSanXuat
     //
     this.txtMaNhaSanXuat.Location = new System.Drawing.Point(161, 194);
     this.txtMaNhaSanXuat.Name = "txtMaNhaSanXuat";
     this.txtMaNhaSanXuat.Size = new System.Drawing.Size(148, 20);
     this.txtMaNhaSanXuat.TabIndex = 3;
     //
     // txtTenNhaSanXuat
     //
     this.txtTenNhaSanXuat.Location = new System.Drawing.Point(161, 226);
     this.txtTenNhaSanXuat.Name = "txtTenNhaSanXuat";
     this.txtTenNhaSanXuat.Size = new System.Drawing.Size(148, 20);
     this.txtTenNhaSanXuat.TabIndex = 4;
     //
     // btnLuu
     //
     this.btnLuu.Font = new System.Drawing.Font("Arial Narrow", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLuu.Location = new System.Drawing.Point(12, 311);
     this.btnLuu.Name = "btnLuu";
     this.btnLuu.Size = new System.Drawing.Size(127, 27);
     this.btnLuu.TabIndex = 5;
     this.btnLuu.Text = "Lưu";
     this.btnLuu.UseVisualStyleBackColor = true;
     this.btnLuu.Click += new System.EventHandler(this.btnCapNhat_Click);
     //
     // btnThem
     //
     this.btnThem.Font = new System.Drawing.Font("Arial Narrow", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnThem.Location = new System.Drawing.Point(12, 278);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(127, 27);
     this.btnThem.TabIndex = 6;
     this.btnThem.Text = "Thêm";
     this.btnThem.UseVisualStyleBackColor = true;
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnSua
     //
     this.btnSua.Font = new System.Drawing.Font("Arial Narrow", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSua.Location = new System.Drawing.Point(161, 278);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(127, 27);
     this.btnSua.TabIndex = 7;
     this.btnSua.Text = "Sửa";
     this.btnSua.UseVisualStyleBackColor = true;
     this.btnSua.Click += new System.EventHandler(this.button3_Click);
     //
     // btnXoa
     //
     this.btnXoa.Font = new System.Drawing.Font("Arial Narrow", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnXoa.Location = new System.Drawing.Point(307, 278);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(127, 27);
     this.btnXoa.TabIndex = 8;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // FrmNhaSanXuat
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 11F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(469, 364);
     this.Controls.Add(this.btnXoa);
     this.Controls.Add(this.btnSua);
     this.Controls.Add(this.btnThem);
     this.Controls.Add(this.btnLuu);
     this.Controls.Add(this.txtTenNhaSanXuat);
     this.Controls.Add(this.txtMaNhaSanXuat);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.ViewNSX);
     this.Name = "FrmNhaSanXuat";
     this.Text = "FrmNhaSanXuat";
     ((System.ComponentModel.ISupportInitialize)(this.ViewNSX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nhaSXBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 45
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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewCommandColumn gridViewCommandColumn1 = new Telerik.WinControls.UI.GridViewCommandColumn();
     this.btnSave = new Telerik.WinControls.UI.RadButton();
     this.btnNew = new Telerik.WinControls.UI.RadButton();
     this.radGroupBox6 = new Telerik.WinControls.UI.RadGroupBox();
     this.ucFilter1 = new ShayanDental.UserControls.UCFilter();
     this.grvItems = new Telerik.WinControls.UI.RadGridView();
     this.radGroupBox4 = new Telerik.WinControls.UI.RadGroupBox();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.radLabel20 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel22 = new Telerik.WinControls.UI.RadLabel();
     this.txtManual = new Telerik.WinControls.UI.RadTextBox();
     this.srcItem = new System.Windows.Forms.BindingSource(this.components);
     this.txtName = new Telerik.WinControls.UI.RadTextBox();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.btnCancel = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).BeginInit();
     this.radGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).BeginInit();
     this.radGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtManual)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).BeginInit();
     this.SuspendLayout();
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnSave.Location = new System.Drawing.Point(470, 249);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(144, 35);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "ذخیره";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnNew
     //
     this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnNew.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnNew.Location = new System.Drawing.Point(5, 171);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(144, 35);
     this.btnNew.TabIndex = 3;
     this.btnNew.Text = "جدید";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // radGroupBox6
     //
     this.radGroupBox6.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox6.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.radGroupBox6.Controls.Add(this.ucFilter1);
     this.radGroupBox6.Controls.Add(this.grvItems);
     this.radGroupBox6.Font = new System.Drawing.Font("B Nazanin", 8.25F);
     this.radGroupBox6.FooterImageIndex = -1;
     this.radGroupBox6.FooterImageKey = "";
     this.radGroupBox6.HeaderImageIndex = -1;
     this.radGroupBox6.HeaderImageKey = "";
     this.radGroupBox6.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox6.HeaderText = "داروها";
     this.radGroupBox6.Location = new System.Drawing.Point(12, 3);
     this.radGroupBox6.Name = "radGroupBox6";
     this.radGroupBox6.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox6.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox6.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox6.Size = new System.Drawing.Size(292, 281);
     this.radGroupBox6.TabIndex = 20;
     this.radGroupBox6.TabStop = false;
     this.radGroupBox6.Text = "داروها";
     //
     // ucFilter1
     //
     this.ucFilter1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ucFilter1.Location = new System.Drawing.Point(5, 21);
     this.ucFilter1.Name = "ucFilter1";
     this.ucFilter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ucFilter1.Size = new System.Drawing.Size(282, 27);
     this.ucFilter1.TabIndex = 14;
     //
     // grvItems
     //
     this.grvItems.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.grvItems.Font = new System.Drawing.Font("B Nazanin", 9.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.grvItems.Location = new System.Drawing.Point(5, 52);
     //
     // grvItems
     //
     this.grvItems.MasterTemplate.AllowAddNewRow = false;
     this.grvItems.MasterTemplate.AllowCellContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnChooser = false;
     this.grvItems.MasterTemplate.AllowColumnHeaderContextMenu = false;
     this.grvItems.MasterTemplate.AllowColumnReorder = false;
     this.grvItems.MasterTemplate.AllowDeleteRow = false;
     this.grvItems.MasterTemplate.AllowDragToGroup = false;
     this.grvItems.MasterTemplate.AllowEditRow = false;
     this.grvItems.MasterTemplate.AllowRowResize = false;
     this.grvItems.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn1.FieldName = "Title";
     gridViewTextBoxColumn1.HeaderText = "نام دارو";
     gridViewTextBoxColumn1.Name = "column1";
     gridViewTextBoxColumn1.Width = 232;
     gridViewCommandColumn1.AllowHide = false;
     gridViewCommandColumn1.AllowReorder = false;
     gridViewCommandColumn1.AllowResize = false;
     gridViewCommandColumn1.AllowSort = false;
     gridViewCommandColumn1.HeaderText = "حذف";
     gridViewCommandColumn1.Name = "column2";
     gridViewCommandColumn1.Width = 30;
     this.grvItems.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn1,
     gridViewCommandColumn1});
     this.grvItems.MasterTemplate.EnableGrouping = false;
     this.grvItems.MasterTemplate.EnableSorting = false;
     this.grvItems.Name = "grvItems";
     this.grvItems.ReadOnly = true;
     this.grvItems.Size = new System.Drawing.Size(282, 224);
     this.grvItems.TabIndex = 13;
     this.grvItems.ViewRowFormatting += new Telerik.WinControls.UI.RowFormattingEventHandler(this.grvItems_ViewRowFormatting);
     this.grvItems.CellFormatting += new Telerik.WinControls.UI.CellFormattingEventHandler(this.grvItems_CellFormatting);
     this.grvItems.CurrentRowChanging += new Telerik.WinControls.UI.CurrentRowChangingEventHandler(this.grvItems_CurrentRowChanging);
     this.grvItems.SelectionChanged += new System.EventHandler(this.grvItems_SelectionChanged);
     this.grvItems.CommandCellClick += new Telerik.WinControls.UI.CommandCellClickEventHandler(this.grvItems_CommandCellClick);
     this.grvItems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grvItems_KeyDown);
     //
     // radGroupBox4
     //
     this.radGroupBox4.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radGroupBox4.Controls.Add(this.btnAdd);
     this.radGroupBox4.Controls.Add(this.btnNew);
     this.radGroupBox4.Controls.Add(this.radLabel20);
     this.radGroupBox4.Controls.Add(this.radLabel22);
     this.radGroupBox4.Controls.Add(this.txtManual);
     this.radGroupBox4.Controls.Add(this.txtName);
     this.radGroupBox4.Font = new System.Drawing.Font("B Nazanin", 8.25F);
     this.radGroupBox4.FooterImageIndex = -1;
     this.radGroupBox4.FooterImageKey = "";
     this.radGroupBox4.HeaderImageIndex = -1;
     this.radGroupBox4.HeaderImageKey = "";
     this.radGroupBox4.HeaderMargin = new System.Windows.Forms.Padding(0);
     this.radGroupBox4.HeaderText = "تعریف";
     this.radGroupBox4.Location = new System.Drawing.Point(310, 0);
     this.radGroupBox4.Name = "radGroupBox4";
     this.radGroupBox4.Padding = new System.Windows.Forms.Padding(2, 18, 2, 2);
     this.radGroupBox4.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     //
     //
     //
     this.radGroupBox4.RootElement.MinSize = new System.Drawing.Size(0, 0);
     this.radGroupBox4.Size = new System.Drawing.Size(311, 215);
     this.radGroupBox4.TabIndex = 19;
     this.radGroupBox4.TabStop = false;
     this.radGroupBox4.Text = "تعریف";
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnAdd.Location = new System.Drawing.Point(160, 171);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(144, 35);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "افزودن";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // radLabel20
     //
     this.radLabel20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel20.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel20.Location = new System.Drawing.Point(262, 26);
     this.radLabel20.Name = "radLabel20";
     this.radLabel20.Size = new System.Drawing.Size(43, 23);
     this.radLabel20.TabIndex = 11;
     this.radLabel20.Text = "نام دارو :";
     this.radLabel20.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // radLabel22
     //
     this.radLabel22.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radLabel22.Font = new System.Drawing.Font("B Nazanin", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.radLabel22.Location = new System.Drawing.Point(245, 52);
     this.radLabel22.Name = "radLabel22";
     this.radLabel22.Size = new System.Drawing.Size(61, 23);
     this.radLabel22.TabIndex = 9;
     this.radLabel22.Text = "نحوه مصرف :";
     this.radLabel22.TextAlignment = System.Drawing.ContentAlignment.TopRight;
     //
     // txtManual
     //
     this.txtManual.AcceptsReturn = true;
     this.txtManual.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtManual.AutoScroll = true;
     this.txtManual.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Manual", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.txtManual.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtManual.Location = new System.Drawing.Point(5, 55);
     this.txtManual.Multiline = true;
     this.txtManual.Name = "txtManual";
     //
     //
     //
     this.txtManual.RootElement.StretchVertically = true;
     this.txtManual.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtManual.Size = new System.Drawing.Size(239, 110);
     this.txtManual.TabIndex = 1;
     this.txtManual.TabStop = false;
     this.txtManual.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtManual_TextChanging);
     //
     // srcItem
     //
     this.srcItem.DataSource = typeof(Shayan.Data.Drug);
     //
     // txtName
     //
     this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.srcItem, "Title", true));
     this.txtName.Font = new System.Drawing.Font("B Nazanin", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
     this.txtName.Location = new System.Drawing.Point(5, 22);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(239, 27);
     this.txtName.TabIndex = 0;
     this.txtName.TabStop = false;
     this.txtName.TextChanging += new Telerik.WinControls.TextChangingEventHandler(this.txtName_TextChanging);
     this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Font = new System.Drawing.Font("B Nazanin", 10.5F, System.Drawing.FontStyle.Bold);
     this.btnCancel.Location = new System.Drawing.Point(315, 249);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(144, 35);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "انصراف";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // UCDrug
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.radGroupBox6);
     this.Controls.Add(this.radGroupBox4);
     this.Name = "UCDrug";
     this.Size = new System.Drawing.Size(628, 295);
     ((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox6)).EndInit();
     this.radGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grvItems.MasterTemplate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvItems)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox4)).EndInit();
     this.radGroupBox4.ResumeLayout(false);
     this.radGroupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtManual)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.srcItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnCancel)).EndInit();
     this.ResumeLayout(false);
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxProductId = new System.Windows.Forms.ComboBox();
			uxProductIdLabel = new System.Windows.Forms.Label();
			this.uxVendorId = new System.Windows.Forms.ComboBox();
			uxVendorIdLabel = new System.Windows.Forms.Label();
			this.uxAverageLeadTime = new System.Windows.Forms.TextBox();
			uxAverageLeadTimeLabel = new System.Windows.Forms.Label();
			this.uxStandardPrice = new System.Windows.Forms.TextBox();
			uxStandardPriceLabel = new System.Windows.Forms.Label();
			this.uxLastReceiptCost = new System.Windows.Forms.TextBox();
			uxLastReceiptCostLabel = new System.Windows.Forms.Label();
			this.uxLastReceiptDate = new System.Windows.Forms.DateTimePicker();
			uxLastReceiptDateLabel = new System.Windows.Forms.Label();
			this.uxMinOrderQty = new System.Windows.Forms.TextBox();
			uxMinOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxMaxOrderQty = new System.Windows.Forms.TextBox();
			uxMaxOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxOnOrderQty = new System.Windows.Forms.TextBox();
			uxOnOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxUnitMeasureCode = new System.Windows.Forms.ComboBox();
			uxUnitMeasureCodeLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxProductIdLabel
			//
			this.uxProductIdLabel.Name = "uxProductIdLabel";
			this.uxProductIdLabel.Text = "Product Id:";
			this.uxProductIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxProductIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);			
			//
			// uxProductId
			//
			this.uxProductId.Name = "uxProductId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
			this.uxProductId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxProductId);
			//
			// uxVendorIdLabel
			//
			this.uxVendorIdLabel.Name = "uxVendorIdLabel";
			this.uxVendorIdLabel.Text = "Vendor Id:";
			this.uxVendorIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxVendorIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxVendorIdLabel);			
			//
			// uxVendorId
			//
			this.uxVendorId.Name = "uxVendorId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxVendorId);
			this.uxVendorId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxVendorId);
			//
			// uxAverageLeadTimeLabel
			//
			this.uxAverageLeadTimeLabel.Name = "uxAverageLeadTimeLabel";
			this.uxAverageLeadTimeLabel.Text = "Average Lead Time:";
			this.uxAverageLeadTimeLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxAverageLeadTimeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTimeLabel);			
			//
			// uxAverageLeadTime
			//
			this.uxAverageLeadTime.Name = "uxAverageLeadTime";
			//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTime);
			this.uxAverageLeadTime.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxAverageLeadTime);
			//
			// uxStandardPriceLabel
			//
			this.uxStandardPriceLabel.Name = "uxStandardPriceLabel";
			this.uxStandardPriceLabel.Text = "Standard Price:";
			this.uxStandardPriceLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxStandardPriceLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStandardPriceLabel);			
			//
			// uxStandardPrice
			//
			this.uxStandardPrice.Name = "uxStandardPrice";
			//this.uxTableLayoutPanel.Controls.Add(this.uxStandardPrice);
			this.uxStandardPrice.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxStandardPrice);
			//
			// uxLastReceiptCostLabel
			//
			this.uxLastReceiptCostLabel.Name = "uxLastReceiptCostLabel";
			this.uxLastReceiptCostLabel.Text = "Last Receipt Cost:";
			this.uxLastReceiptCostLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxLastReceiptCostLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptCostLabel);			
			//
			// uxLastReceiptCost
			//
			this.uxLastReceiptCost.Name = "uxLastReceiptCost";
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptCost);
			this.uxLastReceiptCost.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxLastReceiptCost);
			//
			// uxLastReceiptDateLabel
			//
			this.uxLastReceiptDateLabel.Name = "uxLastReceiptDateLabel";
			this.uxLastReceiptDateLabel.Text = "Last Receipt Date:";
			this.uxLastReceiptDateLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxLastReceiptDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptDateLabel);			
			//
			// uxLastReceiptDate
			//
			this.uxLastReceiptDate.Name = "uxLastReceiptDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptDate);
			this.uxLastReceiptDate.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxLastReceiptDate);
			//
			// uxMinOrderQtyLabel
			//
			this.uxMinOrderQtyLabel.Name = "uxMinOrderQtyLabel";
			this.uxMinOrderQtyLabel.Text = "Min Order Qty:";
			this.uxMinOrderQtyLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxMinOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxMinOrderQtyLabel);			
			//
			// uxMinOrderQty
			//
			this.uxMinOrderQty.Name = "uxMinOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxMinOrderQty);
			this.uxMinOrderQty.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxMinOrderQty);
			//
			// uxMaxOrderQtyLabel
			//
			this.uxMaxOrderQtyLabel.Name = "uxMaxOrderQtyLabel";
			this.uxMaxOrderQtyLabel.Text = "Max Order Qty:";
			this.uxMaxOrderQtyLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxMaxOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxMaxOrderQtyLabel);			
			//
			// uxMaxOrderQty
			//
			this.uxMaxOrderQty.Name = "uxMaxOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxMaxOrderQty);
			this.uxMaxOrderQty.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxMaxOrderQty);
			//
			// uxOnOrderQtyLabel
			//
			this.uxOnOrderQtyLabel.Name = "uxOnOrderQtyLabel";
			this.uxOnOrderQtyLabel.Text = "On Order Qty:";
			this.uxOnOrderQtyLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxOnOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxOnOrderQtyLabel);			
			//
			// uxOnOrderQty
			//
			this.uxOnOrderQty.Name = "uxOnOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxOnOrderQty);
			this.uxOnOrderQty.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxOnOrderQty);
			//
			// uxUnitMeasureCodeLabel
			//
			this.uxUnitMeasureCodeLabel.Name = "uxUnitMeasureCodeLabel";
			this.uxUnitMeasureCodeLabel.Text = "Unit Measure Code:";
			this.uxUnitMeasureCodeLabel.Location = new System.Drawing.Point(3, 234);
			this.Controls.Add(this.uxUnitMeasureCodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCodeLabel);			
			//
			// uxUnitMeasureCode
			//
			this.uxUnitMeasureCode.Name = "uxUnitMeasureCode";
			//this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCode);
			this.uxUnitMeasureCode.Location = new System.Drawing.Point(160, 234);
			this.Controls.Add(this.uxUnitMeasureCode);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 260);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 260);
			this.Controls.Add(this.uxModifiedDate);
			//
			// uxProductId
			//				
			this.uxProductId.DisplayMember = "Name";	
			this.uxProductId.ValueMember = "ProductId";	
			//
			// uxUnitMeasureCode
			//				
			this.uxUnitMeasureCode.DisplayMember = "Name";	
			this.uxUnitMeasureCode.ValueMember = "UnitMeasureCode";	
			//
			// uxVendorId
			//				
			this.uxVendorId.DisplayMember = "AccountNumber";	
			this.uxVendorId.ValueMember = "VendorId";	
			// 
			// ProductVendorEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "ProductVendorEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxSystemInformationId = new System.Windows.Forms.TextBox();
			uxSystemInformationIdLabel = new System.Windows.Forms.Label();
			this.uxDatabaseVersion = new System.Windows.Forms.TextBox();
			uxDatabaseVersionLabel = new System.Windows.Forms.Label();
			this.uxVersionDate = new System.Windows.Forms.DateTimePicker();
			uxVersionDateLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxSystemInformationIdLabel
			//
			this.uxSystemInformationIdLabel.Name = "uxSystemInformationIdLabel";
			this.uxSystemInformationIdLabel.Text = "System Information Id:";
			this.uxSystemInformationIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxSystemInformationIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSystemInformationIdLabel);			
			//
			// uxSystemInformationId
			//
			this.uxSystemInformationId.Name = "uxSystemInformationId";
            this.uxSystemInformationId.ReadOnly = true;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSystemInformationId);
			this.uxSystemInformationId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxSystemInformationId);
			//
			// uxDatabaseVersionLabel
			//
			this.uxDatabaseVersionLabel.Name = "uxDatabaseVersionLabel";
			this.uxDatabaseVersionLabel.Text = "Database Version:";
			this.uxDatabaseVersionLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxDatabaseVersionLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxDatabaseVersionLabel);			
			//
			// uxDatabaseVersion
			//
			this.uxDatabaseVersion.Name = "uxDatabaseVersion";
			this.uxDatabaseVersion.Width = 250;
			this.uxDatabaseVersion.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxDatabaseVersion);
			this.uxDatabaseVersion.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxDatabaseVersion);
			//
			// uxVersionDateLabel
			//
			this.uxVersionDateLabel.Name = "uxVersionDateLabel";
			this.uxVersionDateLabel.Text = "Version Date:";
			this.uxVersionDateLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxVersionDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxVersionDateLabel);			
			//
			// uxVersionDate
			//
			this.uxVersionDate.Name = "uxVersionDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxVersionDate);
			this.uxVersionDate.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxVersionDate);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxModifiedDate);
			// 
			// AwBuildVersionEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "AwBuildVersionEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxStudentId = new System.Windows.Forms.TextBox();
			uxStudentIdLabel = new System.Windows.Forms.Label();
			this.uxEpassId = new System.Windows.Forms.TextBox();
			uxEpassIdLabel = new System.Windows.Forms.Label();
			this.uxStudentUpn = new System.Windows.Forms.TextBox();
			uxStudentUpnLabel = new System.Windows.Forms.Label();
			this.uxSsabsaId = new System.Windows.Forms.TextBox();
			uxSsabsaIdLabel = new System.Windows.Forms.Label();
			this.uxSurname = new System.Windows.Forms.TextBox();
			uxSurnameLabel = new System.Windows.Forms.Label();
			this.uxFirstName = new System.Windows.Forms.TextBox();
			uxFirstNameLabel = new System.Windows.Forms.Label();
			this.uxOtherNames = new System.Windows.Forms.TextBox();
			uxOtherNamesLabel = new System.Windows.Forms.Label();
			this.uxKnownName = new System.Windows.Forms.TextBox();
			uxKnownNameLabel = new System.Windows.Forms.Label();
			this.uxLegalName = new System.Windows.Forms.TextBox();
			uxLegalNameLabel = new System.Windows.Forms.Label();
			this.uxDob = new System.Windows.Forms.DateTimePicker();
			uxDobLabel = new System.Windows.Forms.Label();
			this.uxGender = new System.Windows.Forms.TextBox();
			uxGenderLabel = new System.Windows.Forms.Label();
			this.uxIndigeneousStatus = new System.Windows.Forms.TextBox();
			uxIndigeneousStatusLabel = new System.Windows.Forms.Label();
			this.uxLbote = new System.Windows.Forms.TextBox();
			uxLboteLabel = new System.Windows.Forms.Label();
			this.uxEslPhase = new System.Windows.Forms.TextBox();
			uxEslPhaseLabel = new System.Windows.Forms.Label();
			this.uxTribalGroup = new System.Windows.Forms.TextBox();
			uxTribalGroupLabel = new System.Windows.Forms.Label();
			this.uxSlpCreatedFlag = new System.Windows.Forms.TextBox();
			uxSlpCreatedFlagLabel = new System.Windows.Forms.Label();
			this.uxAddressLine1 = new System.Windows.Forms.TextBox();
			uxAddressLine1Label = new System.Windows.Forms.Label();
			this.uxAddressLine2 = new System.Windows.Forms.TextBox();
			uxAddressLine2Label = new System.Windows.Forms.Label();
			this.uxAddressLine3 = new System.Windows.Forms.TextBox();
			uxAddressLine3Label = new System.Windows.Forms.Label();
			this.uxAddressLine4 = new System.Windows.Forms.TextBox();
			uxAddressLine4Label = new System.Windows.Forms.Label();
			this.uxSuburb = new System.Windows.Forms.TextBox();
			uxSuburbLabel = new System.Windows.Forms.Label();
			this.uxPostcode = new System.Windows.Forms.TextBox();
			uxPostcodeLabel = new System.Windows.Forms.Label();
			this.uxPhone1 = new System.Windows.Forms.TextBox();
			uxPhone1Label = new System.Windows.Forms.Label();
			this.uxPhone2 = new System.Windows.Forms.TextBox();
			uxPhone2Label = new System.Windows.Forms.Label();
			this.uxSourceSystem = new System.Windows.Forms.TextBox();
			uxSourceSystemLabel = new System.Windows.Forms.Label();
			this.uxPhoneticMatchId = new System.Windows.Forms.TextBox();
			uxPhoneticMatchIdLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxStudentIdLabel
			//
			this.uxStudentIdLabel.Name = "uxStudentIdLabel";
			this.uxStudentIdLabel.Text = "Student Id:";
			this.uxStudentIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxStudentIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentIdLabel);			
			//
			// uxStudentId
			//
			this.uxStudentId.Name = "uxStudentId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentId);
			this.uxStudentId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxStudentId);
			//
			// uxEpassIdLabel
			//
			this.uxEpassIdLabel.Name = "uxEpassIdLabel";
			this.uxEpassIdLabel.Text = "Epass Id:";
			this.uxEpassIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxEpassIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxEpassIdLabel);			
			//
			// uxEpassId
			//
			this.uxEpassId.Name = "uxEpassId";
			this.uxEpassId.Width = 250;
			this.uxEpassId.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxEpassId);
			this.uxEpassId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxEpassId);
			//
			// uxStudentUpnLabel
			//
			this.uxStudentUpnLabel.Name = "uxStudentUpnLabel";
			this.uxStudentUpnLabel.Text = "Student Upn:";
			this.uxStudentUpnLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxStudentUpnLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentUpnLabel);			
			//
			// uxStudentUpn
			//
			this.uxStudentUpn.Name = "uxStudentUpn";
			this.uxStudentUpn.Width = 250;
			this.uxStudentUpn.MaxLength = 13;
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentUpn);
			this.uxStudentUpn.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxStudentUpn);
			//
			// uxSsabsaIdLabel
			//
			this.uxSsabsaIdLabel.Name = "uxSsabsaIdLabel";
			this.uxSsabsaIdLabel.Text = "Ssabsa Id:";
			this.uxSsabsaIdLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxSsabsaIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSsabsaIdLabel);			
			//
			// uxSsabsaId
			//
			this.uxSsabsaId.Name = "uxSsabsaId";
			this.uxSsabsaId.Width = 250;
			this.uxSsabsaId.MaxLength = 100;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSsabsaId);
			this.uxSsabsaId.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxSsabsaId);
			//
			// uxSurnameLabel
			//
			this.uxSurnameLabel.Name = "uxSurnameLabel";
			this.uxSurnameLabel.Text = "Surname:";
			this.uxSurnameLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxSurnameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSurnameLabel);			
			//
			// uxSurname
			//
			this.uxSurname.Name = "uxSurname";
			this.uxSurname.Width = 250;
			this.uxSurname.MaxLength = 30;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSurname);
			this.uxSurname.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxSurname);
			//
			// uxFirstNameLabel
			//
			this.uxFirstNameLabel.Name = "uxFirstNameLabel";
			this.uxFirstNameLabel.Text = "First Name:";
			this.uxFirstNameLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxFirstNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxFirstNameLabel);			
			//
			// uxFirstName
			//
			this.uxFirstName.Name = "uxFirstName";
			this.uxFirstName.Width = 250;
			this.uxFirstName.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxFirstName);
			this.uxFirstName.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxFirstName);
			//
			// uxOtherNamesLabel
			//
			this.uxOtherNamesLabel.Name = "uxOtherNamesLabel";
			this.uxOtherNamesLabel.Text = "Other Names:";
			this.uxOtherNamesLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxOtherNamesLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxOtherNamesLabel);			
			//
			// uxOtherNames
			//
			this.uxOtherNames.Name = "uxOtherNames";
			this.uxOtherNames.Width = 250;
			this.uxOtherNames.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxOtherNames);
			this.uxOtherNames.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxOtherNames);
			//
			// uxKnownNameLabel
			//
			this.uxKnownNameLabel.Name = "uxKnownNameLabel";
			this.uxKnownNameLabel.Text = "Known Name:";
			this.uxKnownNameLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxKnownNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxKnownNameLabel);			
			//
			// uxKnownName
			//
			this.uxKnownName.Name = "uxKnownName";
			this.uxKnownName.Width = 250;
			this.uxKnownName.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxKnownName);
			this.uxKnownName.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxKnownName);
			//
			// uxLegalNameLabel
			//
			this.uxLegalNameLabel.Name = "uxLegalNameLabel";
			this.uxLegalNameLabel.Text = "Legal Name:";
			this.uxLegalNameLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxLegalNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLegalNameLabel);			
			//
			// uxLegalName
			//
			this.uxLegalName.Name = "uxLegalName";
			this.uxLegalName.Width = 250;
			this.uxLegalName.MaxLength = 30;
			//this.uxTableLayoutPanel.Controls.Add(this.uxLegalName);
			this.uxLegalName.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxLegalName);
			//
			// uxDobLabel
			//
			this.uxDobLabel.Name = "uxDobLabel";
			this.uxDobLabel.Text = "Dob:";
			this.uxDobLabel.Location = new System.Drawing.Point(3, 234);
			this.Controls.Add(this.uxDobLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxDobLabel);			
			//
			// uxDob
			//
			this.uxDob.Name = "uxDob";
			//this.uxTableLayoutPanel.Controls.Add(this.uxDob);
			this.uxDob.Location = new System.Drawing.Point(160, 234);
			this.Controls.Add(this.uxDob);
			//
			// uxGenderLabel
			//
			this.uxGenderLabel.Name = "uxGenderLabel";
			this.uxGenderLabel.Text = "Gender:";
			this.uxGenderLabel.Location = new System.Drawing.Point(3, 260);
			this.Controls.Add(this.uxGenderLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxGenderLabel);			
			//
			// uxGender
			//
			this.uxGender.Name = "uxGender";
			this.uxGender.Width = 250;
			this.uxGender.MaxLength = 6;
			//this.uxTableLayoutPanel.Controls.Add(this.uxGender);
			this.uxGender.Location = new System.Drawing.Point(160, 260);
			this.Controls.Add(this.uxGender);
			//
			// uxIndigeneousStatusLabel
			//
			this.uxIndigeneousStatusLabel.Name = "uxIndigeneousStatusLabel";
			this.uxIndigeneousStatusLabel.Text = "Indigeneous Status:";
			this.uxIndigeneousStatusLabel.Location = new System.Drawing.Point(3, 286);
			this.Controls.Add(this.uxIndigeneousStatusLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxIndigeneousStatusLabel);			
			//
			// uxIndigeneousStatus
			//
			this.uxIndigeneousStatus.Name = "uxIndigeneousStatus";
			this.uxIndigeneousStatus.Width = 250;
			this.uxIndigeneousStatus.MaxLength = 40;
			//this.uxTableLayoutPanel.Controls.Add(this.uxIndigeneousStatus);
			this.uxIndigeneousStatus.Location = new System.Drawing.Point(160, 286);
			this.Controls.Add(this.uxIndigeneousStatus);
			//
			// uxLboteLabel
			//
			this.uxLboteLabel.Name = "uxLboteLabel";
			this.uxLboteLabel.Text = "Lbote:";
			this.uxLboteLabel.Location = new System.Drawing.Point(3, 312);
			this.Controls.Add(this.uxLboteLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLboteLabel);			
			//
			// uxLbote
			//
			this.uxLbote.Name = "uxLbote";
			this.uxLbote.Width = 250;
			this.uxLbote.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxLbote);
			this.uxLbote.Location = new System.Drawing.Point(160, 312);
			this.Controls.Add(this.uxLbote);
			//
			// uxEslPhaseLabel
			//
			this.uxEslPhaseLabel.Name = "uxEslPhaseLabel";
			this.uxEslPhaseLabel.Text = "Esl Phase:";
			this.uxEslPhaseLabel.Location = new System.Drawing.Point(3, 338);
			this.Controls.Add(this.uxEslPhaseLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxEslPhaseLabel);			
			//
			// uxEslPhase
			//
			this.uxEslPhase.Name = "uxEslPhase";
			this.uxEslPhase.Width = 250;
			this.uxEslPhase.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxEslPhase);
			this.uxEslPhase.Location = new System.Drawing.Point(160, 338);
			this.Controls.Add(this.uxEslPhase);
			//
			// uxTribalGroupLabel
			//
			this.uxTribalGroupLabel.Name = "uxTribalGroupLabel";
			this.uxTribalGroupLabel.Text = "Tribal Group:";
			this.uxTribalGroupLabel.Location = new System.Drawing.Point(3, 364);
			this.Controls.Add(this.uxTribalGroupLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTribalGroupLabel);			
			//
			// uxTribalGroup
			//
			this.uxTribalGroup.Name = "uxTribalGroup";
			this.uxTribalGroup.Width = 250;
			this.uxTribalGroup.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxTribalGroup);
			this.uxTribalGroup.Location = new System.Drawing.Point(160, 364);
			this.Controls.Add(this.uxTribalGroup);
			//
			// uxSlpCreatedFlagLabel
			//
			this.uxSlpCreatedFlagLabel.Name = "uxSlpCreatedFlagLabel";
			this.uxSlpCreatedFlagLabel.Text = "Slp Created Flag:";
			this.uxSlpCreatedFlagLabel.Location = new System.Drawing.Point(3, 390);
			this.Controls.Add(this.uxSlpCreatedFlagLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSlpCreatedFlagLabel);			
			//
			// uxSlpCreatedFlag
			//
			this.uxSlpCreatedFlag.Name = "uxSlpCreatedFlag";
			this.uxSlpCreatedFlag.Width = 250;
			this.uxSlpCreatedFlag.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSlpCreatedFlag);
			this.uxSlpCreatedFlag.Location = new System.Drawing.Point(160, 390);
			this.Controls.Add(this.uxSlpCreatedFlag);
			//
			// uxAddressLine1Label
			//
			this.uxAddressLine1Label.Name = "uxAddressLine1Label";
			this.uxAddressLine1Label.Text = "Address Line1:";
			this.uxAddressLine1Label.Location = new System.Drawing.Point(3, 416);
			this.Controls.Add(this.uxAddressLine1Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine1Label);			
			//
			// uxAddressLine1
			//
			this.uxAddressLine1.Name = "uxAddressLine1";
			this.uxAddressLine1.Width = 250;
			this.uxAddressLine1.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine1);
			this.uxAddressLine1.Location = new System.Drawing.Point(160, 416);
			this.Controls.Add(this.uxAddressLine1);
			//
			// uxAddressLine2Label
			//
			this.uxAddressLine2Label.Name = "uxAddressLine2Label";
			this.uxAddressLine2Label.Text = "Address Line2:";
			this.uxAddressLine2Label.Location = new System.Drawing.Point(3, 442);
			this.Controls.Add(this.uxAddressLine2Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine2Label);			
			//
			// uxAddressLine2
			//
			this.uxAddressLine2.Name = "uxAddressLine2";
			this.uxAddressLine2.Width = 250;
			this.uxAddressLine2.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine2);
			this.uxAddressLine2.Location = new System.Drawing.Point(160, 442);
			this.Controls.Add(this.uxAddressLine2);
			//
			// uxAddressLine3Label
			//
			this.uxAddressLine3Label.Name = "uxAddressLine3Label";
			this.uxAddressLine3Label.Text = "Address Line3:";
			this.uxAddressLine3Label.Location = new System.Drawing.Point(3, 468);
			this.Controls.Add(this.uxAddressLine3Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine3Label);			
			//
			// uxAddressLine3
			//
			this.uxAddressLine3.Name = "uxAddressLine3";
			this.uxAddressLine3.Width = 250;
			this.uxAddressLine3.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine3);
			this.uxAddressLine3.Location = new System.Drawing.Point(160, 468);
			this.Controls.Add(this.uxAddressLine3);
			//
			// uxAddressLine4Label
			//
			this.uxAddressLine4Label.Name = "uxAddressLine4Label";
			this.uxAddressLine4Label.Text = "Address Line4:";
			this.uxAddressLine4Label.Location = new System.Drawing.Point(3, 494);
			this.Controls.Add(this.uxAddressLine4Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine4Label);			
			//
			// uxAddressLine4
			//
			this.uxAddressLine4.Name = "uxAddressLine4";
			this.uxAddressLine4.Width = 250;
			this.uxAddressLine4.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine4);
			this.uxAddressLine4.Location = new System.Drawing.Point(160, 494);
			this.Controls.Add(this.uxAddressLine4);
			//
			// uxSuburbLabel
			//
			this.uxSuburbLabel.Name = "uxSuburbLabel";
			this.uxSuburbLabel.Text = "Suburb:";
			this.uxSuburbLabel.Location = new System.Drawing.Point(3, 520);
			this.Controls.Add(this.uxSuburbLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSuburbLabel);			
			//
			// uxSuburb
			//
			this.uxSuburb.Name = "uxSuburb";
			this.uxSuburb.Width = 250;
			this.uxSuburb.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSuburb);
			this.uxSuburb.Location = new System.Drawing.Point(160, 520);
			this.Controls.Add(this.uxSuburb);
			//
			// uxPostcodeLabel
			//
			this.uxPostcodeLabel.Name = "uxPostcodeLabel";
			this.uxPostcodeLabel.Text = "Postcode:";
			this.uxPostcodeLabel.Location = new System.Drawing.Point(3, 546);
			this.Controls.Add(this.uxPostcodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPostcodeLabel);			
			//
			// uxPostcode
			//
			this.uxPostcode.Name = "uxPostcode";
			this.uxPostcode.Width = 250;
			this.uxPostcode.MaxLength = 4;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPostcode);
			this.uxPostcode.Location = new System.Drawing.Point(160, 546);
			this.Controls.Add(this.uxPostcode);
			//
			// uxPhone1Label
			//
			this.uxPhone1Label.Name = "uxPhone1Label";
			this.uxPhone1Label.Text = "Phone1:";
			this.uxPhone1Label.Location = new System.Drawing.Point(3, 572);
			this.Controls.Add(this.uxPhone1Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone1Label);			
			//
			// uxPhone1
			//
			this.uxPhone1.Name = "uxPhone1";
			this.uxPhone1.Width = 250;
			this.uxPhone1.MaxLength = 10;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone1);
			this.uxPhone1.Location = new System.Drawing.Point(160, 572);
			this.Controls.Add(this.uxPhone1);
			//
			// uxPhone2Label
			//
			this.uxPhone2Label.Name = "uxPhone2Label";
			this.uxPhone2Label.Text = "Phone2:";
			this.uxPhone2Label.Location = new System.Drawing.Point(3, 598);
			this.Controls.Add(this.uxPhone2Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone2Label);			
			//
			// uxPhone2
			//
			this.uxPhone2.Name = "uxPhone2";
			this.uxPhone2.Width = 250;
			this.uxPhone2.MaxLength = 10;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone2);
			this.uxPhone2.Location = new System.Drawing.Point(160, 598);
			this.Controls.Add(this.uxPhone2);
			//
			// uxSourceSystemLabel
			//
			this.uxSourceSystemLabel.Name = "uxSourceSystemLabel";
			this.uxSourceSystemLabel.Text = "Source System:";
			this.uxSourceSystemLabel.Location = new System.Drawing.Point(3, 624);
			this.Controls.Add(this.uxSourceSystemLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSourceSystemLabel);			
			//
			// uxSourceSystem
			//
			this.uxSourceSystem.Name = "uxSourceSystem";
			this.uxSourceSystem.Width = 250;
			this.uxSourceSystem.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSourceSystem);
			this.uxSourceSystem.Location = new System.Drawing.Point(160, 624);
			this.Controls.Add(this.uxSourceSystem);
			//
			// uxPhoneticMatchIdLabel
			//
			this.uxPhoneticMatchIdLabel.Name = "uxPhoneticMatchIdLabel";
			this.uxPhoneticMatchIdLabel.Text = "Phonetic Match Id:";
			this.uxPhoneticMatchIdLabel.Location = new System.Drawing.Point(3, 650);
			this.Controls.Add(this.uxPhoneticMatchIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhoneticMatchIdLabel);			
			//
			// uxPhoneticMatchId
			//
			this.uxPhoneticMatchId.Name = "uxPhoneticMatchId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhoneticMatchId);
			this.uxPhoneticMatchId.Location = new System.Drawing.Point(160, 650);
			this.Controls.Add(this.uxPhoneticMatchId);
			// 
			// StudentMasterIndexEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "StudentMasterIndexEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.sp001BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBankMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmantaMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.ccbeSarfType = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.cDSarfTypeedadBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.ccbeDof = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.tBLDofatSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tBLDofatSarfTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.TBLDofatSarfTableAdapter();
     this.dxvp = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.sp_001TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.sp_001TableAdapter();
     this.cDSarfTypeedadTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSarfTypeedadTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.sp001BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(12, 38);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(914, 523);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // sp001BindingSource
     //
     this.sp001BindingSource.DataMember = "sp_001";
     this.sp001BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTotal,
     this.colBankMoney,
     this.colAmantaMoney,
     this.colMMashatId,
     this.colpersonName,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colTotal
     //
     this.colTotal.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.Caption = "اجمالي الدفعات";
     this.colTotal.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal.FieldName = "Total";
     this.colTotal.Name = "colTotal";
     this.colTotal.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", "{0:0.##}")});
     this.colTotal.Visible = true;
     this.colTotal.VisibleIndex = 4;
     this.colTotal.Width = 91;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // colBankMoney
     //
     this.colBankMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.Caption = "اجمالي البنك";
     this.colBankMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colBankMoney.FieldName = "BankMoney";
     this.colBankMoney.Name = "colBankMoney";
     this.colBankMoney.OptionsColumn.ReadOnly = true;
     this.colBankMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "BankMoney", "{0:0.##}")});
     this.colBankMoney.Visible = true;
     this.colBankMoney.VisibleIndex = 5;
     this.colBankMoney.Width = 79;
     //
     // colAmantaMoney
     //
     this.colAmantaMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.Caption = "اجمالي الامانات";
     this.colAmantaMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colAmantaMoney.FieldName = "AmantaMoney";
     this.colAmantaMoney.Name = "colAmantaMoney";
     this.colAmantaMoney.OptionsColumn.ReadOnly = true;
     this.colAmantaMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "AmantaMoney", "{0:0.##}")});
     this.colAmantaMoney.Visible = true;
     this.colAmantaMoney.VisibleIndex = 6;
     this.colAmantaMoney.Width = 90;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "MMashatName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 2;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 3;
     //
     // btnSearch
     //
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.Image = global::RetirementCenter.Properties.Resources.apply_16x16;
     this.btnSearch.Location = new System.Drawing.Point(252, 12);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(114, 22);
     this.btnSearch.StyleController = this.layoutControl1;
     this.btnSearch.TabIndex = 4;
     this.btnSearch.Text = "تنفيذ";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ccbeSarfType);
     this.layoutControl1.Controls.Add(this.ccbeDof);
     this.layoutControl1.Controls.Add(this.btnSearch);
     this.layoutControl1.Controls.Add(this.btnPrintExport);
     this.layoutControl1.Controls.Add(this.gridControlData);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(982, 382, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(938, 573);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // ccbeSarfType
     //
     this.ccbeSarfType.Location = new System.Drawing.Point(370, 12);
     this.ccbeSarfType.Name = "ccbeSarfType";
     this.ccbeSarfType.Properties.AllowMultiSelect = true;
     this.ccbeSarfType.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeSarfType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeSarfType.Properties.DataSource = this.cDSarfTypeedadBindingSource;
     this.ccbeSarfType.Properties.DisplayMember = "SarfTypeedad";
     this.ccbeSarfType.Properties.ValueMember = "SarfTypeedadId";
     this.ccbeSarfType.Size = new System.Drawing.Size(205, 20);
     this.ccbeSarfType.StyleController = this.layoutControl1;
     this.ccbeSarfType.TabIndex = 5;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeSarfType, conditionValidationRule1);
     this.ccbeSarfType.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // cDSarfTypeedadBindingSource
     //
     this.cDSarfTypeedadBindingSource.DataMember = "CDSarfTypeedad";
     this.cDSarfTypeedadBindingSource.DataSource = this.dsQueries;
     //
     // ccbeDof
     //
     this.ccbeDof.Location = new System.Drawing.Point(611, 12);
     this.ccbeDof.Name = "ccbeDof";
     this.ccbeDof.Properties.AllowMultiSelect = true;
     this.ccbeDof.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeDof.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeDof.Properties.DataSource = this.tBLDofatSarfBindingSource;
     this.ccbeDof.Properties.DisplayMember = "DofatSarf";
     this.ccbeDof.Properties.ValueMember = "DofatSarfId";
     this.ccbeDof.Size = new System.Drawing.Size(283, 20);
     this.ccbeDof.StyleController = this.layoutControl1;
     this.ccbeDof.TabIndex = 5;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeDof, conditionValidationRule2);
     this.ccbeDof.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // tBLDofatSarfBindingSource
     //
     this.tBLDofatSarfBindingSource.DataMember = "TBLDofatSarf";
     this.tBLDofatSarfBindingSource.DataSource = this.dsQueries;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Image = global::RetirementCenter.Properties.Resources.Print;
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(94, 22);
     this.btnPrintExport.StyleController = this.layoutControl1;
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(938, 573);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSearch;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(240, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(118, 26);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnPrintExport;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(98, 26);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.gridControlData;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(918, 527);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(98, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(142, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.layoutControlItem5.Control = this.ccbeDof;
     this.layoutControlItem5.CustomizationFormText = "الدفعة";
     this.layoutControlItem5.Location = new System.Drawing.Point(599, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(319, 26);
     this.layoutControlItem5.Text = "الدفعة";
     this.layoutControlItem5.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(29, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem1.Control = this.ccbeSarfType;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(358, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(241, 26);
     this.layoutControlItem1.Text = "النوع";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(29, 13);
     //
     // tBLDofatSarfTableAdapter
     //
     this.tBLDofatSarfTableAdapter.ClearBeforeFill = true;
     //
     // sp_001TableAdapter
     //
     this.sp_001TableAdapter.ClearBeforeFill = true;
     //
     // cDSarfTypeedadTableAdapter
     //
     this.cDSarfTypeedadTableAdapter.ClearBeforeFill = true;
     //
     // Qry101Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(938, 573);
     this.Controls.Add(this.layoutControl1);
     this.Name = "Qry101Frm";
     this.Text = "اجمالي الدفعات و الامانات و البنك - ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable1});
     this.Detail.HeightF = 32F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(739.9999F, 32F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell1,
     this.xrTableCell2,
     this.xrTableCell3,
     this.xrTableCell4,
     this.xrTableCell5,
     this.xrTableCell7,
     this.xrTableCell8,
     this.xrTableCell9,
     this.xrTableCell10});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 1, 0, 0, 100F);
     this.xrTableRow1.StylePriority.UsePadding = false;
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryReferenceNumber")});
     this.xrTableCell1.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell1.StylePriority.UseFont = false;
     this.xrTableCell1.StylePriority.UsePadding = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "xrTableCell1";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell1.Weight = 0.41959902958198836D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Date")});
     this.xrTableCell2.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseFont = false;
     this.xrTableCell2.StylePriority.UsePadding = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text = "xrTableCell2";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight = 0.4152275038708616D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryOrderNumber")});
     this.xrTableCell3.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell3.StylePriority.UseFont = false;
     this.xrTableCell3.StylePriority.UsePadding = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text = "xrTableCell3";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell3.Weight = 0.43263328792440364D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "VehiclePlateNumber")});
     this.xrTableCell4.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UseFont = false;
     this.xrTableCell4.StylePriority.UsePadding = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text = "xrTableCell4";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight = 0.42288092680410844D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "WareHouseNumber")});
     this.xrTableCell5.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell5.StylePriority.UseFont = false;
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell5.Weight = 0.28815700944980671D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryQuantity")});
     this.xrTableCell7.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text = "xrTableCell7";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell7.Weight = 0.5433871099480021D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryBag")});
     this.xrTableCell8.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UsePadding = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "xrTableCell8";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell8.Weight = 0.41959961287783537D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryNet")});
     this.xrTableCell9.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.StylePriority.UsePadding = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell9.Weight = 0.415227358005694D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Project")});
     this.xrTableCell10.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell10.StylePriority.UseFont = false;
     this.xrTableCell10.StylePriority.UsePadding = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text = "xrTableCell10";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell10.Weight = 0.436843286637451D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 54.16667F;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 26.62503F;
     this.BottomMargin.Name = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable2,
     this.xrTable4,
     this.xrTable3});
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("SINumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.GroupHeader1.HeightF = 240.2084F;
     this.GroupHeader1.Level = 1;
     this.GroupHeader1.Name = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrTable2
     //
     this.xrTable2.BackColor = System.Drawing.Color.Gainsboro;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 173.5417F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(740F, 66.66667F);
     this.xrTable2.StylePriority.UseBackColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell14,
     this.xrTableCell15,
     this.xrTableCell16,
     this.xrTableCell17,
     this.xrTableCell18,
     this.xrTableCell20,
     this.xrTableCell21,
     this.xrTableCell22,
     this.xrTableCell24});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell14.Multiline = true;
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseFont = false;
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text = "Delivery Reference Number";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell14.Weight = 0.41959899756296148D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell15.Multiline = true;
     this.xrTableCell15.Name = "xrTableCell15";
     this.xrTableCell15.StylePriority.UseFont = false;
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text = "Delivery\r\nDate";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell15.Weight = 0.415227439832808D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell16.Multiline = true;
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseFont = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text = "Delivery\r\n Order\r\nNumber";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell16.Weight = 0.43263327371022736D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell17.Multiline = true;
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseFont = false;
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text = "Vehicle \r\nPlate \r\nNumber";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell17.Weight = 0.42288114111256025D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell18.Multiline = true;
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseFont = false;
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text = "Ware\r\nHouse NO";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell18.Weight = 0.28815667065655237D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.StylePriority.UseFont = false;
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text = "Delivery Quantity";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell20.Weight = 0.54338744076114187D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell21.Multiline = true;
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseFont = false;
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "Delivery\r\nBag";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell21.Weight = 0.41959935672562088D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Font = new System.Drawing.Font("Verdana", 9.75F);
     this.xrTableCell22.Multiline = true;
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.StylePriority.UseFont = false;
     this.xrTableCell22.StylePriority.UseTextAlignment = false;
     this.xrTableCell22.Text = "Delivery Net";
     this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell22.Weight = 0.415227358005694D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell24.Multiline = true;
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.StylePriority.UseFont = false;
     this.xrTableCell24.StylePriority.UseTextAlignment = false;
     this.xrTableCell24.Text = "Project";
     this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell24.Weight = 0.43684344673258524D;
     //
     // xrTable4
     //
     this.xrTable4.BorderColor = System.Drawing.Color.Transparent;
     this.xrTable4.Font = new System.Drawing.Font("Verdana", 9F);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(389.9583F, 9.999981F);
     this.xrTable4.Name = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow6,
     this.xrTableRow7,
     this.xrTableRow8,
     this.xrTableRow11,
     this.xrTableRow12});
     this.xrTable4.SizeF = new System.Drawing.SizeF(351.0417F, 140.625F);
     this.xrTable4.StylePriority.UseBorderColor = false;
     this.xrTable4.StylePriority.UseFont = false;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell28,
     this.xrTableCell29,
     this.xrTableCell30});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.Name = "xrTableCell28";
     this.xrTableCell28.Text = "Commodity";
     this.xrTableCell28.Weight = 0.84411335785456543D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.Weight = 0.070519255014212412D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Commodity")});
     this.xrTableCell30.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.StylePriority.UseFont = false;
     this.xrTableCell30.Text = "xrTableCell30";
     this.xrTableCell30.Weight = 1.0873477107705969D;
     //
     // xrTableRow7
     //
     this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell31,
     this.xrTableCell32,
     this.xrTableCell33});
     this.xrTableRow7.Name = "xrTableRow7";
     this.xrTableRow7.Weight = 1D;
     //
     // xrTableCell31
     //
     this.xrTableCell31.Name = "xrTableCell31";
     this.xrTableCell31.Text = "Sub Commodity";
     this.xrTableCell31.Weight = 0.84411335785456543D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.Weight = 0.070519255014212412D;
     //
     // xrTableCell33
     //
     this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "SubCommodity")});
     this.xrTableCell33.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell33.Name = "xrTableCell33";
     this.xrTableCell33.StylePriority.UseFont = false;
     this.xrTableCell33.Text = "xrTableCell33";
     this.xrTableCell33.Weight = 1.0873477107705969D;
     //
     // xrTableRow8
     //
     this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell34,
     this.xrTableCell35,
     this.xrTableCell36});
     this.xrTableRow8.Name = "xrTableRow8";
     this.xrTableRow8.Weight = 1D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.Text = "Ware House Category";
     this.xrTableCell34.Weight = 0.84411335785456543D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.Weight = 0.070519255014212412D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "HubOwner")});
     this.xrTableCell36.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.StylePriority.UseFont = false;
     this.xrTableCell36.Text = "xrTableCell36";
     this.xrTableCell36.Weight = 1.0873477107705969D;
     //
     // xrTableRow11
     //
     this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell43,
     this.xrTableCell44,
     this.xrTableCell45});
     this.xrTableRow11.Name = "xrTableRow11";
     this.xrTableRow11.Weight = 1D;
     //
     // xrTableCell43
     //
     this.xrTableCell43.Name = "xrTableCell43";
     this.xrTableCell43.Text = "Shipped by";
     this.xrTableCell43.Weight = 0.84411335785456543D;
     //
     // xrTableCell44
     //
     this.xrTableCell44.Name = "xrTableCell44";
     this.xrTableCell44.Weight = 0.070519255014212412D;
     //
     // xrTableCell45
     //
     this.xrTableCell45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "ShippedBy")});
     this.xrTableCell45.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell45.Name = "xrTableCell45";
     this.xrTableCell45.StylePriority.UseFont = false;
     this.xrTableCell45.Text = "xrTableCell45";
     this.xrTableCell45.Weight = 1.0873477107705969D;
     //
     // xrTableRow12
     //
     this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell46,
     this.xrTableCell47,
     this.xrTableCell48});
     this.xrTableRow12.Name = "xrTableRow12";
     this.xrTableRow12.Weight = 1D;
     //
     // xrTableCell46
     //
     this.xrTableCell46.Name = "xrTableCell46";
     this.xrTableCell46.Text = "Delivery Type";
     this.xrTableCell46.Weight = 0.84411335785456543D;
     //
     // xrTableCell47
     //
     this.xrTableCell47.Name = "xrTableCell47";
     this.xrTableCell47.Weight = 0.070519255014212412D;
     //
     // xrTableCell48
     //
     this.xrTableCell48.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryType")});
     this.xrTableCell48.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell48.Name = "xrTableCell48";
     this.xrTableCell48.StylePriority.UseFont = false;
     this.xrTableCell48.Text = "xrTableCell48";
     this.xrTableCell48.Weight = 1.0873477107705969D;
     //
     // xrTable3
     //
     this.xrTable3.BorderColor = System.Drawing.Color.Transparent;
     this.xrTable3.Font = new System.Drawing.Font("Verdana", 9F);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(10F, 10F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow3,
     this.xrTableRow4,
     this.xrTableRow5,
     this.xrTableRow10,
     this.xrTableRow9});
     this.xrTable3.SizeF = new System.Drawing.SizeF(351.0417F, 140.625F);
     this.xrTable3.StylePriority.UseBorderColor = false;
     this.xrTable3.StylePriority.UseFont = false;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell6,
     this.xrTableCell11,
     this.xrTableCell12});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.Text = "Hub";
     this.xrTableCell6.Weight = 0.43564359065916924D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.Weight = 0.075028218139158276D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Hub")});
     this.xrTableCell12.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseFont = false;
     this.xrTableCell12.Text = "xrTableCell12";
     this.xrTableCell12.Weight = 1.4913085148410472D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell13,
     this.xrTableCell19,
     this.xrTableCell23});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Text = "SI Number";
     this.xrTableCell13.Weight = 0.43564359065916924D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.Weight = 0.075028218139158276D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "SINumber")});
     this.xrTableCell23.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.StylePriority.UseFont = false;
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.Weight = 1.4913085148410472D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell25,
     this.xrTableCell26,
     this.xrTableCell27});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.Text = "Vessel";
     this.xrTableCell25.Weight = 0.43564359065916924D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.Weight = 0.075028218139158276D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Vessel")});
     this.xrTableCell27.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.StylePriority.UseFont = false;
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.Weight = 1.4913085148410472D;
     //
     // xrTableRow10
     //
     this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell40,
     this.xrTableCell41,
     this.xrTableCell42});
     this.xrTableRow10.Name = "xrTableRow10";
     this.xrTableRow10.Weight = 1D;
     //
     // xrTableCell40
     //
     this.xrTableCell40.Name = "xrTableCell40";
     this.xrTableCell40.Text = "Port";
     this.xrTableCell40.Weight = 0.43564359065916924D;
     //
     // xrTableCell41
     //
     this.xrTableCell41.Name = "xrTableCell41";
     this.xrTableCell41.Weight = 0.075028218139158276D;
     //
     // xrTableCell42
     //
     this.xrTableCell42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "PortName")});
     this.xrTableCell42.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell42.Name = "xrTableCell42";
     this.xrTableCell42.StylePriority.UseFont = false;
     this.xrTableCell42.Text = "xrTableCell42";
     this.xrTableCell42.Weight = 1.4913085148410472D;
     //
     // xrTableRow9
     //
     this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell37,
     this.xrTableCell38,
     this.xrTableCell39});
     this.xrTableRow9.Name = "xrTableRow9";
     this.xrTableRow9.Weight = 1D;
     //
     // xrTableCell37
     //
     this.xrTableCell37.Name = "xrTableCell37";
     this.xrTableCell37.Text = "Donor";
     this.xrTableCell37.Weight = 0.43564359065916924D;
     //
     // xrTableCell38
     //
     this.xrTableCell38.Name = "xrTableCell38";
     this.xrTableCell38.Weight = 0.075028218139158276D;
     //
     // xrTableCell39
     //
     this.xrTableCell39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Donor")});
     this.xrTableCell39.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell39.Name = "xrTableCell39";
     this.xrTableCell39.StylePriority.UseFont = false;
     this.xrTableCell39.Text = "xrTableCell39";
     this.xrTableCell39.Weight = 1.4913085148410472D;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel1});
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("TransportedBy", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.GroupHeader2.HeightF = 26.04167F;
     this.GroupHeader2.Name = "GroupHeader2";
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.Color.Wheat;
     this.xrLabel1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TransportedBy")});
     this.xrLabel1.Font = new System.Drawing.Font("Verdana", 9.75F);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(739.9999F, 26.04167F);
     this.xrLabel1.StylePriority.UseBackColor = false;
     this.xrLabel1.StylePriority.UseBorders = false;
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "xrLabel1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable5});
     this.GroupFooter1.HeightF = 32F;
     this.GroupFooter1.Name = "GroupFooter1";
     //
     // xrTable5
     //
     this.xrTable5.BackColor = System.Drawing.Color.Gainsboro;
     this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable5.Name = "xrTable5";
     this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow13});
     this.xrTable5.SizeF = new System.Drawing.SizeF(739.9999F, 32F);
     this.xrTable5.StylePriority.UseBackColor = false;
     this.xrTable5.StylePriority.UseBorders = false;
     //
     // xrTableRow13
     //
     this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell53,
     this.xrTableCell54,
     this.xrTableCell55,
     this.xrTableCell56,
     this.xrTableCell57});
     this.xrTableRow13.Name = "xrTableRow13";
     this.xrTableRow13.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 1, 0, 0, 100F);
     this.xrTableRow13.StylePriority.UsePadding = false;
     this.xrTableRow13.Weight = 1D;
     //
     // xrTableCell53
     //
     this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TransportedBy")});
     this.xrTableCell53.Font = new System.Drawing.Font("Verdana", 9.75F);
     this.xrTableCell53.Name = "xrTableCell53";
     this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell53.StylePriority.UseFont = false;
     this.xrTableCell53.StylePriority.UsePadding = false;
     this.xrTableCell53.StylePriority.UseTextAlignment = false;
     this.xrTableCell53.Text = "xrTableCell53";
     this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell53.Weight = 1.9784979246479357D;
     //
     // xrTableCell54
     //
     this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryQuantity")});
     this.xrTableCell54.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell54.Name = "xrTableCell54";
     this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell54.StylePriority.UseFont = false;
     this.xrTableCell54.StylePriority.UsePadding = false;
     this.xrTableCell54.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:#,###.###}";
     xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell54.Summary = xrSummary1;
     this.xrTableCell54.Text = "xrTableCell54";
     this.xrTableCell54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell54.Weight = 0.54338694293123524D;
     //
     // xrTableCell55
     //
     this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryBag")});
     this.xrTableCell55.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell55.Multiline = true;
     this.xrTableCell55.Name = "xrTableCell55";
     this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell55.StylePriority.UseFont = false;
     this.xrTableCell55.StylePriority.UsePadding = false;
     this.xrTableCell55.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:#,###.###}";
     xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell55.Summary = xrSummary2;
     this.xrTableCell55.Text = "xrTableCell55";
     this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell55.Weight = 0.41959961287783537D;
     //
     // xrTableCell56
     //
     this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryNet")});
     this.xrTableCell56.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell56.Name = "xrTableCell56";
     this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell56.StylePriority.UseFont = false;
     this.xrTableCell56.StylePriority.UsePadding = false;
     this.xrTableCell56.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:#,###.###}";
     xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell56.Summary = xrSummary3;
     this.xrTableCell56.Text = "xrTableCell56";
     this.xrTableCell56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell56.Weight = 0.41522706652555974D;
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable6});
     this.GroupFooter2.HeightF = 32F;
     this.GroupFooter2.Level = 1;
     this.GroupFooter2.Name = "GroupFooter2";
     this.GroupFooter2.PageBreak = DevExpress.XtraReports.UI.PageBreak.AfterBand;
     //
     // xrTable6
     //
     this.xrTable6.BackColor = System.Drawing.Color.Wheat;
     this.xrTable6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable6.Name = "xrTable6";
     this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow14});
     this.xrTable6.SizeF = new System.Drawing.SizeF(739.9999F, 32F);
     this.xrTable6.StylePriority.UseBackColor = false;
     this.xrTable6.StylePriority.UseBorders = false;
     //
     // xrTableRow14
     //
     this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell49,
     this.xrTableCell50,
     this.xrTableCell51,
     this.xrTableCell52,
     this.xrTableCell58});
     this.xrTableRow14.Name = "xrTableRow14";
     this.xrTableRow14.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 1, 0, 0, 100F);
     this.xrTableRow14.StylePriority.UsePadding = false;
     this.xrTableRow14.Weight = 1D;
     //
     // xrTableCell49
     //
     this.xrTableCell49.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTableCell49.Name = "xrTableCell49";
     this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 1, 0, 0, 100F);
     this.xrTableCell49.StylePriority.UseFont = false;
     this.xrTableCell49.StylePriority.UsePadding = false;
     this.xrTableCell49.StylePriority.UseTextAlignment = false;
     this.xrTableCell49.Text = "Grand Total ";
     this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell49.Weight = 1.9784979094586364D;
     //
     // xrTableCell50
     //
     this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryQuantity")});
     this.xrTableCell50.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell50.Name = "xrTableCell50";
     this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell50.StylePriority.UseFont = false;
     this.xrTableCell50.StylePriority.UsePadding = false;
     this.xrTableCell50.StylePriority.UseTextAlignment = false;
     xrSummary4.FormatString = "{0:#,###.###}";
     xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell50.Summary = xrSummary4;
     this.xrTableCell50.Text = "xrTableCell54";
     this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell50.Weight = 0.5433869581205345D;
     //
     // xrTableCell51
     //
     this.xrTableCell51.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryBag")});
     this.xrTableCell51.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell51.Multiline = true;
     this.xrTableCell51.Name = "xrTableCell51";
     this.xrTableCell51.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell51.StylePriority.UseFont = false;
     this.xrTableCell51.StylePriority.UsePadding = false;
     this.xrTableCell51.StylePriority.UseTextAlignment = false;
     xrSummary5.FormatString = "{0:#,###.###}";
     xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell51.Summary = xrSummary5;
     this.xrTableCell51.Text = "xrTableCell55";
     this.xrTableCell51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell51.Weight = 0.41959961287783537D;
     //
     // xrTableCell52
     //
     this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "DeliveryNet")});
     this.xrTableCell52.Font = new System.Drawing.Font("Verdana", 8F);
     this.xrTableCell52.Name = "xrTableCell52";
     this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(1, 2, 0, 0, 100F);
     this.xrTableCell52.StylePriority.UseFont = false;
     this.xrTableCell52.StylePriority.UsePadding = false;
     this.xrTableCell52.StylePriority.UseTextAlignment = false;
     xrSummary6.FormatString = "{0:#,###.###}";
     xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell52.Summary = xrSummary6;
     this.xrTableCell52.Text = "xrTableCell56";
     this.xrTableCell52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell52.Weight = 0.41522769231001622D;
     //
     // xrTableCell57
     //
     this.xrTableCell57.Name = "xrTableCell57";
     this.xrTableCell57.Weight = 0.436843265225357D;
     //
     // xrTableCell58
     //
     this.xrTableCell58.Name = "xrTableCell58";
     this.xrTableCell58.Weight = 0.43684263944090052D;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(Cats.Models.Hub.ViewModels.Report.Data.DeliveryRows);
     //
     // DonationReportByProgram
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.TopMargin,
     this.BottomMargin,
     this.GroupHeader1,
     this.GroupHeader2,
     this.GroupFooter1,
     this.GroupFooter2});
     this.DataSource = this.bindingSource1;
     this.Margins = new System.Drawing.Printing.Margins(49, 50, 54, 27);
     this.Version = "10.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <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(frmXuatNhapTon));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtKhoHang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kHOHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsKho = new Do_An_Quan_Ly_Kho.Kho.DS.dsKho();
     this.txtKhoHang_View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDien_Thoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDi_Dong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThu_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.xuatNhapTonTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsXuatNhapTon = new Do_An_Quan_Ly_Kho.XuatNhapTon.DataSet.dsXuatNhapTon();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSo_Luong_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Nhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.kHO_HANGTableAdapter = new Do_An_Quan_Ly_Kho.Kho.DS.dsKhoTableAdapters.KHO_HANGTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon.png");
     this.img.Images.SetKeyName(55, "Excel-icon (1).png");
     this.img.Images.SetKeyName(56, "Excel-icon (2).png");
     this.img.Images.SetKeyName(57, "Excel-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiSua, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiXoa, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 55;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtKhoHang);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtKhoHang
     //
     this.txtKhoHang.EditValue = "";
     this.txtKhoHang.Location = new System.Drawing.Point(55, 2);
     this.txtKhoHang.MenuManager = this.bm;
     this.txtKhoHang.Name = "txtKhoHang";
     this.txtKhoHang.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.txtKhoHang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtKhoHang.Properties.DataSource = this.kHOHANGBindingSource;
     this.txtKhoHang.Properties.DisplayMember = "Ten_Kho";
     this.txtKhoHang.Properties.NullText = "";
     this.txtKhoHang.Properties.NullValuePrompt = "(Kho Hàng)";
     this.txtKhoHang.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtKhoHang.Properties.ValueMember = "Ma_Kho";
     this.txtKhoHang.Properties.View = this.txtKhoHang_View;
     this.txtKhoHang.Size = new System.Drawing.Size(121, 20);
     this.txtKhoHang.StyleController = this.layoutControl1;
     this.txtKhoHang.TabIndex = 9;
     this.txtKhoHang.EditValueChanged += new System.EventHandler(this.txtKhoHang_EditValueChanged);
     //
     // kHOHANGBindingSource
     //
     this.kHOHANGBindingSource.DataMember = "KHO_HANG";
     this.kHOHANGBindingSource.DataSource = this.dsKho;
     //
     // dsKho
     //
     this.dsKho.DataSetName = "dsKho";
     this.dsKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtKhoHang_View
     //
     this.txtKhoHang_View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Kho,
     this.colTen_Kho1,
     this.colDia_Chi,
     this.colEmail,
     this.colDien_Thoai,
     this.colFax,
     this.colDi_Dong,
     this.colThu_Kho,
     this.colGhi_Chu});
     this.txtKhoHang_View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.txtKhoHang_View.Name = "txtKhoHang_View";
     this.txtKhoHang_View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.txtKhoHang_View.OptionsView.ShowAutoFilterRow = true;
     this.txtKhoHang_View.OptionsView.ShowGroupPanel = false;
     //
     // colMa_Kho
     //
     this.colMa_Kho.Caption = "Mã Kho";
     this.colMa_Kho.FieldName = "Ma_Kho";
     this.colMa_Kho.Name = "colMa_Kho";
     this.colMa_Kho.OptionsColumn.ReadOnly = true;
     this.colMa_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Kho.Visible = true;
     this.colMa_Kho.VisibleIndex = 0;
     //
     // colTen_Kho1
     //
     this.colTen_Kho1.Caption = "Tên Kho";
     this.colTen_Kho1.FieldName = "Ten_Kho";
     this.colTen_Kho1.Name = "colTen_Kho1";
     this.colTen_Kho1.OptionsColumn.ReadOnly = true;
     this.colTen_Kho1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho1.Visible = true;
     this.colTen_Kho1.VisibleIndex = 1;
     //
     // colDia_Chi
     //
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     this.colDia_Chi.VisibleIndex = 2;
     //
     // colEmail
     //
     this.colEmail.Caption = "Email";
     this.colEmail.FieldName = "Email";
     this.colEmail.Name = "colEmail";
     this.colEmail.OptionsColumn.ReadOnly = true;
     this.colEmail.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colEmail.Visible = true;
     this.colEmail.VisibleIndex = 3;
     //
     // colDien_Thoai
     //
     this.colDien_Thoai.Caption = "Điện Thoại";
     this.colDien_Thoai.FieldName = "Dien_Thoai";
     this.colDien_Thoai.Name = "colDien_Thoai";
     this.colDien_Thoai.OptionsColumn.ReadOnly = true;
     this.colDien_Thoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDien_Thoai.Visible = true;
     this.colDien_Thoai.VisibleIndex = 4;
     //
     // colFax
     //
     this.colFax.Caption = "Fax";
     this.colFax.FieldName = "Fax";
     this.colFax.Name = "colFax";
     this.colFax.OptionsColumn.ReadOnly = true;
     this.colFax.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colFax.Visible = true;
     this.colFax.VisibleIndex = 5;
     //
     // colDi_Dong
     //
     this.colDi_Dong.Caption = "Di Động";
     this.colDi_Dong.FieldName = "Di_Dong";
     this.colDi_Dong.Name = "colDi_Dong";
     this.colDi_Dong.OptionsColumn.ReadOnly = true;
     this.colDi_Dong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDi_Dong.Visible = true;
     this.colDi_Dong.VisibleIndex = 6;
     //
     // colThu_Kho
     //
     this.colThu_Kho.Caption = "Thủ Kho";
     this.colThu_Kho.FieldName = "Thu_Kho";
     this.colThu_Kho.Name = "colThu_Kho";
     this.colThu_Kho.OptionsColumn.ReadOnly = true;
     this.colThu_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Kho.Visible = true;
     this.colThu_Kho.VisibleIndex = 7;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     this.colGhi_Chu.VisibleIndex = 8;
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(613, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(487, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(487, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(523, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(86, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(383, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(83, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(235, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.xuatNhapTonTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // xuatNhapTonTheoNgayBindingSource
     //
     this.xuatNhapTonTheoNgayBindingSource.DataMember = "Xuat_Nhap_Ton_Theo_Ngay";
     this.xuatNhapTonTheoNgayBindingSource.DataSource = this.dsXuatNhapTon;
     //
     // dsXuatNhapTon
     //
     this.dsXuatNhapTon.DataSetName = "dsXuatNhapTon";
     this.dsXuatNhapTon.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colMa_Kho_Hang,
     this.colTen_Kho,
     this.colSo_Luong_Dau_Ky,
     this.colSo_Luong_Nhap_Trong_Ky,
     this.colSo_Luong_Xuat_Trong_Ky,
     this.colSo_Luong_Cuoi_Ky,
     this.colThanh_Tien_Dau_Ky,
     this.colThanh_Tien_Nhap_Trong_Ky,
     this.colThanh_Tien_Xuat_Trong_Ky,
     this.colThanh_Tien_Cuoi_Ky,
     this.colNhom_Hang,
     this.colTen_Nhom_Hang});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 1;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", this.colSo_Luong_Dau_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", this.colSo_Luong_Nhap_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", this.colSo_Luong_Xuat_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", this.colSo_Luong_Cuoi_Ky, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ColumnHeaderAutoHeight = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Nhom_Hang, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hang_Hoa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hang_Hoa.Caption = "Mã Hàng Hóa";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.VisibleIndex = 0;
     this.colMa_Hang_Hoa.Width = 89;
     //
     // colTen_Hang
     //
     this.colTen_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     this.colTen_Hang.VisibleIndex = 1;
     //
     // colDon_Vi
     //
     this.colDon_Vi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDon_Vi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     this.colDon_Vi.VisibleIndex = 2;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Kho_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Kho
     //
     this.colTen_Kho.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Kho.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Kho.Caption = "Kho Hàng";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho.Visible = true;
     this.colTen_Kho.VisibleIndex = 3;
     //
     // colSo_Luong_Dau_Ky
     //
     this.colSo_Luong_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Dau_Ky.Caption = "Đầu Kỳ / Số Lượng";
     this.colSo_Luong_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Dau_Ky.FieldName = "So_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.Name = "colSo_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Dau_Ky.Visible = true;
     this.colSo_Luong_Dau_Ky.VisibleIndex = 4;
     this.colSo_Luong_Dau_Ky.Width = 109;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colSo_Luong_Nhap_Trong_Ky
     //
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Nhap_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Nhập";
     this.colSo_Luong_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Nhap_Trong_Ky.FieldName = "So_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.Name = "colSo_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Nhap_Trong_Ky.Visible = true;
     this.colSo_Luong_Nhap_Trong_Ky.VisibleIndex = 5;
     this.colSo_Luong_Nhap_Trong_Ky.Width = 149;
     //
     // colSo_Luong_Xuat_Trong_Ky
     //
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Xuat_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Xuât";
     this.colSo_Luong_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Xuat_Trong_Ky.FieldName = "So_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.Name = "colSo_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Xuat_Trong_Ky.Visible = true;
     this.colSo_Luong_Xuat_Trong_Ky.VisibleIndex = 6;
     this.colSo_Luong_Xuat_Trong_Ky.Width = 146;
     //
     // colSo_Luong_Cuoi_Ky
     //
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Cuoi_Ky.Caption = "Cuối Kỳ / Số Lượng";
     this.colSo_Luong_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Cuoi_Ky.FieldName = "So_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.Name = "colSo_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Cuoi_Ky.Visible = true;
     this.colSo_Luong_Cuoi_Ky.VisibleIndex = 7;
     this.colSo_Luong_Cuoi_Ky.Width = 111;
     //
     // colThanh_Tien_Dau_Ky
     //
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Dau_Ky.FieldName = "Thanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.Name = "colThanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Dau_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Nhap_Trong_Ky
     //
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Nhap_Trong_Ky.FieldName = "Thanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.Name = "colThanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Nhap_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Xuat_Trong_Ky
     //
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Xuat_Trong_Ky.FieldName = "Thanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.Name = "colThanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Xuat_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Cuoi_Ky
     //
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Cuoi_Ky.FieldName = "Thanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.Name = "colThanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Cuoi_Ky", "{0:##,##0.###}")});
     //
     // colNhom_Hang
     //
     this.colNhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colNhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNhom_Hang.FieldName = "Nhom_Hang";
     this.colNhom_Hang.Name = "colNhom_Hang";
     this.colNhom_Hang.OptionsColumn.ReadOnly = true;
     this.colNhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Nhom_Hang
     //
     this.colTen_Nhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Nhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Nhom_Hang.Caption = "Nhóm Hàng";
     this.colTen_Nhom_Hang.FieldName = "Ten_Nhom_Hang";
     this.colTen_Nhom_Hang.Name = "colTen_Nhom_Hang";
     this.colTen_Nhom_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Nhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Nhom_Hang.Visible = true;
     this.colTen_Nhom_Hang.VisibleIndex = 4;
     this.colTen_Nhom_Hang.Width = 101;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(178, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(328, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(140, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(143, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(611, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(491, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.txtKhoHang;
     this.layoutControlItem6.CustomizationFormText = "Kho Hàng:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(178, 24);
     this.layoutControlItem6.Text = "Kho Hàng:";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(50, 13);
     //
     // kHO_HANGTableAdapter
     //
     this.kHO_HANGTableAdapter.ClearBeforeFill = true;
     //
     // frmXuatNhapTon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmXuatNhapTon";
     this.Text = "Xuất Nhập Tồn";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label productCodeLabel;
     System.Windows.Forms.Label nameLabel;
     System.Windows.Forms.Label versionLabel;
     System.Windows.Forms.Label releaseDateLabel1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProductIncidents));
     this.productsBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.productsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.techSupportDataSet2C = new SportsPro.TechSupportDataSet2C();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.productCodeTextBox = new System.Windows.Forms.TextBox();
     this.nameTextBox = new System.Windows.Forms.TextBox();
     this.versionTextBox = new System.Windows.Forms.TextBox();
     this.releaseDateTextBox = new System.Windows.Forms.TextBox();
     this.incidentsDataGridView = new System.Windows.Forms.DataGridView();
     this.incidentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.productsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.ProductsTableAdapter();
     this.tableAdapterManager = new SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager();
     this.incidentsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.IncidentsTableAdapter();
     this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateOpened = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DateClosed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TechnicianName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DisplayCustomerInfo = new System.Windows.Forms.DataGridViewButtonColumn();
     productCodeLabel = new System.Windows.Forms.Label();
     nameLabel = new System.Windows.Forms.Label();
     versionLabel = new System.Windows.Forms.Label();
     releaseDateLabel1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).BeginInit();
     this.productsBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // productCodeLabel
     //
     productCodeLabel.AutoSize = true;
     productCodeLabel.Location = new System.Drawing.Point(9, 35);
     productCodeLabel.Name = "productCodeLabel";
     productCodeLabel.Size = new System.Drawing.Size(75, 13);
     productCodeLabel.TabIndex = 1;
     productCodeLabel.Text = "Product Code:";
     //
     // nameLabel
     //
     nameLabel.AutoSize = true;
     nameLabel.Location = new System.Drawing.Point(9, 61);
     nameLabel.Name = "nameLabel";
     nameLabel.Size = new System.Drawing.Size(38, 13);
     nameLabel.TabIndex = 3;
     nameLabel.Text = "Name:";
     //
     // versionLabel
     //
     versionLabel.AutoSize = true;
     versionLabel.Location = new System.Drawing.Point(9, 87);
     versionLabel.Name = "versionLabel";
     versionLabel.Size = new System.Drawing.Size(45, 13);
     versionLabel.TabIndex = 5;
     versionLabel.Text = "Version:";
     //
     // releaseDateLabel1
     //
     releaseDateLabel1.AutoSize = true;
     releaseDateLabel1.Location = new System.Drawing.Point(9, 113);
     releaseDateLabel1.Name = "releaseDateLabel1";
     releaseDateLabel1.Size = new System.Drawing.Size(75, 13);
     releaseDateLabel1.TabIndex = 9;
     releaseDateLabel1.Text = "Release Date:";
     //
     // productsBindingNavigator
     //
     this.productsBindingNavigator.AddNewItem = null;
     this.productsBindingNavigator.BindingSource = this.productsBindingSource;
     this.productsBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.productsBindingNavigator.DeleteItem = null;
     this.productsBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.productsBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.productsBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.productsBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.productsBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.productsBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.productsBindingNavigator.Name = "productsBindingNavigator";
     this.productsBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.productsBindingNavigator.Size = new System.Drawing.Size(592, 25);
     this.productsBindingNavigator.TabIndex = 0;
     this.productsBindingNavigator.Text = "bindingNavigator1";
     //
     // productsBindingSource
     //
     this.productsBindingSource.DataMember = "Products";
     this.productsBindingSource.DataSource = this.techSupportDataSet2C;
     //
     // techSupportDataSet2C
     //
     this.techSupportDataSet2C.DataSetName = "TechSupportDataSet2C";
     this.techSupportDataSet2C.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // productCodeTextBox
     //
     this.productCodeTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "ProductCode", true));
     this.productCodeTextBox.Location = new System.Drawing.Point(90, 32);
     this.productCodeTextBox.Name = "productCodeTextBox";
     this.productCodeTextBox.ReadOnly = true;
     this.productCodeTextBox.Size = new System.Drawing.Size(100, 20);
     this.productCodeTextBox.TabIndex = 2;
     //
     // nameTextBox
     //
     this.nameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "Name", true));
     this.nameTextBox.Location = new System.Drawing.Point(90, 58);
     this.nameTextBox.Name = "nameTextBox";
     this.nameTextBox.ReadOnly = true;
     this.nameTextBox.Size = new System.Drawing.Size(200, 20);
     this.nameTextBox.TabIndex = 4;
     //
     // versionTextBox
     //
     this.versionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "Version", true));
     this.versionTextBox.Location = new System.Drawing.Point(90, 84);
     this.versionTextBox.Name = "versionTextBox";
     this.versionTextBox.ReadOnly = true;
     this.versionTextBox.Size = new System.Drawing.Size(100, 20);
     this.versionTextBox.TabIndex = 6;
     //
     // releaseDateTextBox
     //
     this.releaseDateTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.productsBindingSource, "ReleaseDate", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, null, "d"));
     this.releaseDateTextBox.Location = new System.Drawing.Point(90, 110);
     this.releaseDateTextBox.Name = "releaseDateTextBox";
     this.releaseDateTextBox.ReadOnly = true;
     this.releaseDateTextBox.Size = new System.Drawing.Size(100, 20);
     this.releaseDateTextBox.TabIndex = 10;
     //
     // incidentsDataGridView
     //
     this.incidentsDataGridView.AllowUserToAddRows = false;
     this.incidentsDataGridView.AllowUserToDeleteRows = false;
     this.incidentsDataGridView.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.incidentsDataGridView.AutoGenerateColumns = false;
     this.incidentsDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.incidentsDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.CustomerID,
     this.DateOpened,
     this.DateClosed,
     this.Title,
     this.TechnicianName,
     this.CustomerName,
     this.DisplayCustomerInfo});
     this.incidentsDataGridView.DataSource = this.incidentsBindingSource;
     this.incidentsDataGridView.Location = new System.Drawing.Point(12, 144);
     this.incidentsDataGridView.Name = "incidentsDataGridView";
     this.incidentsDataGridView.ReadOnly = true;
     this.incidentsDataGridView.Size = new System.Drawing.Size(568, 137);
     this.incidentsDataGridView.TabIndex = 10;
     this.incidentsDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.incidentsDataGridView_CellContentClick);
     //
     // incidentsBindingSource
     //
     this.incidentsBindingSource.DataMember = "FK_Incidents_Products";
     this.incidentsBindingSource.DataSource = this.productsBindingSource;
     //
     // productsTableAdapter
     //
     this.productsTableAdapter.ClearBeforeFill = true;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.ProductsTableAdapter = this.productsTableAdapter;
     this.tableAdapterManager.UpdateOrder = SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     //
     // incidentsTableAdapter
     //
     this.incidentsTableAdapter.ClearBeforeFill = true;
     //
     // CustomerID
     //
     this.CustomerID.DataPropertyName = "CustomerID";
     this.CustomerID.HeaderText = "CustomerID";
     this.CustomerID.Name = "CustomerID";
     this.CustomerID.ReadOnly = true;
     this.CustomerID.Visible = false;
     //
     // DateOpened
     //
     this.DateOpened.DataPropertyName = "DateOpened";
     this.DateOpened.HeaderText = "Date Opened";
     this.DateOpened.Name = "DateOpened";
     this.DateOpened.ReadOnly = true;
     //
     // DateClosed
     //
     this.DateClosed.DataPropertyName = "DateClosed";
     this.DateClosed.HeaderText = "Date Closed";
     this.DateClosed.Name = "DateClosed";
     this.DateClosed.ReadOnly = true;
     //
     // Title
     //
     this.Title.DataPropertyName = "Title";
     this.Title.HeaderText = "Title";
     this.Title.Name = "Title";
     this.Title.ReadOnly = true;
     //
     // TechnicianName
     //
     this.TechnicianName.DataPropertyName = "TechnicianName";
     this.TechnicianName.HeaderText = "Technician Name";
     this.TechnicianName.Name = "TechnicianName";
     this.TechnicianName.ReadOnly = true;
     this.TechnicianName.Width = 120;
     //
     // CustomerName
     //
     this.CustomerName.DataPropertyName = "CustomerName";
     this.CustomerName.HeaderText = "Customer Name";
     this.CustomerName.Name = "CustomerName";
     this.CustomerName.ReadOnly = true;
     this.CustomerName.Width = 120;
     //
     // DisplayCustomerInfo
     //
     this.DisplayCustomerInfo.HeaderText = "";
     this.DisplayCustomerInfo.Name = "DisplayCustomerInfo";
     this.DisplayCustomerInfo.ReadOnly = true;
     this.DisplayCustomerInfo.Text = "Display Customer Info";
     this.DisplayCustomerInfo.UseColumnTextForButtonValue = true;
     this.DisplayCustomerInfo.Width = 120;
     //
     // frmProductIncidents
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(592, 293);
     this.Controls.Add(this.incidentsDataGridView);
     this.Controls.Add(releaseDateLabel1);
     this.Controls.Add(this.releaseDateTextBox);
     this.Controls.Add(productCodeLabel);
     this.Controls.Add(this.productCodeTextBox);
     this.Controls.Add(nameLabel);
     this.Controls.Add(this.nameTextBox);
     this.Controls.Add(versionLabel);
     this.Controls.Add(this.versionTextBox);
     this.Controls.Add(this.productsBindingNavigator);
     this.Name = "frmProductIncidents";
     this.Text = "Incidents by Product";
     this.Load += new System.EventHandler(this.frmProductIncidents_Load);
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).EndInit();
     this.productsBindingNavigator.ResumeLayout(false);
     this.productsBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 53
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.FlowLayoutPanel panel1;
			System.Windows.Forms.BindingSource possibleAssignmentsBindingSource;
			System.Windows.Forms.BindingSource actionsAvailableBindingSource;
			System.Windows.Forms.Label label6;
			System.Windows.Forms.BindingSource filtersBindingSource;
			System.Windows.Forms.Label label2;
			System.Windows.Forms.Label label3;
			System.Windows.Forms.BindingSource statusFilterBindingSource;
			System.Windows.Forms.Label label1;
			System.Windows.Forms.Label label4;
			System.Windows.Forms.BindingSource assignmentFilterBindingSource;
			System.Windows.Forms.ColumnHeader hdrId;
			System.Windows.Forms.ColumnHeader hdrSummary;
			System.Windows.Forms.ColumnHeader hdrAssignedTo;
			System.Windows.Forms.ColumnHeader hdrReportedBy;
			System.Windows.Forms.ColumnHeader hdrLastMod;
			System.Windows.Forms.ColumnHeader hdrCreated;
			System.Windows.Forms.ColumnHeader hdrStatus;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IssuesList));
			this._showHideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.showTimeTrackingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.cancelButton = new System.Windows.Forms.Button();
			this.okButton = new System.Windows.Forms.Button();
			this._binding = new System.Windows.Forms.BindingSource(this.components);
			this._filterGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
			this._filters = new JiraSVN.Plugin.UI.BindingComboBox();
			this._search = new System.Windows.Forms.TextBox();
			this._status = new JiraSVN.Plugin.UI.BindingComboBox();
			this._assigned = new JiraSVN.Plugin.UI.BindingComboBox();
			this._issuesGroup = new System.Windows.Forms.GroupBox();
			this._listView = new System.Windows.Forms.ListView();
			this._contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.viewIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.refreshIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.statusGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this._doTakeAction = new System.Windows.Forms.CheckBox();
			this._assignTo = new JiraSVN.Plugin.UI.BindingComboBox();
			this._takeAction = new JiraSVN.Plugin.UI.BindingComboBox();
			this._doAssignTo = new System.Windows.Forms.CheckBox();
			this._commentGroup = new System.Windows.Forms.GroupBox();
			this._comment = new System.Windows.Forms.TextBox();
			this._addWorklog = new System.Windows.Forms.CheckBox();
			this._worklogAction = new JiraSVN.Plugin.UI.BindingComboBox();
			this.remainingEstimateBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this._worklog = new System.Windows.Forms.TextBox();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this._worklogGroup = new System.Windows.Forms.GroupBox();
			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			this._splitter = new System.Windows.Forms.SplitContainer();
			panel1 = new System.Windows.Forms.FlowLayoutPanel();
			possibleAssignmentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
			actionsAvailableBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label6 = new System.Windows.Forms.Label();
			filtersBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label2 = new System.Windows.Forms.Label();
			label3 = new System.Windows.Forms.Label();
			statusFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
			label1 = new System.Windows.Forms.Label();
			label4 = new System.Windows.Forms.Label();
			assignmentFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
			hdrId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrSummary = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrAssignedTo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrReportedBy = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrLastMod = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrCreated = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			hdrStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			panel1.SuspendLayout();
			this._showHideMenu.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this._binding)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).BeginInit();
			this._filterGroup.SuspendLayout();
			this.tableLayoutPanel3.SuspendLayout();
			this._issuesGroup.SuspendLayout();
			this._contextMenu.SuspendLayout();
			this.statusGroup.SuspendLayout();
			this.tableLayoutPanel2.SuspendLayout();
			this._commentGroup.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).BeginInit();
			this._worklogGroup.SuspendLayout();
			this.tableLayoutPanel1.SuspendLayout();
			this._splitter.Panel1.SuspendLayout();
			this._splitter.Panel2.SuspendLayout();
			this._splitter.SuspendLayout();
			this.SuspendLayout();
			// 
			// panel1
			// 
			panel1.AutoSize = true;
			panel1.ContextMenuStrip = this._showHideMenu;
			panel1.Controls.Add(this.cancelButton);
			panel1.Controls.Add(this.okButton);
			panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
			panel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
			panel1.Location = new System.Drawing.Point(8, 455);
			panel1.Name = "panel1";
			panel1.Padding = new System.Windows.Forms.Padding(2, 2, 0, 2);
			panel1.Size = new System.Drawing.Size(636, 33);
			panel1.TabIndex = 2;
			// 
			// _showHideMenu
			// 
			this._showHideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showTimeTrackingToolStripMenuItem});
			this._showHideMenu.Name = "_showHideMenu";
			this._showHideMenu.Size = new System.Drawing.Size(177, 26);
			// 
			// showTimeTrackingToolStripMenuItem
			// 
			this.showTimeTrackingToolStripMenuItem.Checked = true;
			this.showTimeTrackingToolStripMenuItem.CheckOnClick = true;
			this.showTimeTrackingToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
			this.showTimeTrackingToolStripMenuItem.Name = "showTimeTrackingToolStripMenuItem";
			this.showTimeTrackingToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
			this.showTimeTrackingToolStripMenuItem.Text = "Show time tracking";
			this.showTimeTrackingToolStripMenuItem.Click += new System.EventHandler(this.showTimeTrackingToolStripMenuItem_Click);
			// 
			// cancelButton
			// 
			this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cancelButton.Location = new System.Drawing.Point(559, 5);
			this.cancelButton.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
			this.cancelButton.Name = "cancelButton";
			this.cancelButton.Size = new System.Drawing.Size(75, 23);
			this.cancelButton.TabIndex = 11;
			this.cancelButton.Text = "Cancel";
			this.cancelButton.UseVisualStyleBackColor = true;
			// 
			// okButton
			// 
			this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.okButton.Location = new System.Drawing.Point(478, 5);
			this.okButton.Name = "okButton";
			this.okButton.Size = new System.Drawing.Size(75, 23);
			this.okButton.TabIndex = 10;
			this.okButton.Text = "OK";
			this.okButton.UseVisualStyleBackColor = true;
			this.okButton.Click += new System.EventHandler(this.okButton_Click);
			// 
			// possibleAssignmentsBindingSource
			// 
			possibleAssignmentsBindingSource.DataMember = "PossibleAssignments";
			possibleAssignmentsBindingSource.DataSource = this._binding;
			// 
			// _binding
			// 
			this._binding.DataSource = typeof(JiraSVN.Plugin.UI.IssuesListView);
			// 
			// actionsAvailableBindingSource
			// 
			actionsAvailableBindingSource.DataMember = "ActionsAvailable";
			actionsAvailableBindingSource.DataSource = this._binding;
			// 
			// label6
			// 
			label6.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label6.AutoSize = true;
			label6.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			label6.Location = new System.Drawing.Point(294, 8);
			label6.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label6.Name = "label6";
			label6.Size = new System.Drawing.Size(106, 13);
			label6.TabIndex = 2;
			label6.Text = "and update estimate:";
			// 
			// filtersBindingSource
			// 
			filtersBindingSource.DataMember = "Filters";
			filtersBindingSource.DataSource = this._binding;
			// 
			// label2
			// 
			label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label2.AutoSize = true;
			label2.Location = new System.Drawing.Point(3, 7);
			label2.Name = "label2";
			label2.Size = new System.Drawing.Size(61, 13);
			label2.TabIndex = 0;
			label2.Text = "Apply Filter:";
			// 
			// label3
			// 
			label3.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label3.AutoSize = true;
			label3.Location = new System.Drawing.Point(423, 35);
			label3.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label3.Name = "label3";
			label3.Size = new System.Drawing.Size(51, 13);
			label3.TabIndex = 6;
			label3.Text = "Contains:";
			// 
			// statusFilterBindingSource
			// 
			statusFilterBindingSource.DataMember = "StatusFilter";
			statusFilterBindingSource.DataSource = this._binding;
			// 
			// label1
			// 
			label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
			label1.AutoSize = true;
			label1.Location = new System.Drawing.Point(3, 35);
			label1.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label1.Name = "label1";
			label1.Size = new System.Drawing.Size(65, 13);
			label1.TabIndex = 2;
			label1.Text = "Assigned to:";
			// 
			// label4
			// 
			label4.Anchor = System.Windows.Forms.AnchorStyles.Right;
			label4.AutoSize = true;
			label4.Location = new System.Drawing.Point(237, 35);
			label4.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
			label4.Name = "label4";
			label4.Size = new System.Drawing.Size(40, 13);
			label4.TabIndex = 4;
			label4.Text = "Status:";
			// 
			// assignmentFilterBindingSource
			// 
			assignmentFilterBindingSource.DataMember = "AssignmentFilter";
			assignmentFilterBindingSource.DataSource = this._binding;
			// 
			// hdrId
			// 
			hdrId.Text = "Id";
			// 
			// hdrSummary
			// 
			hdrSummary.Text = "Summary";
			hdrSummary.Width = 400;
			// 
			// hdrAssignedTo
			// 
			hdrAssignedTo.Text = "Assigned To";
			hdrAssignedTo.Width = 100;
			// 
			// hdrReportedBy
			// 
			hdrReportedBy.Text = "Reported By";
			hdrReportedBy.Width = 100;
			// 
			// hdrLastMod
			// 
			hdrLastMod.Text = "Last Modified";
			hdrLastMod.Width = 100;
			// 
			// hdrCreated
			// 
			hdrCreated.Text = "Created On";
			hdrCreated.Width = 100;
			// 
			// hdrStatus
			// 
			hdrStatus.Text = "Status";
			hdrStatus.Width = 100;
			// 
			// _filterGroup
			// 
			this._filterGroup.AutoSize = true;
			this._filterGroup.Controls.Add(this.tableLayoutPanel3);
			this._filterGroup.Dock = System.Windows.Forms.DockStyle.Top;
			this._filterGroup.Location = new System.Drawing.Point(8, 8);
			this._filterGroup.Name = "_filterGroup";
			this._filterGroup.Size = new System.Drawing.Size(636, 73);
			this._filterGroup.TabIndex = 0;
			this._filterGroup.TabStop = false;
			this._filterGroup.Text = "Filter";
			// 
			// tableLayoutPanel3
			// 
			this.tableLayoutPanel3.AutoSize = true;
			this.tableLayoutPanel3.ColumnCount = 6;
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.31667F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 31.70082F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F));
			this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 34.98251F));
			this.tableLayoutPanel3.Controls.Add(this._filters, 1, 0);
			this.tableLayoutPanel3.Controls.Add(this._search, 5, 1);
			this.tableLayoutPanel3.Controls.Add(label2, 0, 0);
			this.tableLayoutPanel3.Controls.Add(label3, 4, 1);
			this.tableLayoutPanel3.Controls.Add(this._status, 3, 1);
			this.tableLayoutPanel3.Controls.Add(label1, 0, 1);
			this.tableLayoutPanel3.Controls.Add(label4, 2, 1);
			this.tableLayoutPanel3.Controls.Add(this._assigned, 1, 1);
			this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel3.Name = "tableLayoutPanel3";
			this.tableLayoutPanel3.RowCount = 2;
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel3.Size = new System.Drawing.Size(630, 54);
			this.tableLayoutPanel3.TabIndex = 8;
			// 
			// _filters
			// 
			this._filters.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tableLayoutPanel3.SetColumnSpan(this._filters, 5);
			this._filters.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._filters.DataSource = filtersBindingSource;
			this._filters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._filters.FormattingEnabled = true;
			this._filters.IndexSelected = -1;
			this._filters.Location = new System.Drawing.Point(79, 3);
			this._filters.Name = "_filters";
			this._filters.Size = new System.Drawing.Size(548, 21);
			this._filters.TabIndex = 1;
			// 
			// _search
			// 
			this._search.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TextFilter", true, System.Windows.Forms.DataSourceUpdateMode.Never));
			this._search.Dock = System.Windows.Forms.DockStyle.Fill;
			this._search.Location = new System.Drawing.Point(480, 30);
			this._search.Name = "_search";
			this._search.Size = new System.Drawing.Size(147, 20);
			this._search.TabIndex = 7;
			this._search.TextChanged += new System.EventHandler(this._search_TextChanged);
			// 
			// _status
			// 
			this._status.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedStatusFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._status.DataSource = statusFilterBindingSource;
			this._status.Dock = System.Windows.Forms.DockStyle.Fill;
			this._status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._status.FormattingEnabled = true;
			this._status.IndexSelected = -1;
			this._status.Location = new System.Drawing.Point(283, 30);
			this._status.Name = "_status";
			this._status.Size = new System.Drawing.Size(131, 21);
			this._status.TabIndex = 5;
			// 
			// _assigned
			// 
			this._assigned.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignmentFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assigned.DataSource = assignmentFilterBindingSource;
			this._assigned.Dock = System.Windows.Forms.DockStyle.Fill;
			this._assigned.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._assigned.FormattingEnabled = true;
			this._assigned.IndexSelected = -1;
			this._assigned.Location = new System.Drawing.Point(79, 30);
			this._assigned.Name = "_assigned";
			this._assigned.Size = new System.Drawing.Size(138, 21);
			this._assigned.TabIndex = 3;
			// 
			// _issuesGroup
			// 
			this._issuesGroup.Controls.Add(this._listView);
			this._issuesGroup.Dock = System.Windows.Forms.DockStyle.Fill;
			this._issuesGroup.Location = new System.Drawing.Point(0, 0);
			this._issuesGroup.Name = "_issuesGroup";
			this._issuesGroup.Size = new System.Drawing.Size(636, 201);
			this._issuesGroup.TabIndex = 1;
			this._issuesGroup.TabStop = false;
			this._issuesGroup.Text = "Issues";
			// 
			// _listView
			// 
			this._listView.CheckBoxes = true;
			this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            hdrId,
            hdrSummary,
            hdrStatus,
            hdrAssignedTo,
            hdrReportedBy,
            hdrLastMod,
            hdrCreated});
			this._listView.ContextMenuStrip = this._contextMenu;
			this._listView.Dock = System.Windows.Forms.DockStyle.Fill;
			this._listView.FullRowSelect = true;
			this._listView.Location = new System.Drawing.Point(3, 16);
			this._listView.Name = "_listView";
			this._listView.Size = new System.Drawing.Size(630, 182);
			this._listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this._listView.TabIndex = 0;
			this._listView.UseCompatibleStateImageBehavior = false;
			this._listView.View = System.Windows.Forms.View.Details;
			this._listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
			this._listView.ItemMouseHover += new System.Windows.Forms.ListViewItemMouseHoverEventHandler(this._listView_ItemMouseHover);
			this._listView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
			this._listView.MouseMove += new System.Windows.Forms.MouseEventHandler(this._listView_MouseMove);
			// 
			// _contextMenu
			// 
			this._contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewIssueToolStripMenuItem,
            this.refreshIssueToolStripMenuItem,
            this.toolStripSeparator1});
			this._contextMenu.Name = "_contextMenu";
			this._contextMenu.Size = new System.Drawing.Size(169, 54);
			this._contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenu_Opening);
			// 
			// viewIssueToolStripMenuItem
			// 
			this.viewIssueToolStripMenuItem.Name = "viewIssueToolStripMenuItem";
			this.viewIssueToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
			this.viewIssueToolStripMenuItem.Text = "&View Issue...";
			this.viewIssueToolStripMenuItem.ToolTipText = "Open the issue in the default viewer.";
			this.viewIssueToolStripMenuItem.Click += new System.EventHandler(this.listView_ViewSelectedItem);
			// 
			// refreshIssueToolStripMenuItem
			// 
			this.refreshIssueToolStripMenuItem.Name = "refreshIssueToolStripMenuItem";
			this.refreshIssueToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
			this.refreshIssueToolStripMenuItem.Text = "&Refresh Issues List";
			this.refreshIssueToolStripMenuItem.ToolTipText = "Requery the server and refresh the list.";
			this.refreshIssueToolStripMenuItem.Click += new System.EventHandler(this.RefreshContents);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(165, 6);
			// 
			// statusGroup
			// 
			this.statusGroup.AutoSize = true;
			this.statusGroup.Controls.Add(this.tableLayoutPanel2);
			this.statusGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.statusGroup.Location = new System.Drawing.Point(0, 123);
			this.statusGroup.Name = "statusGroup";
			this.statusGroup.Size = new System.Drawing.Size(636, 46);
			this.statusGroup.TabIndex = 10;
			this.statusGroup.TabStop = false;
			this.statusGroup.Text = "Status";
			// 
			// tableLayoutPanel2
			// 
			this.tableLayoutPanel2.AutoSize = true;
			this.tableLayoutPanel2.ColumnCount = 4;
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.15783F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
			this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.84217F));
			this.tableLayoutPanel2.Controls.Add(this._doTakeAction, 0, 0);
			this.tableLayoutPanel2.Controls.Add(this._assignTo, 3, 0);
			this.tableLayoutPanel2.Controls.Add(this._takeAction, 1, 0);
			this.tableLayoutPanel2.Controls.Add(this._doAssignTo, 2, 0);
			this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel2.Name = "tableLayoutPanel2";
			this.tableLayoutPanel2.RowCount = 1;
			this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel2.Size = new System.Drawing.Size(630, 27);
			this.tableLayoutPanel2.TabIndex = 10;
			// 
			// _doTakeAction
			// 
			this._doTakeAction.AutoSize = true;
			this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanPerformActions", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doTakeAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._doTakeAction.Location = new System.Drawing.Point(3, 5);
			this._doTakeAction.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._doTakeAction.Name = "_doTakeAction";
			this._doTakeAction.Size = new System.Drawing.Size(70, 19);
			this._doTakeAction.TabIndex = 6;
			this._doTakeAction.Text = "Set:";
			this._doTakeAction.UseVisualStyleBackColor = true;
			// 
			// _assignTo
			// 
			this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignee", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._assignTo.DataSource = possibleAssignmentsBindingSource;
			this._assignTo.Dock = System.Windows.Forms.DockStyle.Fill;
			this._assignTo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._assignTo.FormattingEnabled = true;
			this._assignTo.IndexSelected = -1;
			this._assignTo.Location = new System.Drawing.Point(418, 3);
			this._assignTo.Name = "_assignTo";
			this._assignTo.Size = new System.Drawing.Size(209, 21);
			this._assignTo.TabIndex = 9;
			// 
			// _takeAction
			// 
			this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._takeAction.DataSource = actionsAvailableBindingSource;
			this._takeAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._takeAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._takeAction.FormattingEnabled = true;
			this._takeAction.IndexSelected = -1;
			this._takeAction.Location = new System.Drawing.Point(79, 3);
			this._takeAction.Name = "_takeAction";
			this._takeAction.Size = new System.Drawing.Size(209, 21);
			this._takeAction.TabIndex = 7;
			// 
			// _doAssignTo
			// 
			this._doAssignTo.AutoSize = true;
			this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true));
			this._doAssignTo.Dock = System.Windows.Forms.DockStyle.Fill;
			this._doAssignTo.Location = new System.Drawing.Point(294, 5);
			this._doAssignTo.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._doAssignTo.Name = "_doAssignTo";
			this._doAssignTo.Size = new System.Drawing.Size(118, 19);
			this._doAssignTo.TabIndex = 8;
			this._doAssignTo.Text = "and assign to:";
			this._doAssignTo.UseVisualStyleBackColor = true;
			// 
			// _commentGroup
			// 
			this._commentGroup.AutoSize = true;
			this._commentGroup.Controls.Add(this._comment);
			this._commentGroup.Dock = System.Windows.Forms.DockStyle.Fill;
			this._commentGroup.Location = new System.Drawing.Point(0, 0);
			this._commentGroup.Name = "_commentGroup";
			this._commentGroup.Size = new System.Drawing.Size(636, 77);
			this._commentGroup.TabIndex = 11;
			this._commentGroup.TabStop = false;
			this._commentGroup.Text = "Comment";
			// 
			// _comment
			// 
			this._comment.AcceptsReturn = true;
			this._comment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "Comments", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._comment.Dock = System.Windows.Forms.DockStyle.Fill;
			this._comment.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this._comment.Location = new System.Drawing.Point(3, 16);
			this._comment.Multiline = true;
			this._comment.Name = "_comment";
			this._comment.Size = new System.Drawing.Size(630, 58);
			this._comment.TabIndex = 1;
			// 
			// _addWorklog
			// 
			this._addWorklog.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this._addWorklog.AutoSize = true;
			this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._addWorklog.Location = new System.Drawing.Point(3, 6);
			this._addWorklog.Margin = new System.Windows.Forms.Padding(3, 5, 3, 3);
			this._addWorklog.Name = "_addWorklog";
			this._addWorklog.Size = new System.Drawing.Size(69, 17);
			this._addWorklog.TabIndex = 0;
			this._addWorklog.Text = "Log time:";
			this._addWorklog.UseVisualStyleBackColor = true;
			// 
			// _worklogAction
			// 
			this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "TimeEstimateRecalcualation", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogAction.DataSource = this.remainingEstimateBindingSource;
			this._worklogAction.Dock = System.Windows.Forms.DockStyle.Fill;
			this._worklogAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this._worklogAction.FormattingEnabled = true;
			this._worklogAction.IndexSelected = -1;
			this._worklogAction.Location = new System.Drawing.Point(418, 3);
			this._worklogAction.Name = "_worklogAction";
			this._worklogAction.Size = new System.Drawing.Size(126, 21);
			this._worklogAction.TabIndex = 3;
			// 
			// remainingEstimateBindingSource
			// 
			this.remainingEstimateBindingSource.DataMember = "TimeEstimateMethodsAvailable";
			this.remainingEstimateBindingSource.DataSource = this._binding;
			// 
			// _worklog
			// 
			this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TimeSpent", true));
			this._worklog.Dock = System.Windows.Forms.DockStyle.Fill;
			this._worklog.Location = new System.Drawing.Point(79, 3);
			this._worklog.Name = "_worklog";
			this._worklog.Size = new System.Drawing.Size(209, 20);
			this._worklog.TabIndex = 1;
			// 
			// textBox1
			// 
			this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "NewTimeEstimate", true));
			this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanSpecifyNewEstimate", true));
			this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.textBox1.Location = new System.Drawing.Point(550, 3);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(77, 20);
			this.textBox1.TabIndex = 4;
			// 
			// _worklogGroup
			// 
			this._worklogGroup.AccessibleDescription = "";
			this._worklogGroup.AutoSize = true;
			this._worklogGroup.Controls.Add(this.tableLayoutPanel1);
			this._worklogGroup.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
			this._worklogGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
			this._worklogGroup.Location = new System.Drawing.Point(0, 77);
			this._worklogGroup.Name = "_worklogGroup";
			this._worklogGroup.Size = new System.Drawing.Size(636, 46);
			this._worklogGroup.TabIndex = 6;
			this._worklogGroup.TabStop = false;
			this._worklogGroup.Text = "Time tracking";
			// 
			// tableLayoutPanel1
			// 
			this.tableLayoutPanel1.AutoSize = true;
			this.tableLayoutPanel1.ColumnCount = 5;
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 76F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 124F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30.85586F));
			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 19.14414F));
			this.tableLayoutPanel1.Controls.Add(this.textBox1, 4, 0);
			this.tableLayoutPanel1.Controls.Add(this._worklog, 1, 0);
			this.tableLayoutPanel1.Controls.Add(this._worklogAction, 3, 0);
			this.tableLayoutPanel1.Controls.Add(label6, 2, 0);
			this.tableLayoutPanel1.Controls.Add(this._addWorklog, 0, 0);
			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 16);
			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
			this.tableLayoutPanel1.RowCount = 1;
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 27F));
			this.tableLayoutPanel1.Size = new System.Drawing.Size(630, 27);
			this.tableLayoutPanel1.TabIndex = 5;
			// 
			// _splitter
			// 
			this._splitter.Dock = System.Windows.Forms.DockStyle.Fill;
			this._splitter.Location = new System.Drawing.Point(8, 81);
			this._splitter.Name = "_splitter";
			this._splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
			// 
			// _splitter.Panel1
			// 
			this._splitter.Panel1.Controls.Add(this._issuesGroup);
			// 
			// _splitter.Panel2
			// 
			this._splitter.Panel2.Controls.Add(this._commentGroup);
			this._splitter.Panel2.Controls.Add(this._worklogGroup);
			this._splitter.Panel2.Controls.Add(this.statusGroup);
			this._splitter.Size = new System.Drawing.Size(636, 374);
			this._splitter.SplitterDistance = 201;
			this._splitter.TabIndex = 1;
			// 
			// IssuesList
			// 
			this.AcceptButton = this.okButton;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.cancelButton;
			this.ClientSize = new System.Drawing.Size(652, 496);
			this.ContextMenuStrip = this._showHideMenu;
			this.Controls.Add(this._splitter);
			this.Controls.Add(this._filterGroup);
			this.Controls.Add(panel1);
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(650, 450);
			this.Name = "IssuesList";
			this.Padding = new System.Windows.Forms.Padding(8);
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Select Issue(s)";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
			this.Load += new System.EventHandler(this.Form_Load);
			this.Shown += new System.EventHandler(this.Form_Shown);
			panel1.ResumeLayout(false);
			this._showHideMenu.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this._binding)).EndInit();
			((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).EndInit();
			this._filterGroup.ResumeLayout(false);
			this._filterGroup.PerformLayout();
			this.tableLayoutPanel3.ResumeLayout(false);
			this.tableLayoutPanel3.PerformLayout();
			this._issuesGroup.ResumeLayout(false);
			this._contextMenu.ResumeLayout(false);
			this.statusGroup.ResumeLayout(false);
			this.statusGroup.PerformLayout();
			this.tableLayoutPanel2.ResumeLayout(false);
			this.tableLayoutPanel2.PerformLayout();
			this._commentGroup.ResumeLayout(false);
			this._commentGroup.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).EndInit();
			this._worklogGroup.ResumeLayout(false);
			this._worklogGroup.PerformLayout();
			this.tableLayoutPanel1.ResumeLayout(false);
			this.tableLayoutPanel1.PerformLayout();
			this._splitter.Panel1.ResumeLayout(false);
			this._splitter.Panel2.ResumeLayout(false);
			this._splitter.Panel2.PerformLayout();
			this._splitter.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

        }
Esempio n. 54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label label14;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmClientes));
     this.grpCampos = new System.Windows.Forms.GroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtContactoCLI = new System.Windows.Forms.TextBox();
     this.txtNombreCLI = new System.Windows.Forms.TextBox();
     this.txtApellidoCLI = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTransporteCLI = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtCorreoCLI = new System.Windows.Forms.TextBox();
     this.txtMovilCLI = new System.Windows.Forms.TextBox();
     this.txtTelefonoCLI = new System.Windows.Forms.TextBox();
     this.txtIdClienteCLI = new System.Windows.Forms.TextBox();
     this.txtFechaNacCLI = new System.Windows.Forms.MaskedTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtRazonSocialCLI = new System.Windows.Forms.TextBox();
     this.cmbCondicion = new System.Windows.Forms.ComboBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtCUIT = new System.Windows.Forms.TextBox();
     this.gvwDatos = new System.Windows.Forms.DataGridView();
     this.grpBotones = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnGrabar = new System.Windows.Forms.Button();
     this.btnBorrar = new System.Windows.Forms.Button();
     this.btnEditar = new System.Windows.Forms.Button();
     this.btnNuevo = new System.Windows.Forms.Button();
     this.btnBuscar = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtParametros = new System.Windows.Forms.TextBox();
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtProvinciaCLI = new System.Windows.Forms.TextBox();
     this.txtLocalidadCLI = new System.Windows.Forms.TextBox();
     this.txtDireccionCLI = new System.Windows.Forms.TextBox();
     label14 = new System.Windows.Forms.Label();
     this.grpCampos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).BeginInit();
     this.grpBotones.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label14
     //
     label14.AutoSize = true;
     label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label14.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     label14.Location = new System.Drawing.Point(10, 70);
     label14.Name = "label14";
     label14.Size = new System.Drawing.Size(51, 15);
     label14.TabIndex = 27;
     label14.Text = "Apellido";
     //
     // grpCampos
     //
     this.grpCampos.Controls.Add(this.label9);
     this.grpCampos.Controls.Add(this.label8);
     this.grpCampos.Controls.Add(this.label5);
     this.grpCampos.Controls.Add(this.txtProvinciaCLI);
     this.grpCampos.Controls.Add(this.txtLocalidadCLI);
     this.grpCampos.Controls.Add(this.txtDireccionCLI);
     this.grpCampos.Controls.Add(label14);
     this.grpCampos.Controls.Add(this.label6);
     this.grpCampos.Controls.Add(this.label12);
     this.grpCampos.Controls.Add(this.label10);
     this.grpCampos.Controls.Add(this.label3);
     this.grpCampos.Controls.Add(this.label1);
     this.grpCampos.Controls.Add(this.txtContactoCLI);
     this.grpCampos.Controls.Add(this.txtNombreCLI);
     this.grpCampos.Controls.Add(this.txtApellidoCLI);
     this.grpCampos.Controls.Add(this.label4);
     this.grpCampos.Controls.Add(this.txtTransporteCLI);
     this.grpCampos.Controls.Add(this.label2);
     this.grpCampos.Controls.Add(this.txtCorreoCLI);
     this.grpCampos.Controls.Add(this.txtMovilCLI);
     this.grpCampos.Controls.Add(this.txtTelefonoCLI);
     this.grpCampos.Controls.Add(this.txtIdClienteCLI);
     this.grpCampos.Location = new System.Drawing.Point(12, 199);
     this.grpCampos.Name = "grpCampos";
     this.grpCampos.Size = new System.Drawing.Size(404, 321);
     this.grpCampos.TabIndex = 0;
     this.grpCampos.TabStop = false;
     this.grpCampos.Enter += new System.EventHandler(this.grpCampos_Enter);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label6.Location = new System.Drawing.Point(10, 44);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(52, 15);
     this.label6.TabIndex = 27;
     this.label6.Text = "Nombre";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label12.Location = new System.Drawing.Point(10, 97);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 15);
     this.label12.TabIndex = 25;
     this.label12.Text = "Correo";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label10.Location = new System.Drawing.Point(10, 233);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(36, 15);
     this.label10.TabIndex = 24;
     this.label10.Text = "Móvil";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label3.Location = new System.Drawing.Point(10, 206);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(55, 15);
     this.label3.TabIndex = 24;
     this.label3.Text = "Teléfono";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label1.Location = new System.Drawing.Point(10, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 15);
     this.label1.TabIndex = 17;
     this.label1.Text = "Nº cliente";
     //
     // txtContactoCLI
     //
     this.txtContactoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtContactoCLI.Location = new System.Drawing.Point(90, 285);
     this.txtContactoCLI.Name = "txtContactoCLI";
     this.txtContactoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtContactoCLI.TabIndex = 10;
     this.txtContactoCLI.TabStop = false;
     this.txtContactoCLI.Visible = false;
     //
     // txtNombreCLI
     //
     this.txtNombreCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombreCLI.Location = new System.Drawing.Point(90, 44);
     this.txtNombreCLI.Name = "txtNombreCLI";
     this.txtNombreCLI.Size = new System.Drawing.Size(295, 20);
     this.txtNombreCLI.TabIndex = 1;
     //
     // txtApellidoCLI
     //
     this.txtApellidoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtApellidoCLI.Location = new System.Drawing.Point(90, 70);
     this.txtApellidoCLI.Name = "txtApellidoCLI";
     this.txtApellidoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtApellidoCLI.TabIndex = 2;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label4.Location = new System.Drawing.Point(10, 260);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 15);
     this.label4.TabIndex = 25;
     this.label4.Text = "Transporte";
     this.label4.Visible = false;
     //
     // txtTransporteCLI
     //
     this.txtTransporteCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTransporteCLI.Location = new System.Drawing.Point(90, 259);
     this.txtTransporteCLI.Name = "txtTransporteCLI";
     this.txtTransporteCLI.Size = new System.Drawing.Size(295, 20);
     this.txtTransporteCLI.TabIndex = 9;
     this.txtTransporteCLI.TabStop = false;
     this.txtTransporteCLI.Visible = false;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label2.Location = new System.Drawing.Point(10, 285);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(55, 15);
     this.label2.TabIndex = 23;
     this.label2.Text = "Contacto";
     this.label2.Visible = false;
     //
     // txtCorreoCLI
     //
     this.txtCorreoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
     this.txtCorreoCLI.Location = new System.Drawing.Point(90, 96);
     this.txtCorreoCLI.Name = "txtCorreoCLI";
     this.txtCorreoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtCorreoCLI.TabIndex = 3;
     //
     // txtMovilCLI
     //
     this.txtMovilCLI.Location = new System.Drawing.Point(90, 232);
     this.txtMovilCLI.Name = "txtMovilCLI";
     this.txtMovilCLI.Size = new System.Drawing.Size(295, 20);
     this.txtMovilCLI.TabIndex = 8;
     //
     // txtTelefonoCLI
     //
     this.txtTelefonoCLI.Location = new System.Drawing.Point(90, 206);
     this.txtTelefonoCLI.Name = "txtTelefonoCLI";
     this.txtTelefonoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtTelefonoCLI.TabIndex = 7;
     //
     // txtIdClienteCLI
     //
     this.txtIdClienteCLI.Location = new System.Drawing.Point(90, 18);
     this.txtIdClienteCLI.Name = "txtIdClienteCLI";
     this.txtIdClienteCLI.Size = new System.Drawing.Size(295, 20);
     this.txtIdClienteCLI.TabIndex = 0;
     //
     // txtFechaNacCLI
     //
     this.txtFechaNacCLI.Location = new System.Drawing.Point(127, 552);
     this.txtFechaNacCLI.Mask = "00/00/0000";
     this.txtFechaNacCLI.Name = "txtFechaNacCLI";
     this.txtFechaNacCLI.Size = new System.Drawing.Size(270, 20);
     this.txtFechaNacCLI.TabIndex = 7;
     this.txtFechaNacCLI.TabStop = false;
     this.txtFechaNacCLI.ValidatingType = typeof(System.DateTime);
     this.txtFechaNacCLI.Visible = false;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label11.Location = new System.Drawing.Point(22, 552);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 15);
     this.label11.TabIndex = 23;
     this.label11.Text = "Fecha N.";
     this.label11.Visible = false;
     //
     // txtRazonSocialCLI
     //
     this.txtRazonSocialCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRazonSocialCLI.Location = new System.Drawing.Point(407, 552);
     this.txtRazonSocialCLI.Name = "txtRazonSocialCLI";
     this.txtRazonSocialCLI.Size = new System.Drawing.Size(200, 20);
     this.txtRazonSocialCLI.TabIndex = 1;
     this.txtRazonSocialCLI.Visible = false;
     //
     // cmbCondicion
     //
     this.cmbCondicion.FormattingEnabled = true;
     this.cmbCondicion.Location = new System.Drawing.Point(270, 527);
     this.cmbCondicion.Name = "cmbCondicion";
     this.cmbCondicion.Size = new System.Drawing.Size(159, 21);
     this.cmbCondicion.TabIndex = 28;
     this.cmbCondicion.TabStop = false;
     this.cmbCondicion.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label13.Location = new System.Drawing.Point(184, 528);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(80, 15);
     this.label13.TabIndex = 27;
     this.label13.Text = "Condicion iva";
     this.label13.Visible = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label7.Location = new System.Drawing.Point(15, 528);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 15);
     this.label7.TabIndex = 18;
     this.label7.Text = "CUIT";
     this.label7.Visible = false;
     //
     // txtCUIT
     //
     this.txtCUIT.Location = new System.Drawing.Point(55, 526);
     this.txtCUIT.Name = "txtCUIT";
     this.txtCUIT.Size = new System.Drawing.Size(121, 20);
     this.txtCUIT.TabIndex = 2;
     this.txtCUIT.TabStop = false;
     this.txtCUIT.Visible = false;
     //
     // gvwDatos
     //
     this.gvwDatos.AllowUserToAddRows = false;
     this.gvwDatos.AllowUserToDeleteRows = false;
     this.gvwDatos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.gvwDatos.Location = new System.Drawing.Point(12, 17);
     this.gvwDatos.Name = "gvwDatos";
     this.gvwDatos.ReadOnly = true;
     this.gvwDatos.Size = new System.Drawing.Size(615, 172);
     this.gvwDatos.TabIndex = 0;
     this.gvwDatos.Text = "DataGridView1";
     //
     // grpBotones
     //
     this.grpBotones.Controls.Add(this.btnCancelar);
     this.grpBotones.Controls.Add(this.btnSalir);
     this.grpBotones.Controls.Add(this.btnGrabar);
     this.grpBotones.Controls.Add(this.btnBorrar);
     this.grpBotones.Controls.Add(this.btnEditar);
     this.grpBotones.Controls.Add(this.btnNuevo);
     this.grpBotones.Controls.Add(this.btnBuscar);
     this.grpBotones.Location = new System.Drawing.Point(427, 259);
     this.grpBotones.Name = "grpBotones";
     this.grpBotones.Size = new System.Drawing.Size(200, 261);
     this.grpBotones.TabIndex = 1;
     this.grpBotones.TabStop = false;
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(20, 185);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(160, 26);
     this.btnCancelar.TabIndex = 5;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnSalir
     //
     this.btnSalir.Location = new System.Drawing.Point(20, 217);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(160, 26);
     this.btnSalir.TabIndex = 6;
     this.btnSalir.Text = "Salir";
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnGrabar
     //
     this.btnGrabar.Location = new System.Drawing.Point(20, 153);
     this.btnGrabar.Name = "btnGrabar";
     this.btnGrabar.Size = new System.Drawing.Size(160, 26);
     this.btnGrabar.TabIndex = 4;
     this.btnGrabar.Text = "Grabar";
     this.btnGrabar.UseVisualStyleBackColor = true;
     this.btnGrabar.Click += new System.EventHandler(this.btnGrabar_Click);
     //
     // btnBorrar
     //
     this.btnBorrar.Location = new System.Drawing.Point(20, 121);
     this.btnBorrar.Name = "btnBorrar";
     this.btnBorrar.Size = new System.Drawing.Size(160, 26);
     this.btnBorrar.TabIndex = 3;
     this.btnBorrar.Text = "Borrar";
     this.btnBorrar.UseVisualStyleBackColor = true;
     this.btnBorrar.Click += new System.EventHandler(this.btnBorrar_Click);
     //
     // btnEditar
     //
     this.btnEditar.Location = new System.Drawing.Point(20, 89);
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(160, 26);
     this.btnEditar.TabIndex = 2;
     this.btnEditar.Text = "Editar";
     this.btnEditar.UseVisualStyleBackColor = true;
     this.btnEditar.Click += new System.EventHandler(this.btnEditar_Click);
     //
     // btnNuevo
     //
     this.btnNuevo.Location = new System.Drawing.Point(20, 57);
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(160, 26);
     this.btnNuevo.TabIndex = 1;
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.UseVisualStyleBackColor = true;
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // btnBuscar
     //
     this.btnBuscar.Location = new System.Drawing.Point(20, 25);
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(160, 26);
     this.btnBuscar.TabIndex = 0;
     this.btnBuscar.Text = "Buscar";
     this.btnBuscar.UseVisualStyleBackColor = true;
     this.btnBuscar.Click += new System.EventHandler(this.btnBuscar_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtParametros);
     this.groupBox1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupBox1.Location = new System.Drawing.Point(427, 199);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(200, 54);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Buscar";
     //
     // txtParametros
     //
     this.txtParametros.Location = new System.Drawing.Point(6, 20);
     this.txtParametros.Name = "txtParametros";
     this.txtParametros.Size = new System.Drawing.Size(188, 20);
     this.txtParametros.TabIndex = 0;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 532);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(639, 25);
     this.bindingNavigator1.TabIndex = 29;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(38, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label9.Location = new System.Drawing.Point(10, 175);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(57, 15);
     this.label9.TabIndex = 31;
     this.label9.Text = "Provincia";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label8.Location = new System.Drawing.Point(10, 149);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 15);
     this.label8.TabIndex = 32;
     this.label8.Text = "Localidad";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label5.Location = new System.Drawing.Point(10, 123);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(59, 15);
     this.label5.TabIndex = 33;
     this.label5.Text = "Dirección";
     //
     // txtProvinciaCLI
     //
     this.txtProvinciaCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtProvinciaCLI.Location = new System.Drawing.Point(90, 175);
     this.txtProvinciaCLI.Name = "txtProvinciaCLI";
     this.txtProvinciaCLI.Size = new System.Drawing.Size(295, 20);
     this.txtProvinciaCLI.TabIndex = 6;
     //
     // txtLocalidadCLI
     //
     this.txtLocalidadCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtLocalidadCLI.Location = new System.Drawing.Point(90, 149);
     this.txtLocalidadCLI.Name = "txtLocalidadCLI";
     this.txtLocalidadCLI.Size = new System.Drawing.Size(295, 20);
     this.txtLocalidadCLI.TabIndex = 5;
     //
     // txtDireccionCLI
     //
     this.txtDireccionCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtDireccionCLI.Location = new System.Drawing.Point(90, 123);
     this.txtDireccionCLI.Name = "txtDireccionCLI";
     this.txtDireccionCLI.Size = new System.Drawing.Size(295, 20);
     this.txtDireccionCLI.TabIndex = 4;
     //
     // frmClientes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(639, 557);
     this.ControlBox = false;
     this.Controls.Add(this.cmbCondicion);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.txtFechaNacCLI);
     this.Controls.Add(this.grpCampos);
     this.Controls.Add(this.gvwDatos);
     this.Controls.Add(this.grpBotones);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.txtCUIT);
     this.Controls.Add(this.txtRazonSocialCLI);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "frmClientes";
     this.Text = "Clientes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmClientes_FormClosing);
     this.Load += new System.EventHandler(this.frmClientes_Load);
     this.grpCampos.ResumeLayout(false);
     this.grpCampos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).EndInit();
     this.grpBotones.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Initializes a new instance of the <see cref="CurrencyDataGridViewBase"/> class.
		/// </summary>
		public CurrencyDataGridViewBase()
		{			
			this.components = new System.ComponentModel.Container();			
			
			this.uxCurrencyDataGridView = new System.Windows.Forms.DataGridView();
			this.uxCurrencyBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.uxCurrencyErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxCurrencyCodeDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxNameDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxModifiedDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyDataGridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyErrorProvider)).BeginInit();
			this.SuspendLayout();
						
			// 
			// uxCurrencyErrorProvider
			// 
			this.uxCurrencyErrorProvider.ContainerControl = this;
			this.uxCurrencyErrorProvider.DataSource = this.uxCurrencyBindingSource;						
			// 
			// uxCurrencyDataGridView
			// 
			this.uxCurrencyDataGridView.AutoGenerateColumns = false;
			this.uxCurrencyDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.uxCurrencyDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
		this.uxCurrencyCodeDataGridViewColumn,
		this.uxNameDataGridViewColumn,
		this.uxModifiedDateDataGridViewColumn			});
			this.uxCurrencyDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
			this.uxCurrencyDataGridView.Location = new System.Drawing.Point(0, 0);
			this.uxCurrencyDataGridView.Name = "uxCurrencyDataGridView";
			this.uxCurrencyDataGridView.Size = new System.Drawing.Size(470, 300);
			this.uxCurrencyDataGridView.TabIndex = 0;	
			this.uxCurrencyDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
			this.uxCurrencyDataGridView.EnableHeadersVisualStyles = false;
			this.uxCurrencyDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnCurrencyDataGridViewDataError);
			this.uxCurrencyDataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnCurrencyDataGridViewCellValueNeeded);
			this.uxCurrencyDataGridView.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnCurrencyDataGridViewCellValuePushed);
			
			//
			// uxCurrencyCodeDataGridViewColumn
			//
			this.uxCurrencyCodeDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCurrencyCodeDataGridViewColumn.DataPropertyName = "CurrencyCode";
			this.uxCurrencyCodeDataGridViewColumn.HeaderText = "CurrencyCode";
			this.uxCurrencyCodeDataGridViewColumn.Name = "uxCurrencyCodeDataGridViewColumn";
			this.uxCurrencyCodeDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCurrencyCodeDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCurrencyCodeDataGridViewColumn.ReadOnly = false;		
			//
			// uxNameDataGridViewColumn
			//
			this.uxNameDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxNameDataGridViewColumn.DataPropertyName = "Name";
			this.uxNameDataGridViewColumn.HeaderText = "Name";
			this.uxNameDataGridViewColumn.Name = "uxNameDataGridViewColumn";
			this.uxNameDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxNameDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxNameDataGridViewColumn.ReadOnly = false;		
			//
			// uxModifiedDateDataGridViewColumn
			//
			this.uxModifiedDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.HeaderText = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.Name = "uxModifiedDateDataGridViewColumn";
			this.uxModifiedDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxModifiedDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxModifiedDateDataGridViewColumn.ReadOnly = false;		
			
			// this
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.uxCurrencyDataGridView);
			this.Name = "CurrencyDataGridView";
			this.Size = new System.Drawing.Size(470, 300);
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyDataGridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyBindingSource)).EndInit();
			this.ResumeLayout(false);
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tBLSheekWaredBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dSFellowship = new Fellowship.DataSources.DSFellowship();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cDSyndicateBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEdaraId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cDEDARETBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSheekMony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSheekNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSheekDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colEdaraSarfDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNkapaSarfDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEdaraMandopId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.tBLEdaraMandopBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditnkapaMandopId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.tBLNkapaMandopBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tableAdapterManager = new Fellowship.DataSources.DSFellowshipTableAdapters.TableAdapterManager();
     this.cDEDARETTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.CDEDARETTableAdapter();
     this.cDSyndicateTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.CDSyndicateTableAdapter();
     this.tBLEdaraMandopTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLEdaraMandopTableAdapter();
     this.tBLNkapaMandopTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLNkapaMandopTableAdapter();
     this.tBLSheekWaredTableAdapter = new Fellowship.DataSources.DSFellowshipTableAdapters.TBLSheekWaredTableAdapter();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLSheekWaredBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSFellowship)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDEDARETBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraMandopId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLEdaraMandopBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditnkapaMandopId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLNkapaMandopBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tBLSheekWaredBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemGridLookUpEditEdaraId,
     this.repositoryItemGridLookUpEditEdaraMandopId,
     this.repositoryItemGridLookUpEditnkapaMandopId});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tBLSheekWaredBindingSource
     //
     this.tBLSheekWaredBindingSource.DataMember = "TBLSheekWared";
     this.tBLSheekWaredBindingSource.DataSource = this.dSFellowship;
     //
     // dSFellowship
     //
     this.dSFellowship.DataSetName = "DSFellowship";
     this.dSFellowship.Locale = new System.Globalization.CultureInfo("en-US");
     this.dSFellowship.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicateId,
     this.colEdaraId,
     this.colSheekMony,
     this.colSheekNo,
     this.colSheekDate,
     this.colEdaraSarfDate,
     this.colNkapaSarfDate,
     this.colEdaraMandopId,
     this.colnkapaMandopId,
     this.gridColumnSave,
     this.gridColumnDelete});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colSyndicateId
     //
     this.colSyndicateId.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.Caption = "الفرعيه";
     this.colSyndicateId.ColumnEdit = this.repositoryItemGridLookUpEditSyndicateId;
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 0;
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DataSource = this.cDSyndicateBindingSource;
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     this.repositoryItemGridLookUpEditSyndicateId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditSyndicateId_ButtonClick);
     //
     // cDSyndicateBindingSource
     //
     this.cDSyndicateBindingSource.DataMember = "CDSyndicate";
     this.cDSyndicateBindingSource.DataSource = this.dSFellowship;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // colEdaraId
     //
     this.colEdaraId.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraId.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraId.Caption = "الادارة";
     this.colEdaraId.ColumnEdit = this.repositoryItemGridLookUpEditEdaraId;
     this.colEdaraId.FieldName = "EdaraId";
     this.colEdaraId.Name = "colEdaraId";
     this.colEdaraId.Visible = true;
     this.colEdaraId.VisibleIndex = 1;
     //
     // repositoryItemGridLookUpEditEdaraId
     //
     this.repositoryItemGridLookUpEditEdaraId.AutoHeight = false;
     this.repositoryItemGridLookUpEditEdaraId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.repositoryItemGridLookUpEditEdaraId.DataSource = this.cDEDARETBindingSource;
     this.repositoryItemGridLookUpEditEdaraId.DisplayMember = "EDARET";
     this.repositoryItemGridLookUpEditEdaraId.Name = "repositoryItemGridLookUpEditEdaraId";
     this.repositoryItemGridLookUpEditEdaraId.NullText = "";
     this.repositoryItemGridLookUpEditEdaraId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEdaraId.ValueMember = "EdaraId";
     this.repositoryItemGridLookUpEditEdaraId.View = this.gridView1;
     this.repositoryItemGridLookUpEditEdaraId.QueryPopUp += new System.ComponentModel.CancelEventHandler(this.repositoryItemGridLookUpEditEdaraId_QueryPopUp);
     this.repositoryItemGridLookUpEditEdaraId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditEdaraId_ButtonClick);
     //
     // cDEDARETBindingSource
     //
     this.cDEDARETBindingSource.DataMember = "CDEDARET";
     this.cDEDARETBindingSource.DataSource = this.dSFellowship;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "الادارة";
     this.gridColumn1.FieldName = "EDARET";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // colSheekMony
     //
     this.colSheekMony.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekMony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekMony.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekMony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekMony.Caption = "المبلغ";
     this.colSheekMony.ColumnEdit = this.repositoryItemCalcEditf2;
     this.colSheekMony.FieldName = "SheekMony";
     this.colSheekMony.Name = "colSheekMony";
     this.colSheekMony.Visible = true;
     this.colSheekMony.VisibleIndex = 2;
     this.colSheekMony.Width = 56;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // colSheekNo
     //
     this.colSheekNo.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekNo.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekNo.Caption = "رقم الشيك";
     this.colSheekNo.FieldName = "SheekNo";
     this.colSheekNo.Name = "colSheekNo";
     this.colSheekNo.Visible = true;
     this.colSheekNo.VisibleIndex = 3;
     //
     // colSheekDate
     //
     this.colSheekDate.AppearanceCell.Options.UseTextOptions = true;
     this.colSheekDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSheekDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSheekDate.Caption = "تاريخ الشيك";
     this.colSheekDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colSheekDate.FieldName = "SheekDate";
     this.colSheekDate.Name = "colSheekDate";
     this.colSheekDate.Visible = true;
     this.colSheekDate.VisibleIndex = 4;
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // colEdaraSarfDate
     //
     this.colEdaraSarfDate.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraSarfDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraSarfDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraSarfDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraSarfDate.Caption = "تاريخ عمولة الادارة";
     this.colEdaraSarfDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colEdaraSarfDate.FieldName = "EdaraSarfDate";
     this.colEdaraSarfDate.Name = "colEdaraSarfDate";
     this.colEdaraSarfDate.Visible = true;
     this.colEdaraSarfDate.VisibleIndex = 5;
     this.colEdaraSarfDate.Width = 104;
     //
     // colNkapaSarfDate
     //
     this.colNkapaSarfDate.AppearanceCell.Options.UseTextOptions = true;
     this.colNkapaSarfDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNkapaSarfDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colNkapaSarfDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNkapaSarfDate.Caption = "تاريخ عمولة النقابه";
     this.colNkapaSarfDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colNkapaSarfDate.FieldName = "NkapaSarfDate";
     this.colNkapaSarfDate.Name = "colNkapaSarfDate";
     this.colNkapaSarfDate.Visible = true;
     this.colNkapaSarfDate.VisibleIndex = 6;
     this.colNkapaSarfDate.Width = 102;
     //
     // colEdaraMandopId
     //
     this.colEdaraMandopId.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopId.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopId.Caption = "مندوب الادارة";
     this.colEdaraMandopId.ColumnEdit = this.repositoryItemGridLookUpEditEdaraMandopId;
     this.colEdaraMandopId.FieldName = "EdaraMandopId";
     this.colEdaraMandopId.Name = "colEdaraMandopId";
     this.colEdaraMandopId.Visible = true;
     this.colEdaraMandopId.VisibleIndex = 7;
     this.colEdaraMandopId.Width = 109;
     //
     // repositoryItemGridLookUpEditEdaraMandopId
     //
     this.repositoryItemGridLookUpEditEdaraMandopId.AutoHeight = false;
     this.repositoryItemGridLookUpEditEdaraMandopId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.repositoryItemGridLookUpEditEdaraMandopId.DataSource = this.tBLEdaraMandopBindingSource;
     this.repositoryItemGridLookUpEditEdaraMandopId.DisplayMember = "EdaraMandopName";
     this.repositoryItemGridLookUpEditEdaraMandopId.Name = "repositoryItemGridLookUpEditEdaraMandopId";
     this.repositoryItemGridLookUpEditEdaraMandopId.NullText = "";
     this.repositoryItemGridLookUpEditEdaraMandopId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEdaraMandopId.ValueMember = "EdaraMandopId";
     this.repositoryItemGridLookUpEditEdaraMandopId.View = this.gridView3;
     this.repositoryItemGridLookUpEditEdaraMandopId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditEdaraMandopId_ButtonClick);
     //
     // tBLEdaraMandopBindingSource
     //
     this.tBLEdaraMandopBindingSource.DataMember = "TBLEdaraMandop";
     this.tBLEdaraMandopBindingSource.DataSource = this.dSFellowship;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "الاسم";
     this.gridColumn4.FieldName = "EdaraMandopName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // colnkapaMandopId
     //
     this.colnkapaMandopId.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopId.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopId.Caption = "مندوب النقابة";
     this.colnkapaMandopId.ColumnEdit = this.repositoryItemGridLookUpEditnkapaMandopId;
     this.colnkapaMandopId.FieldName = "nkapaMandopId";
     this.colnkapaMandopId.Name = "colnkapaMandopId";
     this.colnkapaMandopId.Visible = true;
     this.colnkapaMandopId.VisibleIndex = 8;
     this.colnkapaMandopId.Width = 80;
     //
     // repositoryItemGridLookUpEditnkapaMandopId
     //
     this.repositoryItemGridLookUpEditnkapaMandopId.AutoHeight = false;
     this.repositoryItemGridLookUpEditnkapaMandopId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, false, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemGridLookUpEditnkapaMandopId.DataSource = this.tBLNkapaMandopBindingSource;
     this.repositoryItemGridLookUpEditnkapaMandopId.DisplayMember = "nkapaMandopName";
     this.repositoryItemGridLookUpEditnkapaMandopId.Name = "repositoryItemGridLookUpEditnkapaMandopId";
     this.repositoryItemGridLookUpEditnkapaMandopId.NullText = "";
     this.repositoryItemGridLookUpEditnkapaMandopId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditnkapaMandopId.ValueMember = "nkapaMandopId";
     this.repositoryItemGridLookUpEditnkapaMandopId.View = this.gridView4;
     this.repositoryItemGridLookUpEditnkapaMandopId.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemGridLookUpEditnkapaMandopId_ButtonClick);
     //
     // tBLNkapaMandopBindingSource
     //
     this.tBLNkapaMandopBindingSource.DataMember = "TBLNkapaMandop";
     this.tBLNkapaMandopBindingSource.DataSource = this.dSFellowship;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "الاسم";
     this.gridColumn5.FieldName = "nkapaMandopName";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 9;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 10;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // tableAdapterManager
     //
     this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
     this.tableAdapterManager.CDEDARETTableAdapter = this.cDEDARETTableAdapter;
     this.tableAdapterManager.CDModereaTableAdapter = null;
     this.tableAdapterManager.CDStateTableAdapter = null;
     this.tableAdapterManager.CDSyndicateTableAdapter = this.cDSyndicateTableAdapter;
     this.tableAdapterManager.TBLEdaraMandopTableAdapter = this.tBLEdaraMandopTableAdapter;
     this.tableAdapterManager.TblMemberTableAdapter = null;
     this.tableAdapterManager.TBLNkapaMandopTableAdapter = this.tBLNkapaMandopTableAdapter;
     this.tableAdapterManager.TblSarfTableAdapter = null;
     this.tableAdapterManager.TBLSheekMonthTableAdapter = null;
     this.tableAdapterManager.TBLSheekWaredTableAdapter = this.tBLSheekWaredTableAdapter;
     this.tableAdapterManager.UpdateOrder = Fellowship.DataSources.DSFellowshipTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
     this.tableAdapterManager.UsersTableAdapter = null;
     //
     // cDEDARETTableAdapter
     //
     this.cDEDARETTableAdapter.ClearBeforeFill = true;
     //
     // cDSyndicateTableAdapter
     //
     this.cDSyndicateTableAdapter.ClearBeforeFill = true;
     //
     // tBLEdaraMandopTableAdapter
     //
     this.tBLEdaraMandopTableAdapter.ClearBeforeFill = true;
     //
     // tBLNkapaMandopTableAdapter
     //
     this.tBLNkapaMandopTableAdapter.ClearBeforeFill = true;
     //
     // tBLSheekWaredTableAdapter
     //
     this.tBLSheekWaredTableAdapter.ClearBeforeFill = true;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // 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.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::Fellowship.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // TBLSheekWaredFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLSheekWaredFrm";
     this.Text = "الشيكات الواردة";
     this.Load += new System.EventHandler(this.stu_nashatFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLSheekWaredBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSFellowship)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSyndicateBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDEDARETBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEdaraMandopId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLEdaraMandopBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditnkapaMandopId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLNkapaMandopBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditIonMobilityLibraryDlg));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.label1 = new System.Windows.Forms.Label();
     this.textLibraryName = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.textDatabase = new System.Windows.Forms.TextBox();
     this.btnBrowseDb = new System.Windows.Forms.Button();
     this.btnOk = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnImportFromLibrary = new System.Windows.Forms.Button();
     this.labelNumPeptides = new System.Windows.Forms.Label();
     this.btnCreateDb = new System.Windows.Forms.Button();
     this.bindingSourceLibrary = new System.Windows.Forms.BindingSource(this.components);
     this.bindingSourceStandard = new System.Windows.Forms.BindingSource(this.components);
     this.contextMenuAdd = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addResultsContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addSpectralLibraryContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addIRTDatabaseContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label4 = new System.Windows.Forms.Label();
     this.gridViewMeasuredPeptides = new pwiz.Skyline.Controls.DataGridViewEx();
     this.toolTipImportBtn = new System.Windows.Forms.ToolTip(this.components);
     this.toolTipMeasuredPeptidesGrid = new System.Windows.Forms.ToolTip(this.components);
     this.columnLibrarySequence = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.columnLibraryCollisionalCrossSection = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.columnLibraryHighEnergyDriftTimeOffsetMsec = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceLibrary)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceStandard)).BeginInit();
     this.contextMenuAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMeasuredPeptides)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // textLibraryName
     //
     resources.ApplyResources(this.textLibraryName, "textLibraryName");
     this.textLibraryName.Name = "textLibraryName";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // textDatabase
     //
     resources.ApplyResources(this.textDatabase, "textDatabase");
     this.textDatabase.Name = "textDatabase";
     //
     // btnBrowseDb
     //
     resources.ApplyResources(this.btnBrowseDb, "btnBrowseDb");
     this.btnBrowseDb.Name = "btnBrowseDb";
     this.btnBrowseDb.UseVisualStyleBackColor = true;
     this.btnBrowseDb.Click += new System.EventHandler(this.btnBrowseDb_Click);
     //
     // btnOk
     //
     resources.ApplyResources(this.btnOk, "btnOk");
     this.btnOk.Name = "btnOk";
     this.btnOk.UseVisualStyleBackColor = true;
     this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
     //
     // btnCancel
     //
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // btnImportFromLibrary
     //
     resources.ApplyResources(this.btnImportFromLibrary, "btnImportFromLibrary");
     this.btnImportFromLibrary.Name = "btnImportFromLibrary";
     this.toolTipImportBtn.SetToolTip(this.btnImportFromLibrary, resources.GetString("btnImportFromLibrary.ToolTip"));
     this.btnImportFromLibrary.UseVisualStyleBackColor = true;
     this.btnImportFromLibrary.Click += new System.EventHandler(this.btnImportFromLibrary_Click);
     //
     // labelNumPeptides
     //
     resources.ApplyResources(this.labelNumPeptides, "labelNumPeptides");
     this.labelNumPeptides.Name = "labelNumPeptides";
     //
     // btnCreateDb
     //
     resources.ApplyResources(this.btnCreateDb, "btnCreateDb");
     this.btnCreateDb.Name = "btnCreateDb";
     this.btnCreateDb.UseVisualStyleBackColor = true;
     this.btnCreateDb.Click += new System.EventHandler(this.btnCreateDb_Click);
     //
     // contextMenuAdd
     //
     this.contextMenuAdd.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addResultsContextMenuItem,
     this.addSpectralLibraryContextMenuItem,
     this.addIRTDatabaseContextMenuItem});
     this.contextMenuAdd.Name = "contextMenuAdd";
     resources.ApplyResources(this.contextMenuAdd, "contextMenuAdd");
     //
     // addResultsContextMenuItem
     //
     this.addResultsContextMenuItem.Name = "addResultsContextMenuItem";
     resources.ApplyResources(this.addResultsContextMenuItem, "addResultsContextMenuItem");
     //
     // addSpectralLibraryContextMenuItem
     //
     this.addSpectralLibraryContextMenuItem.Name = "addSpectralLibraryContextMenuItem";
     resources.ApplyResources(this.addSpectralLibraryContextMenuItem, "addSpectralLibraryContextMenuItem");
     //
     // addIRTDatabaseContextMenuItem
     //
     this.addIRTDatabaseContextMenuItem.Name = "addIRTDatabaseContextMenuItem";
     resources.ApplyResources(this.addIRTDatabaseContextMenuItem, "addIRTDatabaseContextMenuItem");
     this.addIRTDatabaseContextMenuItem.Click += new System.EventHandler(this.addIonMobilityLibraryContextMenuItem_Click);
     //
     // label4
     //
     resources.ApplyResources(this.label4, "label4");
     this.label4.Name = "label4";
     //
     // gridViewMeasuredPeptides
     //
     resources.ApplyResources(this.gridViewMeasuredPeptides, "gridViewMeasuredPeptides");
     this.gridViewMeasuredPeptides.AutoGenerateColumns = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.gridViewMeasuredPeptides.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridViewMeasuredPeptides.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridViewMeasuredPeptides.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.columnLibrarySequence,
     this.columnLibraryCollisionalCrossSection,
     this.columnLibraryHighEnergyDriftTimeOffsetMsec});
     this.gridViewMeasuredPeptides.DataSource = this.bindingSourceLibrary;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.gridViewMeasuredPeptides.DefaultCellStyle = dataGridViewCellStyle4;
     this.gridViewMeasuredPeptides.Name = "gridViewMeasuredPeptides";
     this.toolTipMeasuredPeptidesGrid.SetToolTip(this.gridViewMeasuredPeptides, resources.GetString("gridViewMeasuredPeptides.ToolTip"));
     this.toolTipImportBtn.SetToolTip(this.gridViewMeasuredPeptides, resources.GetString("gridViewMeasuredPeptides.ToolTip1"));
     this.gridViewMeasuredPeptides.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.gridViewLibrary_RowsAdded);
     this.gridViewMeasuredPeptides.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.gridViewLibrary_RowsRemoved);
     //
     // columnLibrarySequence
     //
     this.columnLibrarySequence.DataPropertyName = "PeptideModSeq";
     dataGridViewCellStyle2.NullValue = null;
     this.columnLibrarySequence.DefaultCellStyle = dataGridViewCellStyle2;
     resources.ApplyResources(this.columnLibrarySequence, "columnLibrarySequence");
     this.columnLibrarySequence.Name = "columnLibrarySequence";
     //
     // columnLibraryCollisionalCrossSection
     //
     this.columnLibraryCollisionalCrossSection.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.columnLibraryCollisionalCrossSection.DataPropertyName = "CollisionalCrossSection";
     dataGridViewCellStyle3.Format = "N2";
     dataGridViewCellStyle3.NullValue = null;
     this.columnLibraryCollisionalCrossSection.DefaultCellStyle = dataGridViewCellStyle3;
     resources.ApplyResources(this.columnLibraryCollisionalCrossSection, "columnLibraryCollisionalCrossSection");
     this.columnLibraryCollisionalCrossSection.Name = "columnLibraryCollisionalCrossSection";
     //
     // columnLibraryHighEnergyDriftTimeOffsetMsec
     //
     this.columnLibraryHighEnergyDriftTimeOffsetMsec.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.columnLibraryHighEnergyDriftTimeOffsetMsec.DataPropertyName = "HighEnergyDriftTimeOffsetMsec";
     this.columnLibraryHighEnergyDriftTimeOffsetMsec.DefaultCellStyle = dataGridViewCellStyle3;
     resources.ApplyResources(this.columnLibraryHighEnergyDriftTimeOffsetMsec, "columnHighEnergyDriftTimeOffsetMsec");
     this.columnLibraryHighEnergyDriftTimeOffsetMsec.Name = "columnHighEnergyDriftTimeOffsetMsec";
     //
     // EditIonMobilityLibraryDlg
     //
     this.AcceptButton = this.btnOk;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.Controls.Add(this.gridViewMeasuredPeptides);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.btnCreateDb);
     this.Controls.Add(this.labelNumPeptides);
     this.Controls.Add(this.btnImportFromLibrary);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.btnBrowseDb);
     this.Controls.Add(this.textDatabase);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.textLibraryName);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "EditIonMobilityLibraryDlg";
     this.ShowInTaskbar = false;
     this.Load += new System.EventHandler(this.OnLoad);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceLibrary)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSourceStandard)).EndInit();
     this.contextMenuAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMeasuredPeptides)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainAssets));
     this.listBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.assetsDataSet1 = new WWassets.assetsDataSet1();
     this.assetsGB = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel5 = new System.Windows.Forms.Panel();
     this.assetsListBox = new System.Windows.Forms.ListBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.notificationlbl = new System.Windows.Forms.Label();
     this.personPCRB = new System.Windows.Forms.RadioButton();
     this.miscPCRB = new System.Windows.Forms.RadioButton();
     this.panel3 = new System.Windows.Forms.Panel();
     this.serialrb = new System.Windows.Forms.RadioButton();
     this.firstnameRB = new System.Windows.Forms.RadioButton();
     this.lastnameRB = new System.Windows.Forms.RadioButton();
     this.miscnamerb = new System.Windows.Forms.RadioButton();
     this.assetsearchtb = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.miscnamelbl = new System.Windows.Forms.Label();
     this.addAssetBTN = new System.Windows.Forms.Button();
     this.lNameTB = new System.Windows.Forms.TextBox();
     this.firstNameLbl = new System.Windows.Forms.Label();
     this.tagLbl = new System.Windows.Forms.Label();
     this.computerNameTB = new System.Windows.Forms.TextBox();
     this.costcentertb = new System.Windows.Forms.TextBox();
     this.productKeyTB = new System.Windows.Forms.TextBox();
     this.locationcb = new System.Windows.Forms.ComboBox();
     this.dateInServiceTB = new System.Windows.Forms.TextBox();
     this.departmentcb = new System.Windows.Forms.ComboBox();
     this.formfactorcb = new System.Windows.Forms.ComboBox();
     this.fNameTB = new System.Windows.Forms.TextBox();
     this.lNameLbl = new System.Windows.Forms.Label();
     this.pricetb = new System.Windows.Forms.TextBox();
     this.tagNumTB = new System.Windows.Forms.TextBox();
     this.makeLbl = new System.Windows.Forms.Label();
     this.modelLbl = new System.Windows.Forms.Label();
     this.serialLbl = new System.Windows.Forms.Label();
     this.formfactorlbl = new System.Windows.Forms.Label();
     this.makeTB = new System.Windows.Forms.TextBox();
     this.serialTB = new System.Windows.Forms.TextBox();
     this.modelTB = new System.Windows.Forms.TextBox();
     this.pricelbl = new System.Windows.Forms.Label();
     this.locationlbl = new System.Windows.Forms.Label();
     this.costcenterlbl = new System.Windows.Forms.Label();
     this.departmentlbl = new System.Windows.Forms.Label();
     this.dateInServiceLbl = new System.Windows.Forms.Label();
     this.productKeyLbl = new System.Windows.Forms.Label();
     this.computerNameLbl = new System.Windows.Forms.Label();
     this.userInfoTA = new WWassets.assetsDataSet1TableAdapters.userInfoTA();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.getHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.listTableAdapter1 = new WWassets.assetsDataSetTableAdapters.listTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.listBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.assetsDataSet1)).BeginInit();
     this.assetsGB.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listBindingSource
     //
     this.listBindingSource.DataMember = "list";
     this.listBindingSource.DataSource = this.assetsDataSet1;
     //
     // assetsDataSet1
     //
     this.assetsDataSet1.DataSetName = "assetsDataSet1";
     this.assetsDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // assetsGB
     //
     this.assetsGB.Controls.Add(this.splitContainer1);
     this.assetsGB.Dock = System.Windows.Forms.DockStyle.Fill;
     this.assetsGB.Location = new System.Drawing.Point(0, 24);
     this.assetsGB.Name = "assetsGB";
     this.assetsGB.Size = new System.Drawing.Size(556, 606);
     this.assetsGB.TabIndex = 1;
     this.assetsGB.TabStop = false;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Left;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.panel5);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.panel4);
     this.splitContainer1.Panel2.Controls.Add(this.panel3);
     this.splitContainer1.Panel2.Controls.Add(this.panel2);
     this.splitContainer1.Size = new System.Drawing.Size(545, 587);
     this.splitContainer1.SplitterDistance = 181;
     this.splitContainer1.TabIndex = 1;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.assetsListBox);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(181, 587);
     this.panel5.TabIndex = 0;
     //
     // assetsListBox
     //
     this.assetsListBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.assetsListBox.FormattingEnabled = true;
     this.assetsListBox.Location = new System.Drawing.Point(0, 0);
     this.assetsListBox.Name = "assetsListBox";
     this.assetsListBox.Size = new System.Drawing.Size(181, 587);
     this.assetsListBox.TabIndex = 0;
     this.assetsListBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.assetsListBox_MouseClick);
     //
     // panel4
     //
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.notificationlbl);
     this.panel4.Controls.Add(this.personPCRB);
     this.panel4.Controls.Add(this.miscPCRB);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(181, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(179, 122);
     this.panel4.TabIndex = 2;
     //
     // notificationlbl
     //
     this.notificationlbl.AutoSize = true;
     this.notificationlbl.Location = new System.Drawing.Point(4, 9);
     this.notificationlbl.Name = "notificationlbl";
     this.notificationlbl.Size = new System.Drawing.Size(168, 26);
     this.notificationlbl.TabIndex = 2;
     this.notificationlbl.Text = "Please select one of the following \r\noptions.";
     //
     // personPCRB
     //
     this.personPCRB.AutoSize = true;
     this.personPCRB.Location = new System.Drawing.Point(14, 44);
     this.personPCRB.Name = "personPCRB";
     this.personPCRB.Size = new System.Drawing.Size(114, 17);
     this.personPCRB.TabIndex = 1;
     this.personPCRB.TabStop = true;
     this.personPCRB.Text = "Personal Computer";
     this.personPCRB.UseVisualStyleBackColor = true;
     //
     // miscPCRB
     //
     this.miscPCRB.AutoSize = true;
     this.miscPCRB.Location = new System.Drawing.Point(14, 67);
     this.miscPCRB.Name = "miscPCRB";
     this.miscPCRB.Size = new System.Drawing.Size(140, 17);
     this.miscPCRB.TabIndex = 0;
     this.miscPCRB.TabStop = true;
     this.miscPCRB.Text = "Miscellaneous Computer";
     this.miscPCRB.UseVisualStyleBackColor = true;
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.serialrb);
     this.panel3.Controls.Add(this.firstnameRB);
     this.panel3.Controls.Add(this.lastnameRB);
     this.panel3.Controls.Add(this.miscnamerb);
     this.panel3.Controls.Add(this.assetsearchtb);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(183, 122);
     this.panel3.TabIndex = 1;
     //
     // serialrb
     //
     this.serialrb.AutoSize = true;
     this.serialrb.Location = new System.Drawing.Point(40, 97);
     this.serialrb.Name = "serialrb";
     this.serialrb.Size = new System.Drawing.Size(91, 17);
     this.serialrb.TabIndex = 35;
     this.serialrb.TabStop = true;
     this.serialrb.Text = "Serial Number";
     this.serialrb.UseVisualStyleBackColor = true;
     //
     // firstnameRB
     //
     this.firstnameRB.AutoSize = true;
     this.firstnameRB.Location = new System.Drawing.Point(40, 28);
     this.firstnameRB.Name = "firstnameRB";
     this.firstnameRB.Size = new System.Drawing.Size(75, 17);
     this.firstnameRB.TabIndex = 34;
     this.firstnameRB.TabStop = true;
     this.firstnameRB.Text = "First Name";
     this.firstnameRB.UseVisualStyleBackColor = true;
     //
     // lastnameRB
     //
     this.lastnameRB.AutoSize = true;
     this.lastnameRB.Location = new System.Drawing.Point(40, 51);
     this.lastnameRB.Name = "lastnameRB";
     this.lastnameRB.Size = new System.Drawing.Size(76, 17);
     this.lastnameRB.TabIndex = 1;
     this.lastnameRB.TabStop = true;
     this.lastnameRB.Text = "Last Name";
     this.lastnameRB.UseVisualStyleBackColor = true;
     this.lastnameRB.CheckedChanged += new System.EventHandler(this.lastnameRB_CheckedChanged);
     //
     // miscnamerb
     //
     this.miscnamerb.AutoSize = true;
     this.miscnamerb.Location = new System.Drawing.Point(40, 74);
     this.miscnamerb.Name = "miscnamerb";
     this.miscnamerb.Size = new System.Drawing.Size(78, 17);
     this.miscnamerb.TabIndex = 32;
     this.miscnamerb.TabStop = true;
     this.miscnamerb.Text = "Misc Name";
     this.miscnamerb.UseVisualStyleBackColor = true;
     this.miscnamerb.CheckedChanged += new System.EventHandler(this.miscnamerb_CheckedChanged);
     //
     // assetsearchtb
     //
     this.assetsearchtb.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.assetsearchtb.Location = new System.Drawing.Point(3, 3);
     this.assetsearchtb.Name = "assetsearchtb";
     this.assetsearchtb.Size = new System.Drawing.Size(156, 20);
     this.assetsearchtb.TabIndex = 2;
     this.assetsearchtb.TextChanged += new System.EventHandler(this.assetsearchtb_TextChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Controls.Add(this.miscnamelbl);
     this.panel2.Controls.Add(this.addAssetBTN);
     this.panel2.Controls.Add(this.lNameTB);
     this.panel2.Controls.Add(this.firstNameLbl);
     this.panel2.Controls.Add(this.tagLbl);
     this.panel2.Controls.Add(this.computerNameTB);
     this.panel2.Controls.Add(this.costcentertb);
     this.panel2.Controls.Add(this.productKeyTB);
     this.panel2.Controls.Add(this.locationcb);
     this.panel2.Controls.Add(this.dateInServiceTB);
     this.panel2.Controls.Add(this.departmentcb);
     this.panel2.Controls.Add(this.formfactorcb);
     this.panel2.Controls.Add(this.fNameTB);
     this.panel2.Controls.Add(this.lNameLbl);
     this.panel2.Controls.Add(this.pricetb);
     this.panel2.Controls.Add(this.tagNumTB);
     this.panel2.Controls.Add(this.makeLbl);
     this.panel2.Controls.Add(this.modelLbl);
     this.panel2.Controls.Add(this.serialLbl);
     this.panel2.Controls.Add(this.formfactorlbl);
     this.panel2.Controls.Add(this.makeTB);
     this.panel2.Controls.Add(this.serialTB);
     this.panel2.Controls.Add(this.modelTB);
     this.panel2.Controls.Add(this.pricelbl);
     this.panel2.Controls.Add(this.locationlbl);
     this.panel2.Controls.Add(this.costcenterlbl);
     this.panel2.Controls.Add(this.departmentlbl);
     this.panel2.Controls.Add(this.dateInServiceLbl);
     this.panel2.Controls.Add(this.productKeyLbl);
     this.panel2.Controls.Add(this.computerNameLbl);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 122);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(360, 465);
     this.panel2.TabIndex = 0;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(136, 94);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 20);
     this.textBox1.TabIndex = 27;
     //
     // miscnamelbl
     //
     this.miscnamelbl.AutoSize = true;
     this.miscnamelbl.Location = new System.Drawing.Point(67, 101);
     this.miscnamelbl.Name = "miscnamelbl";
     this.miscnamelbl.Size = new System.Drawing.Size(63, 13);
     this.miscnamelbl.TabIndex = 26;
     this.miscnamelbl.Text = "Misc Name:";
     //
     // addAssetBTN
     //
     this.addAssetBTN.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.addAssetBTN.Image = global::WWassets.Properties.Resources.add_asset_btn;
     this.addAssetBTN.Location = new System.Drawing.Point(137, 414);
     this.addAssetBTN.Name = "addAssetBTN";
     this.addAssetBTN.Size = new System.Drawing.Size(83, 28);
     this.addAssetBTN.TabIndex = 21;
     this.addAssetBTN.UseVisualStyleBackColor = true;
     this.addAssetBTN.Click += new System.EventHandler(this.addAssetBtn_Click);
     //
     // lNameTB
     //
     this.lNameTB.Location = new System.Drawing.Point(136, 68);
     this.lNameTB.Name = "lNameTB";
     this.lNameTB.Size = new System.Drawing.Size(100, 20);
     this.lNameTB.TabIndex = 11;
     //
     // firstNameLbl
     //
     this.firstNameLbl.AutoSize = true;
     this.firstNameLbl.Location = new System.Drawing.Point(70, 49);
     this.firstNameLbl.Name = "firstNameLbl";
     this.firstNameLbl.Size = new System.Drawing.Size(60, 13);
     this.firstNameLbl.TabIndex = 1;
     this.firstNameLbl.Text = "First Name:";
     //
     // tagLbl
     //
     this.tagLbl.AutoSize = true;
     this.tagLbl.Location = new System.Drawing.Point(91, 23);
     this.tagLbl.Name = "tagLbl";
     this.tagLbl.Size = new System.Drawing.Size(39, 13);
     this.tagLbl.TabIndex = 0;
     this.tagLbl.Text = "Tag #:";
     //
     // computerNameTB
     //
     this.computerNameTB.Enabled = false;
     this.computerNameTB.Location = new System.Drawing.Point(137, 386);
     this.computerNameTB.Name = "computerNameTB";
     this.computerNameTB.Size = new System.Drawing.Size(120, 20);
     this.computerNameTB.TabIndex = 17;
     //
     // costcentertb
     //
     this.costcentertb.Location = new System.Drawing.Point(137, 309);
     this.costcentertb.Name = "costcentertb";
     this.costcentertb.Size = new System.Drawing.Size(109, 20);
     this.costcentertb.TabIndex = 19;
     //
     // productKeyTB
     //
     this.productKeyTB.Location = new System.Drawing.Point(137, 361);
     this.productKeyTB.Name = "productKeyTB";
     this.productKeyTB.Size = new System.Drawing.Size(162, 20);
     this.productKeyTB.TabIndex = 20;
     this.productKeyTB.TextChanged += new System.EventHandler(this.productKeyTB_TextChanged);
     //
     // locationcb
     //
     this.locationcb.FormattingEnabled = true;
     this.locationcb.Items.AddRange(new object[] {
     "Bismarck Truck Center",
     "Dickinson",
     "Fargo Trailer",
     "Minot",
     "Northwest Truck and Trailer",
     "Wallwork Financial",
     "Wallwork Rent a Car",
     "Wallwork Truck Center",
     "Williston",
     "Valley Imports",
     "Valley Wireless"});
     this.locationcb.Location = new System.Drawing.Point(137, 254);
     this.locationcb.Name = "locationcb";
     this.locationcb.Size = new System.Drawing.Size(143, 21);
     this.locationcb.TabIndex = 17;
     //
     // dateInServiceTB
     //
     this.dateInServiceTB.Enabled = false;
     this.dateInServiceTB.Location = new System.Drawing.Point(137, 335);
     this.dateInServiceTB.Name = "dateInServiceTB";
     this.dateInServiceTB.Size = new System.Drawing.Size(120, 20);
     this.dateInServiceTB.TabIndex = 25;
     //
     // departmentcb
     //
     this.departmentcb.FormattingEnabled = true;
     this.departmentcb.Items.AddRange(new object[] {
     "Admin",
     "Financial",
     "Parts",
     "Sales",
     "Outside Sales",
     "Warranty"});
     this.departmentcb.Location = new System.Drawing.Point(137, 281);
     this.departmentcb.Name = "departmentcb";
     this.departmentcb.Size = new System.Drawing.Size(134, 21);
     this.departmentcb.TabIndex = 18;
     //
     // formfactorcb
     //
     this.formfactorcb.FormattingEnabled = true;
     this.formfactorcb.Location = new System.Drawing.Point(137, 200);
     this.formfactorcb.Name = "formfactorcb";
     this.formfactorcb.Size = new System.Drawing.Size(100, 21);
     this.formfactorcb.TabIndex = 15;
     //
     // fNameTB
     //
     this.fNameTB.Location = new System.Drawing.Point(136, 42);
     this.fNameTB.Name = "fNameTB";
     this.fNameTB.Size = new System.Drawing.Size(100, 20);
     this.fNameTB.TabIndex = 10;
     //
     // lNameLbl
     //
     this.lNameLbl.AutoSize = true;
     this.lNameLbl.Location = new System.Drawing.Point(70, 75);
     this.lNameLbl.Name = "lNameLbl";
     this.lNameLbl.Size = new System.Drawing.Size(61, 13);
     this.lNameLbl.TabIndex = 2;
     this.lNameLbl.Text = "Last Name:";
     //
     // pricetb
     //
     this.pricetb.Location = new System.Drawing.Point(137, 228);
     this.pricetb.Name = "pricetb";
     this.pricetb.Size = new System.Drawing.Size(100, 20);
     this.pricetb.TabIndex = 16;
     //
     // tagNumTB
     //
     this.tagNumTB.Enabled = false;
     this.tagNumTB.Location = new System.Drawing.Point(136, 16);
     this.tagNumTB.Name = "tagNumTB";
     this.tagNumTB.Size = new System.Drawing.Size(32, 20);
     this.tagNumTB.TabIndex = 9;
     //
     // makeLbl
     //
     this.makeLbl.AutoSize = true;
     this.makeLbl.Location = new System.Drawing.Point(94, 128);
     this.makeLbl.Name = "makeLbl";
     this.makeLbl.Size = new System.Drawing.Size(37, 13);
     this.makeLbl.TabIndex = 3;
     this.makeLbl.Text = "Make:";
     //
     // modelLbl
     //
     this.modelLbl.AutoSize = true;
     this.modelLbl.Location = new System.Drawing.Point(92, 154);
     this.modelLbl.Name = "modelLbl";
     this.modelLbl.Size = new System.Drawing.Size(39, 13);
     this.modelLbl.TabIndex = 4;
     this.modelLbl.Text = "Model:";
     //
     // serialLbl
     //
     this.serialLbl.AutoSize = true;
     this.serialLbl.Location = new System.Drawing.Point(85, 180);
     this.serialLbl.Name = "serialLbl";
     this.serialLbl.Size = new System.Drawing.Size(46, 13);
     this.serialLbl.TabIndex = 5;
     this.serialLbl.Text = "Serial #:";
     //
     // formfactorlbl
     //
     this.formfactorlbl.AutoSize = true;
     this.formfactorlbl.Location = new System.Drawing.Point(65, 208);
     this.formfactorlbl.Name = "formfactorlbl";
     this.formfactorlbl.Size = new System.Drawing.Size(66, 13);
     this.formfactorlbl.TabIndex = 19;
     this.formfactorlbl.Text = "Form Factor:";
     //
     // makeTB
     //
     this.makeTB.Location = new System.Drawing.Point(137, 121);
     this.makeTB.Name = "makeTB";
     this.makeTB.Size = new System.Drawing.Size(100, 20);
     this.makeTB.TabIndex = 12;
     //
     // serialTB
     //
     this.serialTB.Location = new System.Drawing.Point(137, 173);
     this.serialTB.Name = "serialTB";
     this.serialTB.Size = new System.Drawing.Size(100, 20);
     this.serialTB.TabIndex = 14;
     this.serialTB.TextChanged += new System.EventHandler(this.serialTB_TextChanged);
     //
     // modelTB
     //
     this.modelTB.Location = new System.Drawing.Point(137, 147);
     this.modelTB.Name = "modelTB";
     this.modelTB.Size = new System.Drawing.Size(100, 20);
     this.modelTB.TabIndex = 13;
     //
     // pricelbl
     //
     this.pricelbl.AutoSize = true;
     this.pricelbl.Location = new System.Drawing.Point(97, 235);
     this.pricelbl.Name = "pricelbl";
     this.pricelbl.Size = new System.Drawing.Size(34, 13);
     this.pricelbl.TabIndex = 19;
     this.pricelbl.Text = "Price:";
     //
     // locationlbl
     //
     this.locationlbl.AutoSize = true;
     this.locationlbl.Location = new System.Drawing.Point(80, 262);
     this.locationlbl.Name = "locationlbl";
     this.locationlbl.Size = new System.Drawing.Size(51, 13);
     this.locationlbl.TabIndex = 19;
     this.locationlbl.Text = "Location:";
     //
     // costcenterlbl
     //
     this.costcenterlbl.AutoSize = true;
     this.costcenterlbl.Location = new System.Drawing.Point(66, 316);
     this.costcenterlbl.Name = "costcenterlbl";
     this.costcenterlbl.Size = new System.Drawing.Size(65, 13);
     this.costcenterlbl.TabIndex = 19;
     this.costcenterlbl.Text = "Cost Center:";
     //
     // departmentlbl
     //
     this.departmentlbl.AutoSize = true;
     this.departmentlbl.Location = new System.Drawing.Point(67, 288);
     this.departmentlbl.Name = "departmentlbl";
     this.departmentlbl.Size = new System.Drawing.Size(65, 13);
     this.departmentlbl.TabIndex = 19;
     this.departmentlbl.Text = "Department:";
     //
     // dateInServiceLbl
     //
     this.dateInServiceLbl.AutoSize = true;
     this.dateInServiceLbl.Location = new System.Drawing.Point(47, 342);
     this.dateInServiceLbl.Name = "dateInServiceLbl";
     this.dateInServiceLbl.Size = new System.Drawing.Size(84, 13);
     this.dateInServiceLbl.TabIndex = 6;
     this.dateInServiceLbl.Text = "Date In Service:";
     //
     // productKeyLbl
     //
     this.productKeyLbl.AutoSize = true;
     this.productKeyLbl.Location = new System.Drawing.Point(63, 368);
     this.productKeyLbl.Name = "productKeyLbl";
     this.productKeyLbl.Size = new System.Drawing.Size(68, 13);
     this.productKeyLbl.TabIndex = 7;
     this.productKeyLbl.Text = "Product Key:";
     //
     // computerNameLbl
     //
     this.computerNameLbl.AutoSize = true;
     this.computerNameLbl.Location = new System.Drawing.Point(45, 393);
     this.computerNameLbl.Name = "computerNameLbl";
     this.computerNameLbl.Size = new System.Drawing.Size(86, 13);
     this.computerNameLbl.TabIndex = 8;
     this.computerNameLbl.Text = "Computer Name:";
     //
     // userInfoTA
     //
     this.userInfoTA.ClearBeforeFill = true;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(556, 24);
     this.menuStrip1.TabIndex = 3;
     this.menuStrip1.Text = "menuStrip1";
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
     this.toolStripMenuItem1.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.getHelpToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // getHelpToolStripMenuItem
     //
     this.getHelpToolStripMenuItem.Name = "getHelpToolStripMenuItem";
     this.getHelpToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.getHelpToolStripMenuItem.Text = "Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // listTableAdapter1
     //
     this.listTableAdapter1.ClearBeforeFill = true;
     //
     // mainAssets
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::WWassets.Properties.Resources.tabbackground_copy;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(556, 630);
     this.Controls.Add(this.assetsGB);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "mainAssets";
     this.Text = "Wallwork Assets";
     ((System.ComponentModel.ISupportInitialize)(this.listBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.assetsDataSet1)).EndInit();
     this.assetsGB.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label baudRateLabel;
     System.Windows.Forms.Label dataBitsLabel;
     System.Windows.Forms.Label parityLabel;
     System.Windows.Forms.Label portNameLabel;
     System.Windows.Forms.Label stopBitsLabel;
     this.baudRateComboBox = new System.Windows.Forms.ComboBox();
     this.serialSettingsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dataBitsComboBox = new System.Windows.Forms.ComboBox();
     this.parityComboBox = new System.Windows.Forms.ComboBox();
     this.portNameComboBox = new System.Windows.Forms.ComboBox();
     this.stopBitsComboBox = new System.Windows.Forms.ComboBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnStart = new System.Windows.Forms.Button();
     this.tbData = new System.Windows.Forms.TextBox();
     this.btnStop = new System.Windows.Forms.Button();
     baudRateLabel = new System.Windows.Forms.Label();
     dataBitsLabel = new System.Windows.Forms.Label();
     parityLabel = new System.Windows.Forms.Label();
     portNameLabel = new System.Windows.Forms.Label();
     stopBitsLabel = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.serialSettingsBindingSource)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // baudRateLabel
     //
     baudRateLabel.AutoSize = true;
     baudRateLabel.Location = new System.Drawing.Point(10, 59);
     baudRateLabel.Name = "baudRateLabel";
     baudRateLabel.Size = new System.Drawing.Size(61, 13);
     baudRateLabel.TabIndex = 1;
     baudRateLabel.Text = "Baud Rate:";
     //
     // dataBitsLabel
     //
     dataBitsLabel.AutoSize = true;
     dataBitsLabel.Location = new System.Drawing.Point(10, 86);
     dataBitsLabel.Name = "dataBitsLabel";
     dataBitsLabel.Size = new System.Drawing.Size(53, 13);
     dataBitsLabel.TabIndex = 3;
     dataBitsLabel.Text = "Data Bits:";
     //
     // parityLabel
     //
     parityLabel.AutoSize = true;
     parityLabel.Location = new System.Drawing.Point(10, 113);
     parityLabel.Name = "parityLabel";
     parityLabel.Size = new System.Drawing.Size(36, 13);
     parityLabel.TabIndex = 5;
     parityLabel.Text = "Parity:";
     //
     // portNameLabel
     //
     portNameLabel.AutoSize = true;
     portNameLabel.Location = new System.Drawing.Point(10, 32);
     portNameLabel.Name = "portNameLabel";
     portNameLabel.Size = new System.Drawing.Size(60, 13);
     portNameLabel.TabIndex = 7;
     portNameLabel.Text = "Port Name:";
     //
     // stopBitsLabel
     //
     stopBitsLabel.AutoSize = true;
     stopBitsLabel.Location = new System.Drawing.Point(10, 140);
     stopBitsLabel.Name = "stopBitsLabel";
     stopBitsLabel.Size = new System.Drawing.Size(52, 13);
     stopBitsLabel.TabIndex = 9;
     stopBitsLabel.Text = "Stop Bits:";
     //
     // baudRateComboBox
     //
     this.baudRateComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.serialSettingsBindingSource, "BaudRate", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.baudRateComboBox.FormattingEnabled = true;
     this.baudRateComboBox.Location = new System.Drawing.Point(77, 56);
     this.baudRateComboBox.Name = "baudRateComboBox";
     this.baudRateComboBox.Size = new System.Drawing.Size(121, 21);
     this.baudRateComboBox.TabIndex = 2;
     //
     // serialSettingsBindingSource
     //
     this.serialSettingsBindingSource.DataSource = typeof(SerialPortListener.Serial.SerialSettings);
     //
     // dataBitsComboBox
     //
     this.dataBitsComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.serialSettingsBindingSource, "DataBits", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.dataBitsComboBox.FormattingEnabled = true;
     this.dataBitsComboBox.Location = new System.Drawing.Point(77, 83);
     this.dataBitsComboBox.Name = "dataBitsComboBox";
     this.dataBitsComboBox.Size = new System.Drawing.Size(121, 21);
     this.dataBitsComboBox.TabIndex = 4;
     //
     // parityComboBox
     //
     this.parityComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.serialSettingsBindingSource, "Parity", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.parityComboBox.FormattingEnabled = true;
     this.parityComboBox.Location = new System.Drawing.Point(77, 110);
     this.parityComboBox.Name = "parityComboBox";
     this.parityComboBox.Size = new System.Drawing.Size(121, 21);
     this.parityComboBox.TabIndex = 6;
     //
     // portNameComboBox
     //
     this.portNameComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.serialSettingsBindingSource, "PortName", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.portNameComboBox.FormattingEnabled = true;
     this.portNameComboBox.Location = new System.Drawing.Point(77, 29);
     this.portNameComboBox.Name = "portNameComboBox";
     this.portNameComboBox.Size = new System.Drawing.Size(121, 21);
     this.portNameComboBox.TabIndex = 8;
     //
     // stopBitsComboBox
     //
     this.stopBitsComboBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.serialSettingsBindingSource, "StopBits", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.stopBitsComboBox.FormattingEnabled = true;
     this.stopBitsComboBox.Location = new System.Drawing.Point(77, 137);
     this.stopBitsComboBox.Name = "stopBitsComboBox";
     this.stopBitsComboBox.Size = new System.Drawing.Size(121, 21);
     this.stopBitsComboBox.TabIndex = 10;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.baudRateComboBox);
     this.groupBox1.Controls.Add(baudRateLabel);
     this.groupBox1.Controls.Add(this.stopBitsComboBox);
     this.groupBox1.Controls.Add(stopBitsLabel);
     this.groupBox1.Controls.Add(dataBitsLabel);
     this.groupBox1.Controls.Add(this.portNameComboBox);
     this.groupBox1.Controls.Add(this.dataBitsComboBox);
     this.groupBox1.Controls.Add(portNameLabel);
     this.groupBox1.Controls.Add(parityLabel);
     this.groupBox1.Controls.Add(this.parityComboBox);
     this.groupBox1.Location = new System.Drawing.Point(110, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(217, 171);
     this.groupBox1.TabIndex = 11;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Serial Port Settings";
     //
     // btnStart
     //
     this.btnStart.Location = new System.Drawing.Point(152, 215);
     this.btnStart.Name = "btnStart";
     this.btnStart.Size = new System.Drawing.Size(85, 23);
     this.btnStart.TabIndex = 12;
     this.btnStart.Text = "Start listening";
     this.btnStart.UseVisualStyleBackColor = true;
     this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
     //
     // tbData
     //
     this.tbData.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.tbData.Location = new System.Drawing.Point(12, 260);
     this.tbData.Multiline = true;
     this.tbData.Name = "tbData";
     this.tbData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.tbData.Size = new System.Drawing.Size(431, 199);
     this.tbData.TabIndex = 13;
     //
     // btnStop
     //
     this.btnStop.Location = new System.Drawing.Point(242, 215);
     this.btnStop.Name = "btnStop";
     this.btnStop.Size = new System.Drawing.Size(85, 23);
     this.btnStop.TabIndex = 12;
     this.btnStop.Text = "Stop listening";
     this.btnStop.UseVisualStyleBackColor = true;
     this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(455, 475);
     this.Controls.Add(this.tbData);
     this.Controls.Add(this.btnStop);
     this.Controls.Add(this.btnStart);
     this.Controls.Add(this.groupBox1);
     this.Name = "MainForm";
     this.Text = "RSLog Plus";
     ((System.ComponentModel.ISupportInitialize)(this.serialSettingsBindingSource)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tblWarasaAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditDofatSarfAId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPersonId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditamanatrem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colaccReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostahek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsefa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluseracc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDofatSarfId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanattypeid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditamanattypeid = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemCheckEditCardType = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.tblWarasaAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TblWarasaAmanatTableAdapter();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tblWarasaAmanatBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemCalcEditn0,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditamanatrem,
     this.repositoryItemCheckEditCardType,
     this.repositoryItemGridLookUpEditPersonId,
     this.repositoryItemGridLookUpEditDofatSarfAId,
     this.repositoryItemLookUpEditDofatSarfId,
     this.repositoryItemLookUpEditamanattypeid});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tblWarasaAmanatBindingSource
     //
     this.tblWarasaAmanatBindingSource.DataMember = "TblWarasaAmanat";
     this.tblWarasaAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonId,
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colamanatmony,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colaccReview,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.coluseracc,
     this.colamantvisa,
     this.colsarfcheek,
     this.colDofatSarfId,
     this.gridColumn1,
     this.gridColumn3,
     this.colDofatSarfAId1,
     this.colamanattypeid,
     this.coldateReview,
     this.gridColumn4});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colPersonId
     //
     this.colPersonId.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.Caption = "كود";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 1;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.ColumnEdit = this.repositoryItemGridLookUpEditDofatSarfAId;
     this.colDofatSarfAId.FieldName = "DofatSarfAId";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.ReadOnly = true;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 3;
     this.colDofatSarfAId.Width = 128;
     //
     // repositoryItemGridLookUpEditDofatSarfAId
     //
     this.repositoryItemGridLookUpEditDofatSarfAId.AutoHeight = false;
     this.repositoryItemGridLookUpEditDofatSarfAId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditDofatSarfAId.DataSource = this.cdDofaatAmanatBindingSource;
     this.repositoryItemGridLookUpEditDofatSarfAId.DisplayMember = "DofatSarfA";
     this.repositoryItemGridLookUpEditDofatSarfAId.Name = "repositoryItemGridLookUpEditDofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.ValueMember = "DofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.View = this.gridView3;
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfA});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarfA
     //
     this.colDofatSarfA.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.Caption = "الاسم";
     this.colDofatSarfA.FieldName = "DofatSarfA";
     this.colDofatSarfA.Name = "colDofatSarfA";
     this.colDofatSarfA.Visible = true;
     this.colDofatSarfA.VisibleIndex = 0;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "الاسم";
     this.colMMashatId.ColumnEdit = this.repositoryItemGridLookUpEditPersonId;
     this.colMMashatId.FieldName = "PersonId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.ReadOnly = true;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 4;
     this.colMMashatId.Width = 150;
     //
     // repositoryItemGridLookUpEditPersonId
     //
     this.repositoryItemGridLookUpEditPersonId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPersonId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPersonId.DataSource = this.LSMSTBLWarasa;
     this.repositoryItemGridLookUpEditPersonId.DisplayMember = "personName";
     this.repositoryItemGridLookUpEditPersonId.Name = "repositoryItemGridLookUpEditPersonId";
     this.repositoryItemGridLookUpEditPersonId.ValueMember = "PersonId";
     this.repositoryItemGridLookUpEditPersonId.View = this.gridView1;
     //
     // LSMSTBLWarasa
     //
     this.LSMSTBLWarasa.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLWarasa_TBLMashat);
     this.LSMSTBLWarasa.KeyExpression = "PersonId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colPersonId1,
     this.colpersonName,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاب";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 0;
     //
     // colPersonId1
     //
     this.colPersonId1.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.Caption = "كود";
     this.colPersonId1.FieldName = "PersonId";
     this.colPersonId1.Name = "colPersonId1";
     this.colPersonId1.Visible = true;
     this.colPersonId1.VisibleIndex = 1;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 2;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // colSyndicate1
     //
     this.colSyndicate1.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.Caption = "فرعية";
     this.colSyndicate1.FieldName = "Syndicate";
     this.colSyndicate1.Name = "colSyndicate1";
     this.colSyndicate1.Visible = true;
     this.colSyndicate1.VisibleIndex = 4;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "لجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 5;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.ColumnEdit = this.repositoryItemMemoExEditamanatrem;
     this.colamanatrem.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.OptionsColumn.ReadOnly = true;
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // repositoryItemMemoExEditamanatrem
     //
     this.repositoryItemMemoExEditamanatrem.AutoHeight = false;
     this.repositoryItemMemoExEditamanatrem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditamanatrem.Name = "repositoryItemMemoExEditamanatrem";
     //
     // colamanatmony
     //
     this.colamanatmony.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.Caption = "المبلغ";
     this.colamanatmony.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.OptionsColumn.ReadOnly = true;
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 6;
     this.colamanatmony.Width = 81;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.OptionsColumn.ReadOnly = true;
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 11;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.OptionsColumn.ReadOnly = true;
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 12;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 21;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 22;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colaccReview
     //
     this.colaccReview.AppearanceCell.Options.UseTextOptions = true;
     this.colaccReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.Caption = "مراجعة (حسابات)";
     this.colaccReview.FieldName = "accReview";
     this.colaccReview.Name = "colaccReview";
     this.colaccReview.OptionsColumn.ReadOnly = true;
     this.colaccReview.Visible = true;
     this.colaccReview.VisibleIndex = 7;
     this.colaccReview.Width = 100;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.OptionsColumn.ReadOnly = true;
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 8;
     //
     // colmostahek
     //
     this.colmostahek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.Caption = "مستحق";
     this.colmostahek.FieldName = "mostahek";
     this.colmostahek.Name = "colmostahek";
     this.colmostahek.OptionsColumn.ReadOnly = true;
     this.colmostahek.Visible = true;
     this.colmostahek.VisibleIndex = 9;
     //
     // colsefa
     //
     this.colsefa.AppearanceCell.Options.UseTextOptions = true;
     this.colsefa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.AppearanceHeader.Options.UseTextOptions = true;
     this.colsefa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.Caption = "صفة";
     this.colsefa.FieldName = "sefa";
     this.colsefa.Name = "colsefa";
     this.colsefa.OptionsColumn.ReadOnly = true;
     this.colsefa.Visible = true;
     this.colsefa.VisibleIndex = 10;
     //
     // coluseracc
     //
     this.coluseracc.AppearanceCell.Options.UseTextOptions = true;
     this.coluseracc.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.AppearanceHeader.Options.UseTextOptions = true;
     this.coluseracc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.Caption = "مسئول الادخال (حسابات)";
     this.coluseracc.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluseracc.FieldName = "useracc";
     this.coluseracc.Name = "coluseracc";
     this.coluseracc.OptionsColumn.ReadOnly = true;
     this.coluseracc.Visible = true;
     this.coluseracc.VisibleIndex = 13;
     this.coluseracc.Width = 136;
     //
     // colamantvisa
     //
     this.colamantvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.Caption = "امانات فيزا";
     this.colamantvisa.FieldName = "amantvisa";
     this.colamantvisa.Name = "colamantvisa";
     this.colamantvisa.Visible = true;
     this.colamantvisa.VisibleIndex = 15;
     //
     // colsarfcheek
     //
     this.colsarfcheek.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.Caption = "تصرف بشيك";
     this.colsarfcheek.FieldName = "sarfcheek";
     this.colsarfcheek.Name = "colsarfcheek";
     this.colsarfcheek.Visible = true;
     this.colsarfcheek.VisibleIndex = 16;
     this.colsarfcheek.Width = 77;
     //
     // colDofatSarfId
     //
     this.colDofatSarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.Caption = "الدفعة المستحقه";
     this.colDofatSarfId.ColumnEdit = this.repositoryItemLookUpEditDofatSarfId;
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 17;
     this.colDofatSarfId.Width = 99;
     //
     // repositoryItemLookUpEditDofatSarfId
     //
     this.repositoryItemLookUpEditDofatSarfId.AutoHeight = false;
     this.repositoryItemLookUpEditDofatSarfId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDofatSarfId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditDofatSarfId.DataSource = this.LSMSDofatSarfId;
     this.repositoryItemLookUpEditDofatSarfId.DisplayMember = "DofatSarf";
     this.repositoryItemLookUpEditDofatSarfId.Name = "repositoryItemLookUpEditDofatSarfId";
     this.repositoryItemLookUpEditDofatSarfId.NullText = "";
     this.repositoryItemLookUpEditDofatSarfId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditDofatSarfId.ValueMember = "DofatSarfId";
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfId]";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn1.Caption = "رقم صرف";
     this.gridColumn1.FieldName = "sarfnumber";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 18;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "كود الاب";
     this.gridColumn3.FieldName = "MMashatId";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 19;
     //
     // colDofatSarfAId1
     //
     this.colDofatSarfAId1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.Caption = "كود الدفعة";
     this.colDofatSarfAId1.FieldName = "DofatSarfAId";
     this.colDofatSarfAId1.Name = "colDofatSarfAId1";
     this.colDofatSarfAId1.Visible = true;
     this.colDofatSarfAId1.VisibleIndex = 2;
     //
     // colamanattypeid
     //
     this.colamanattypeid.AppearanceCell.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.Caption = "نوع الامانات";
     this.colamanattypeid.ColumnEdit = this.repositoryItemLookUpEditamanattypeid;
     this.colamanattypeid.FieldName = "amanattypeid";
     this.colamanattypeid.Name = "colamanattypeid";
     this.colamanattypeid.Visible = true;
     this.colamanattypeid.VisibleIndex = 20;
     //
     // repositoryItemLookUpEditamanattypeid
     //
     this.repositoryItemLookUpEditamanattypeid.AutoHeight = false;
     this.repositoryItemLookUpEditamanattypeid.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditamanattypeid.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("amanattype", "الاسم", 68, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditamanattypeid.DataSource = this.LSMScd_amanattype;
     this.repositoryItemLookUpEditamanattypeid.DisplayMember = "amanattype";
     this.repositoryItemLookUpEditamanattypeid.Name = "repositoryItemLookUpEditamanattypeid";
     this.repositoryItemLookUpEditamanattypeid.NullText = "";
     this.repositoryItemLookUpEditamanattypeid.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditamanattypeid.ValueMember = "amanattypeid";
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // coldateReview
     //
     this.coldateReview.AppearanceCell.Options.UseTextOptions = true;
     this.coldateReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.Caption = "تاريخ مراجعة حسابات";
     this.coldateReview.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldateReview.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 14;
     this.coldateReview.Width = 116;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعيه";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // repositoryItemCalcEditn0
     //
     this.repositoryItemCalcEditn0.AutoHeight = false;
     this.repositoryItemCalcEditn0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn0.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.EditFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.Mask.EditMask = "n0";
     this.repositoryItemCalcEditn0.Name = "repositoryItemCalcEditn0";
     //
     // repositoryItemCheckEditCardType
     //
     this.repositoryItemCheckEditCardType.AutoHeight = false;
     this.repositoryItemCheckEditCardType.Name = "repositoryItemCheckEditCardType";
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // 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.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // tblWarasaAmanatTableAdapter
     //
     this.tblWarasaAmanatTableAdapter.ClearBeforeFill = true;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "كود 60";
     this.gridColumn4.FieldName = "code60";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // TblWarasaAmanatFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TblWarasaAmanatFrm";
     this.Text = "امانات الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }