Beispiel #1
0
        public frmTest02()
        {
            InitializeComponent();

            gridControl1.DataSource = GetData();

            var riPicEdit = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();

            riPicEdit.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;

            GridColumn images = gridView1.Columns.AddField("Image");

            images.UnboundType = DevExpress.Data.UnboundColumnType.Object;
            images.Visible     = true;
            images.ColumnEdit  = riPicEdit;
            //images.ColumnEdit.AutoHeight = false;
            //images.ColumnEdit.AutoHeight = false;

            gridView1.Columns["ImageURL"].Visible = false;

            //gridView1.Columns["ImageURL"].OptionsColumn.FixedWidth = false;
            gridView1.Columns["ImageURL"].Width = 500;
            gridView1.RowHeight = 100;

            gridView1.CustomUnboundColumnData += gridView1_CustomUnboundColumnData;
        }
        private void InitializeGrid( )
        {
            CommonUtils.ConexionBD.AbrirConexion( );

            string sqlProductData = "SELECT Producto.ProductoId, Producto.Imagen, Producto.Nombre, Producto.Descripcion, Producto.Tipo, " +
                "Categoria.Tipo AS [Categoria], Producto.Tamano AS Tamaño, Producto.PrecioVenta AS [Precio de Venta], Producto.RecetaId, Producto.Mostrar AS [Visible] From Producto, Categoria "+
                "WHERE Producto.CategoriaId=Categoria.CategoriaId";
            
            string sqlProductCombo = "SELECT Producto.Nombre, Producto_Producto.ComboId FROM Producto INNER JOIN Producto_Producto ON Producto.ProductoId = Producto_Producto.ProductoId";

            try
            {
                SqlCommand cmdProduct = new SqlCommand( sqlProductData , CommonUtils.ConexionBD.Conexion );
                SqlCommand cmdCombo = new SqlCommand( sqlProductCombo , CommonUtils.ConexionBD.Conexion );

                DataSet dataSet = new DataSet( );
                dataSet.Load( cmdProduct.ExecuteReader( ) , LoadOption.OverwriteChanges , "Producto" );
                dataSet.Load( cmdCombo.ExecuteReader( ) , LoadOption.OverwriteChanges , "Combo" );

                dataSet.Relations.Add( "Combo" ,
                    dataSet.Tables[ "Producto" ].Columns[ "ProductoId" ] ,
                    dataSet.Tables[ "Combo" ].Columns[ "ComboId" ] , false );

                gridProductos.DataSource = dataSet.Tables[ "Producto" ];

                ColumnView view = this.gridProductos.MainView as ColumnView;
                view.Columns.Add( );
                view.ActiveFilterEnabled = true;
                DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit rPic = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit( );
                rPic.NullText = "No Image";
                rPic.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
                view.Columns[ 1 ].ColumnEdit = rPic;
                view.Columns[ 1 ].GetBestWidth( );
                view.Columns[ 8 ].Visible = false;
                view.Columns[9].Visible = true;
                
                this.gridProductos.RepositoryItems.Add( view.Columns[ 1 ].ColumnEdit );

                MessageBarValue = dataSet.Tables[ "Producto" ].Rows.Count.ToString( ) + " Items";
            }
            catch ( Exception ex )
            {
                log.Error( ex.Message , ex );
                MessageBarValue = "No se pudieron listar los productos. Hubo un error: " + ex.Message;
            }
            finally
            {
                barItem.Caption = MessageBarValue;
            }
            
            CommonUtils.ConexionBD.CerrarConexion( );
        }
        private void InitializeGrid( )
        {
            CommonUtils.ConexionBD.AbrirConexion( );

            string sqlProductData = "SELECT Producto.ProductoId, Producto.Imagen, Producto.Nombre, Producto.Descripcion, Producto.Tipo, " +
                                    "Categoria.Tipo AS [Categoria], Producto.Tamano AS Tamaño, Producto.PrecioVenta AS [Precio de Venta], Producto.RecetaId, Producto.Mostrar AS [Visible] From Producto, Categoria " +
                                    "WHERE Producto.CategoriaId=Categoria.CategoriaId";

            string sqlProductCombo = "SELECT Producto.Nombre, Producto_Producto.ComboId FROM Producto INNER JOIN Producto_Producto ON Producto.ProductoId = Producto_Producto.ProductoId";

            try
            {
                SqlCommand cmdProduct = new SqlCommand(sqlProductData, CommonUtils.ConexionBD.Conexion);
                SqlCommand cmdCombo   = new SqlCommand(sqlProductCombo, CommonUtils.ConexionBD.Conexion);

                DataSet dataSet = new DataSet( );
                dataSet.Load(cmdProduct.ExecuteReader( ), LoadOption.OverwriteChanges, "Producto");
                dataSet.Load(cmdCombo.ExecuteReader( ), LoadOption.OverwriteChanges, "Combo");

                dataSet.Relations.Add("Combo",
                                      dataSet.Tables["Producto"].Columns["ProductoId"],
                                      dataSet.Tables["Combo"].Columns["ComboId"], false);

                gridProductos.DataSource = dataSet.Tables["Producto"];

                ColumnView view = this.gridProductos.MainView as ColumnView;
                view.Columns.Add( );
                view.ActiveFilterEnabled = true;
                DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit rPic = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit( );
                rPic.NullText = "No Image";
                rPic.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
                view.Columns[1].ColumnEdit = rPic;
                view.Columns[1].GetBestWidth( );
                view.Columns[8].Visible = false;
                view.Columns[9].Visible = true;

                this.gridProductos.RepositoryItems.Add(view.Columns[1].ColumnEdit);

                MessageBarValue = dataSet.Tables["Producto"].Rows.Count.ToString( ) + " Items";
            }
            catch (Exception ex)
            {
                log.Error(ex.Message, ex);
                MessageBarValue = "No se pudieron listar los productos. Hubo un error: " + ex.Message;
            }
            finally
            {
                barItem.Caption = MessageBarValue;
            }

            CommonUtils.ConexionBD.CerrarConexion( );
        }
Beispiel #4
0
        private void PopulateImage()
        {
            DataTable dt = new DataTable();
            //string sstr = string.Format(Convert.ToDateTime(barEditItem1.EditValue).ToString("MM-dd-yyyy hh:mm:ss tt"));
            string sstr = barEditItem1.EditValue.ToString();

            dt = m_oPhoto.GetPhotos(sstr, m_iCostCentreId);
            GridControl1.DataSource = dt;
            DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit pic = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
            LayoutView1.Columns[0].Visible    = false;
            LayoutView1.Columns[1].ColumnEdit = pic;
            LayoutView1.Columns[1].Caption    = " ";
            pic.BestFitWidth = 0;
        }
Beispiel #5
0
        private void Form1_Load(object sender, EventArgs e)
        {
            DataTable dt = new DataTable();

            dt.Columns.Add("Photo", typeof(Image));
            dt.Columns.Add("Test");
            dt.Rows.Add(new object[] { Image.FromFile("..\\..\\Creek.jpg"), "test1" });
            dt.Rows.Add(new object[] { Image.FromFile("..\\..\\Creek.jpg"), "test2" });
            dt.Rows.Add(new object[] { Image.FromFile("..\\..\\Creek.jpg"), "test3" });

            gridControl1.DataSource = dt;

            DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit item = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();

            gridControl1.RepositoryItems.Add(item);
            gridView1.Columns["Photo"].ColumnEdit = item;
        }
Beispiel #6
0
        public GridProductos(string sql)
        {
            InitializeComponent( );
            InitConexionDB( );

            // TODO: Complete member initialization
            this.sqlQuery = sql;

            CommonUtils.ConexionBD.AbrirConexion( );

            gridControl.MainView = cardView;
            SqlCommand cmdProduct = new SqlCommand(this.sqlQuery, CommonUtils.ConexionBD.Conexion);
            DataSet    dataSet    = new DataSet( );

            dataSet.Load(cmdProduct.ExecuteReader( ), LoadOption.OverwriteChanges, "Producto");

            gridControl.DataSource = dataSet.Tables["Producto"];

            ColumnView view = this.gridControl.MainView as ColumnView;

            view.Columns.Add( );
            DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit rPic = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit( );
            rPic.NullText = "No Image";
            rPic.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
            view.Columns[1].ColumnEdit = rPic;
            view.Columns[1].GetBestWidth( );

            /*
             * Make just the Default columns visible. Imagen and Precio de Venta.
             */
            view.Columns[0].Visible = false;
            view.Columns[2].Visible = false;
            view.Columns[3].Visible = false;
            view.Columns[4].Visible = false;
            view.Columns[5].Visible = false;
            view.Columns[6].Visible = false;
            view.Columns[8].Visible = false;

            /*
             * The user can make them visible if needed.
             */
            this.gridControl.RepositoryItems.Add(view.Columns[1].ColumnEdit);

            CommonUtils.ConexionBD.CerrarConexion( );
        }
Beispiel #7
0
        public GridProductos( string sql )
        {
            InitializeComponent( );
            InitConexionDB( );

            // TODO: Complete member initialization
            this.sqlQuery = sql;

            CommonUtils.ConexionBD.AbrirConexion( );
           
            gridControl.MainView = cardView;
            SqlCommand cmdProduct = new SqlCommand( this.sqlQuery , CommonUtils.ConexionBD.Conexion );
            DataSet dataSet = new DataSet( );
            dataSet.Load( cmdProduct.ExecuteReader( ) , LoadOption.OverwriteChanges , "Producto" );
           
            gridControl.DataSource = dataSet.Tables[ "Producto" ];

            ColumnView view = this.gridControl.MainView as ColumnView;
            view.Columns.Add( );
            DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit rPic = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit( );
            rPic.NullText = "No Image";
            rPic.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
            view.Columns[ 1 ].ColumnEdit = rPic;
            view.Columns[ 1 ].GetBestWidth( );

            /*
             * Make just the Default columns visible. Imagen and Precio de Venta.
             */
            view.Columns[0].Visible = false;
            view.Columns[2].Visible = false;
            view.Columns[3].Visible = false;
            view.Columns[4].Visible = false;
            view.Columns[5].Visible = false;
            view.Columns[6].Visible = false;
            view.Columns[8].Visible = false;
            /*
             * The user can make them visible if needed.
             */
            this.gridControl.RepositoryItems.Add( view.Columns[ 1 ].ColumnEdit );

            CommonUtils.ConexionBD.CerrarConexion( );
        }
 /// <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.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBirthDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditMDY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlMain = new DevExpress.XtraEditors.PanelControl();
     this.btnSaveBackData = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry38cBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry38cTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry38cTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMain)).BeginInit();
     this.panelControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vQry38cBindingSource)).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.vQry38cBindingSource;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditMDY});
     this.gridControlData.Size = new System.Drawing.Size(784, 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.colMMashatId,
     this.colBirthDate,
     this.colMMashatNId,
     this.colBDate,
     this.colsarfnumber,
     this.colMMashatName,
     this.colSyndicate,
     this.colSubCommitte,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.colPersonId,
     this.colpersonName});
     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;
     this.gridViewData.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn1, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // 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 = "Customer ID";
     this.colMMashatId.FieldName = "newid";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     this.colMMashatId.Width = 79;
     //
     // colBirthDate
     //
     this.colBirthDate.AppearanceCell.Options.UseTextOptions = true;
     this.colBirthDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBirthDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colBirthDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBirthDate.Caption = "تاريخ الميلاد";
     this.colBirthDate.FieldName = "personbirth";
     this.colBirthDate.Name = "colBirthDate";
     //
     // colMMashatNId
     //
     this.colMMashatNId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.Caption = "National ID";
     this.colMMashatNId.FieldName = "personNID";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 9;
     this.colMMashatNId.Width = 80;
     //
     // colBDate
     //
     this.colBDate.AppearanceCell.Options.UseTextOptions = true;
     this.colBDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colBDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBDate.Caption = "Birth Date";
     this.colBDate.ColumnEdit = this.repositoryItemDateEditMDY;
     this.colBDate.Name = "colBDate";
     this.colBDate.OptionsColumn.ReadOnly = true;
     this.colBDate.Visible = true;
     this.colBDate.VisibleIndex = 6;
     this.colBDate.Width = 154;
     //
     // repositoryItemDateEditMDY
     //
     this.repositoryItemDateEditMDY.AutoHeight = false;
     this.repositoryItemDateEditMDY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditMDY.DisplayFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditMDY.EditFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditMDY.Mask.EditMask = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.Name = "repositoryItemDateEditMDY";
     this.repositoryItemDateEditMDY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // 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";
     //
     // 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 = "Name";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 4;
     //
     // 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 = "Organization";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 23;
     this.colSyndicate.Width = 80;
     //
     // 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 = "Department";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 24;
     this.colSubCommitte.Width = 76;
     //
     // 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 = "Age";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "First Name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Middle Name";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 79;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Last Name";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Title";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Gender";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 7;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Marital Status";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 8;
     this.gridColumn7.Width = 85;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Social Insurance Number";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     this.gridColumn8.Width = 137;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Home Address";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 11;
     this.gridColumn9.Width = 88;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Building Number";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 12;
     this.gridColumn10.Width = 95;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Street Name";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 13;
     this.gridColumn11.Width = 79;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Area Name";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 14;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "City Police Name";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 15;
     this.gridColumn13.Width = 98;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Postal Code";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 16;
     this.gridColumn14.Width = 76;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Statement Address";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 17;
     this.gridColumn15.Width = 111;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Land Line Number";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 18;
     this.gridColumn16.Width = 104;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Fax";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 19;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Mobile";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 20;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "SMS Mobile";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 21;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Email";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 22;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Employee ID";
     this.gridColumn21.FieldName = "newid";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 25;
     this.gridColumn21.Width = 79;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Work Position";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 26;
     this.gridColumn22.Width = 84;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Work Address";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 27;
     this.gridColumn23.Width = 86;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Work Telephone";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 28;
     this.gridColumn24.Width = 97;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Employment Date";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 29;
     this.gridColumn25.Width = 103;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Name On Card";
     this.gridColumn26.FieldName = "NameOnCard";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 30;
     this.gridColumn26.Width = 89;
     //
     // colPersonId
     //
     this.colPersonId.Caption = "كود المسئول";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     //
     // colpersonName
     //
     this.colpersonName.Caption = "اسم المسئول";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControlMain
     //
     this.panelControlMain.Controls.Add(this.btnSaveBackData);
     this.panelControlMain.Controls.Add(this.btnPrintExport);
     this.panelControlMain.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlMain.Location = new System.Drawing.Point(0, 0);
     this.panelControlMain.Name = "panelControlMain";
     this.panelControlMain.Size = new System.Drawing.Size(784, 47);
     this.panelControlMain.TabIndex = 3;
     //
     // btnSaveBackData
     //
     this.btnSaveBackData.Image = global::RetirementCenter.Properties.Resources.save_16x16;
     this.btnSaveBackData.Location = new System.Drawing.Point(12, 12);
     this.btnSaveBackData.Name = "btnSaveBackData";
     this.btnSaveBackData.Size = new System.Drawing.Size(134, 23);
     this.btnSaveBackData.TabIndex = 0;
     this.btnSaveBackData.Text = "حفظ بيانات البنك";
     this.btnSaveBackData.Click += new System.EventHandler(this.btnSaveBackData_Click);
     //
     // 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(638, 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);
     //
     // vQry38cBindingSource
     //
     this.vQry38cBindingSource.DataMember = "vQry38c";
     this.vQry38cBindingSource.DataSource = this.dsQueries;
     //
     // vQry38cTableAdapter
     //
     this.vQry38cTableAdapter.ClearBeforeFill = true;
     //
     // Qry38cFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 462);
     this.Controls.Add(this.panelControlMain);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry38cFrm";
     this.Text = "بيانات ورثة البنك- شرط ارملة او اكثر 25 (المسئول1)";
     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.repositoryItemDateEditMDY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMain)).EndInit();
     this.panelControlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vQry38cBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
        private void BuildVisibleColumnsProc()
        {
            bool isContainPic = false;
            int iGroupIndexCount = -1;
            int i = 0;
            DevExpress.XtraGrid.Columns.GridColumn[] grdCol = new DevExpress.XtraGrid.Columns.GridColumn[m_dtTableData.Columns.Count];

            foreach (DataColumn dc in m_dtTableData.Columns)
            {

                DevExpress.XtraGrid.Columns.GridColumn colAdd = new DevExpress.XtraGrid.Columns.GridColumn() { FieldName = dc.Caption, Caption = dc.Caption, Name = dc.Caption };
                foreach (string readOnl in strColumnReadOnly)
                {
                    if (readOnl.ToLower().Equals(dc.Caption.ToLower()))
                    {
                        m_dtTableData.Columns[readOnl].ReadOnly = true;
                        break;
                    }
                }
                switch (dc.DataType.Name.ToLower())
                {
                    case "boolean":
                        DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colBool = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit() { AllowFocused = false, BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder, ValueChecked = true, ValueUnchecked = false };

                        isShowCheckAllBtn = true;
                        if (colAdd.Name.ToLower().Contains("modifed"))
                            isContainModifedColumn = true;
                        colAdd.ColumnEdit = colBool;
                        colAdd.VisibleIndex = i;

                        break;
                    case strDATETIME:
                        if (colAdd.Name.ToLower().Contains("time"))
                        {
                            colAdd.ColumnEdit = rpeDateTimeMask;
                        }
                        else
                        {
                            DevExpress.XtraEditors.Repository.RepositoryItemDateEdit colDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
                            colDate.Mask.EditMask = CommonConst.DATE_FORMAT_PATTEN;
                            colDate.Mask.UseMaskAsDisplayFormat = true;
                            colDate.AllowFocused = false;
                            colDate.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

                            colAdd.ColumnEdit = colDate;
                        }
                        colAdd.VisibleIndex = i;
                        break;
                    case strFLOAT:
                    case strREAL:
                        colAdd.DisplayFormat.FormatString = "f";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strBIGINT:
                    case strINT:
                    case strNUMERIC:
                    case strSMALLINT:
                    case strTINYINT:
                    case strDecimal:
                        colAdd.DisplayFormat.FormatString = "n0";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.ColumnEdit = this.rpeNumberMask;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strMONEY:
                    case strSMALLMONEY:
                        colAdd.DisplayFormat.FormatString = "n0";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.ColumnEdit = this.rpeNumberMask;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strIMAGE:
                    case "byte[]":
                        DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit colPhoto = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
                        colAdd.ColumnEdit = colPhoto;
                        colAdd.VisibleIndex = i;
                        isContainPic = true;
                        break;
                    default:

                        colAdd.VisibleIndex = i;
                        break;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.EmployeeID.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = null;//this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                    colAdd.Fixed = FixedStyle.Left;

                }
                if (colAdd.Name.ToLower().Equals(CommonConst.FullName.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (strColumnFormatFont != null && strColumnFormatFont.Length > 0 && strColumnFormatFont[0] != "")
                {
                    foreach (string strPairs in strColumnFormatFont)
                    {
                        if (colAdd.FieldName.Equals(strPairs.Split('#')[0]))
                        {
                            switch (strPairs.Split('#')[1].ToLower())
                            {
                                case "b":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
                                    break;
                                case "i":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
                                    break;
                                case "s":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout);
                                    break;
                                case "u":
                                    colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
                                    break;
                            }
                        }
                    }
                }
                if (colAdd.Name.ToLower().Equals("month") || colAdd.Name.ToLower().Equals("year"))
                {
                    colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
                    colAdd.ColumnEdit = null;
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.None;
                }
                //Set list box columns
                DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repCom = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
                //set combobox value data
                if (strColumnCombobox.Length > 0)
                {
                    foreach (string com in strColumnCombobox)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                            continue;
                        if (dc.Caption == comboCol[0])
                        {
                            DataTable dtCom = DBEngine.execReturnDataTable(comboCol[1]);
                            if (dtCom != null && dtCom.Rows.Count > 0)
                            {
                                repCom.DataSource = dtCom;
                                repCom.ValueMember = dtCom.Columns[0].Caption;
                                repCom.DisplayMember = dtCom.Columns[1].Caption;
                                repCom.NullText = string.Empty;
                                repCom.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(repCom_CloseUp);
                                colAdd.ColumnEdit = repCom;
                                break;
                            }
                        }
                    }
                }
                if (strColumnHide != null && strColumnHide.Length > 0)
                {
                    foreach (string com in strColumnHide)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.VisibleIndex = -1;
                        }
                    }
                }
                if (strColumnFixed != null && strColumnFixed.Length > 0)
                {
                    foreach (string com in strColumnFixed)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.Fixed = FixedStyle.Left;
                        }
                    }
                }
                if (strColumnOrderBy != null && strColumnOrderBy.Length > 0)
                {
                    foreach (string com in strColumnOrderBy)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                            continue;
                        if (colAdd.Name.ToLower() == comboCol[0].ToLower())
                        {
                            colAdd.VisibleIndex = Convert.ToInt32(comboCol[1]);
                            break;
                        }
                    }
                }
                //int intWidth = Convert.ToInt16(dc.MaxLength) * 4;
                //colAdd.Width = (intWidth > 100 ? intWidth : 100);
                //colAdd.OptionsColumn.AllowEdit = !isReadOnly;
                grdCol[i++] = colAdd;
            }
            this.grvDynamic.Columns.Clear();
            this.grvDynamic.Columns.AddRange(grdCol);

            m_dtTableData.DefaultView.AllowEdit = !isReadOnly;
            //if (!isContainPic)
            //    grvDynamic.BestFitColumns();
            //else
            //    grvDynamic.RowHeight = 100;
            grvDynamic.BestFitColumns();
            if (strGroupColumns != null && strGroupColumns.Length > 0)
            {
                grvDynamic.OptionsView.ShowGroupPanel = false;
                foreach (string com in strGroupColumns)
                {
                    foreach (GridColumn colGroup in grvDynamic.Columns)
                        if (colGroup.Name.ToLower() == com.ToLower())
                        {
                            colGroup.GroupIndex = ++iGroupIndexCount;
                            grvDynamic.OptionsView.ShowGroupPanel = true;
                        }
                }
                grvDynamic.ExpandAllGroups();
            }
        }
 /// <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.vQry36BindingSource = new System.Windows.Forms.BindingSource(this.components);
     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.colAllNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry36TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry36TableAdapter();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry36BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     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.vQry36BindingSource;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     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});
     //
     // vQry36BindingSource
     //
     this.vQry36BindingSource.DataMember = "vQry36";
     this.vQry36BindingSource.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.colSyndicate,
     this.colNum,
     this.colAllNum,
     this.gridColumn1});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.Editable = false;
     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 = 0;
     //
     // 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 = 1;
     //
     // colAllNum
     //
     this.colAllNum.AppearanceCell.Options.UseTextOptions = true;
     this.colAllNum.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAllNum.AppearanceHeader.Options.UseTextOptions = true;
     this.colAllNum.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAllNum.Caption = "الاجمالي";
     this.colAllNum.FieldName = "AllNum";
     this.colAllNum.Name = "colAllNum";
     this.colAllNum.Visible = true;
     this.colAllNum.VisibleIndex = 2;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // 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()});
     //
     // 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);
     //
     // vQry36TableAdapter
     //
     this.vQry36TableAdapter.ClearBeforeFill = true;
     //
     // 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 = "gridColumn1";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.UnboundExpression = "[AllNum] - [Num]";
     this.gridColumn1.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 3;
     //
     // Qry36Frm
     //
     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 = "Qry36Frm";
     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.vQry36BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.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(frmGestionarSLead));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel1 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(18))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint2 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(12))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint3 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(9))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint4 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(15))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint5 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(21))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint6 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint7 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(13))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView1 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series2 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel2 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint8 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint9 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(5))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint10 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(8))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint11 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(12))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint12 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(23))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint13 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(6))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint14 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(9))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView2 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series3 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel3 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.SeriesPoint seriesPoint15 = new DevExpress.XtraCharts.SeriesPoint("LR", new object[] {
     ((object)(4))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint16 = new DevExpress.XtraCharts.SeriesPoint("DS", new object[] {
     ((object)(1))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint17 = new DevExpress.XtraCharts.SeriesPoint("DO", new object[] {
     ((object)(2))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint18 = new DevExpress.XtraCharts.SeriesPoint("SMC", new object[] {
     ((object)(3))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint19 = new DevExpress.XtraCharts.SeriesPoint("CY", new object[] {
     ((object)(4))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint20 = new DevExpress.XtraCharts.SeriesPoint("SF", new object[] {
     ((object)(2))});
     DevExpress.XtraCharts.SeriesPoint seriesPoint21 = new DevExpress.XtraCharts.SeriesPoint("JMW", new object[] {
     ((object)(3))});
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView3 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.Series series4 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel4 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView4 = new DevExpress.XtraCharts.StackedBarSeriesView();
     DevExpress.XtraCharts.StackedBarSeriesLabel stackedBarSeriesLabel5 = new DevExpress.XtraCharts.StackedBarSeriesLabel();
     DevExpress.XtraCharts.StackedBarSeriesView stackedBarSeriesView5 = new DevExpress.XtraCharts.StackedBarSeriesView();
     this.toolStripBarraSLead = new System.Windows.Forms.ToolStrip();
     this.MenuNuevo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuCancelar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuTodasAsignaciones = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuFichaSLead = new System.Windows.Forms.ToolStripButton();
     this.MenuEnviarMail = new System.Windows.Forms.ToolStripButton();
     this.MenuFollowUp = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuExcel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.MenuSalir = new System.Windows.Forms.ToolStripButton();
     this.sBActualizar = new DevExpress.XtraEditors.SimpleButton();
     this.DateHasta = new DevExpress.XtraEditors.DateEdit();
     this.DateDesde = new DevExpress.XtraEditors.DateEdit();
     this.ChartSalesLead = new DevExpress.XtraCharts.ChartControl();
     this.sButtonAgregarObservacion = new DevExpress.XtraEditors.SimpleButton();
     this.sButtonEliminarObservacion = new DevExpress.XtraEditors.SimpleButton();
     this.sButtonGrabarObs = new DevExpress.XtraEditors.SimpleButton();
     this.gridProspectos = new DevExpress.XtraEditors.GroupControl();
     this.gridSLeads = new DevExpress.XtraGrid.GridControl();
     this.gridViewSLeads = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColContacto = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColCuenta = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColConsignatario = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.ctrldxError = new DevExpress.XtraEditors.DXErrorProvider.DXErrorProvider(this.components);
     this.repSel = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridObservacionesSL = new DevExpress.XtraGrid.GridControl();
     this.gridViewObsSL = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColUsuario = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColObservacion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridFechaHora = new DevExpress.XtraGrid.Columns.GridColumn();
     this.toolStripBarraSLead.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChartSalesLead)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).BeginInit();
     this.gridProspectos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridObservacionesSL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewObsSL)).BeginInit();
     this.SuspendLayout();
     //
     // toolStripBarraSLead
     //
     this.toolStripBarraSLead.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.MenuNuevo,
     this.toolStripSeparator2,
     this.MenuCancelar,
     this.toolStripSeparator1,
     this.MenuTodasAsignaciones,
     this.toolStripSeparator5,
     this.MenuFichaSLead,
     this.MenuEnviarMail,
     this.MenuFollowUp,
     this.toolStripSeparator4,
     this.MenuExcel,
     this.toolStripSeparator3,
     this.MenuSalir});
     this.toolStripBarraSLead.Location = new System.Drawing.Point(0, 0);
     this.toolStripBarraSLead.Name = "toolStripBarraSLead";
     this.toolStripBarraSLead.Size = new System.Drawing.Size(956, 38);
     this.toolStripBarraSLead.TabIndex = 8;
     this.toolStripBarraSLead.Text = "toolStrip1";
     //
     // MenuNuevo
     //
     this.MenuNuevo.Image = ((System.Drawing.Image)(resources.GetObject("MenuNuevo.Image")));
     this.MenuNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuNuevo.Name = "MenuNuevo";
     this.MenuNuevo.Size = new System.Drawing.Size(63, 35);
     this.MenuNuevo.Text = "Actualizar";
     this.MenuNuevo.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuNuevo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuNuevo.ToolTipText = "Nueva Llamada";
     this.MenuNuevo.Click += new System.EventHandler(this.MenuNuevo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 38);
     //
     // MenuCancelar
     //
     this.MenuCancelar.Image = ((System.Drawing.Image)(resources.GetObject("MenuCancelar.Image")));
     this.MenuCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuCancelar.Name = "MenuCancelar";
     this.MenuCancelar.Size = new System.Drawing.Size(57, 35);
     this.MenuCancelar.Text = "Cancelar";
     this.MenuCancelar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuCancelar.Click += new System.EventHandler(this.MenuCancelar_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 38);
     //
     // MenuTodasAsignaciones
     //
     this.MenuTodasAsignaciones.Enabled = false;
     this.MenuTodasAsignaciones.Image = ((System.Drawing.Image)(resources.GetObject("MenuTodasAsignaciones.Image")));
     this.MenuTodasAsignaciones.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.MenuTodasAsignaciones.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuTodasAsignaciones.Name = "MenuTodasAsignaciones";
     this.MenuTodasAsignaciones.Size = new System.Drawing.Size(63, 35);
     this.MenuTodasAsignaciones.Text = "Ver Todas";
     this.MenuTodasAsignaciones.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.MenuTodasAsignaciones.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 38);
     //
     // MenuFichaSLead
     //
     this.MenuFichaSLead.Image = ((System.Drawing.Image)(resources.GetObject("MenuFichaSLead.Image")));
     this.MenuFichaSLead.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFichaSLead.Name = "MenuFichaSLead";
     this.MenuFichaSLead.Size = new System.Drawing.Size(96, 35);
     this.MenuFichaSLead.Text = "Ficha Sales Lead";
     this.MenuFichaSLead.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFichaSLead.Click += new System.EventHandler(this.MenuFichaSLead_Click);
     //
     // MenuEnviarMail
     //
     this.MenuEnviarMail.Image = ((System.Drawing.Image)(resources.GetObject("MenuEnviarMail.Image")));
     this.MenuEnviarMail.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuEnviarMail.Name = "MenuEnviarMail";
     this.MenuEnviarMail.Size = new System.Drawing.Size(100, 35);
     this.MenuEnviarMail.Text = "Enviar Sales Lead";
     this.MenuEnviarMail.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuEnviarMail.Click += new System.EventHandler(this.MenuEnviarMail_Click);
     //
     // MenuFollowUp
     //
     this.MenuFollowUp.Enabled = false;
     this.MenuFollowUp.Image = ((System.Drawing.Image)(resources.GetObject("MenuFollowUp.Image")));
     this.MenuFollowUp.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuFollowUp.Name = "MenuFollowUp";
     this.MenuFollowUp.Size = new System.Drawing.Size(61, 35);
     this.MenuFollowUp.Text = "FollowUp";
     this.MenuFollowUp.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuFollowUp.Click += new System.EventHandler(this.MenuFollowUp_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 38);
     //
     // MenuExcel
     //
     this.MenuExcel.Image = ((System.Drawing.Image)(resources.GetObject("MenuExcel.Image")));
     this.MenuExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuExcel.Name = "MenuExcel";
     this.MenuExcel.Size = new System.Drawing.Size(37, 35);
     this.MenuExcel.Text = "Excel";
     this.MenuExcel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuExcel.Click += new System.EventHandler(this.MenuExcel_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 38);
     //
     // MenuSalir
     //
     this.MenuSalir.Image = ((System.Drawing.Image)(resources.GetObject("MenuSalir.Image")));
     this.MenuSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.MenuSalir.Name = "MenuSalir";
     this.MenuSalir.Size = new System.Drawing.Size(33, 35);
     this.MenuSalir.Text = "Salir";
     this.MenuSalir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.MenuSalir.Click += new System.EventHandler(this.MenuSalir_Click);
     //
     // sBActualizar
     //
     this.sBActualizar.Image = ((System.Drawing.Image)(resources.GetObject("sBActualizar.Image")));
     this.sBActualizar.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sBActualizar.Location = new System.Drawing.Point(199, 411);
     this.sBActualizar.Name = "sBActualizar";
     this.sBActualizar.Size = new System.Drawing.Size(41, 20);
     this.sBActualizar.TabIndex = 77;
     this.sBActualizar.ToolTip = "Actualizar Gráfico";
     this.sBActualizar.Click += new System.EventHandler(this.sBActualizar_Click);
     //
     // DateHasta
     //
     this.DateHasta.EditValue = null;
     this.DateHasta.Location = new System.Drawing.Point(102, 411);
     this.DateHasta.Name = "DateHasta";
     this.DateHasta.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateHasta.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateHasta.Size = new System.Drawing.Size(91, 20);
     this.DateHasta.TabIndex = 76;
     //
     // DateDesde
     //
     this.DateDesde.EditValue = null;
     this.DateDesde.Location = new System.Drawing.Point(5, 411);
     this.DateDesde.Name = "DateDesde";
     this.DateDesde.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateDesde.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateDesde.Size = new System.Drawing.Size(91, 20);
     this.DateDesde.TabIndex = 75;
     //
     // ChartSalesLead
     //
     this.ChartSalesLead.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisX.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.Range.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.ChartSalesLead.Diagram = xyDiagram1;
     this.ChartSalesLead.Location = new System.Drawing.Point(5, 437);
     this.ChartSalesLead.Name = "ChartSalesLead";
     stackedBarSeriesLabel1.OverlappingOptionsTypeName = "OverlappingOptions";
     series1.Label = stackedBarSeriesLabel1;
     series1.Name = "Asignada";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1,
     seriesPoint2,
     seriesPoint3,
     seriesPoint4,
     seriesPoint5,
     seriesPoint6,
     seriesPoint7});
     series1.View = stackedBarSeriesView1;
     stackedBarSeriesLabel2.OverlappingOptionsTypeName = "OverlappingOptions";
     series2.Label = stackedBarSeriesLabel2;
     series2.Name = "Seguimiento";
     series2.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint8,
     seriesPoint9,
     seriesPoint10,
     seriesPoint11,
     seriesPoint12,
     seriesPoint13,
     seriesPoint14});
     series2.View = stackedBarSeriesView2;
     stackedBarSeriesLabel3.OverlappingOptionsTypeName = "OverlappingOptions";
     series3.Label = stackedBarSeriesLabel3;
     series3.Name = "Cierre";
     series3.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint15,
     seriesPoint16,
     seriesPoint17,
     seriesPoint18,
     seriesPoint19,
     seriesPoint20,
     seriesPoint21});
     series3.View = stackedBarSeriesView3;
     stackedBarSeriesLabel4.OverlappingOptionsTypeName = "OverlappingOptions";
     series4.Label = stackedBarSeriesLabel4;
     series4.Name = "Cancelada";
     series4.View = stackedBarSeriesView4;
     this.ChartSalesLead.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1,
     series2,
     series3,
     series4};
     stackedBarSeriesLabel5.OverlappingOptionsTypeName = "OverlappingOptions";
     this.ChartSalesLead.SeriesTemplate.Label = stackedBarSeriesLabel5;
     this.ChartSalesLead.SeriesTemplate.View = stackedBarSeriesView5;
     this.ChartSalesLead.Size = new System.Drawing.Size(479, 135);
     this.ChartSalesLead.TabIndex = 78;
     //
     // sButtonAgregarObservacion
     //
     this.sButtonAgregarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonAgregarObservacion.Image")));
     this.sButtonAgregarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonAgregarObservacion.Location = new System.Drawing.Point(508, 548);
     this.sButtonAgregarObservacion.Name = "sButtonAgregarObservacion";
     this.sButtonAgregarObservacion.Size = new System.Drawing.Size(32, 24);
     this.sButtonAgregarObservacion.TabIndex = 81;
     this.sButtonAgregarObservacion.Click += new System.EventHandler(this.sButtonAgregarObservacion_Click);
     //
     // sButtonEliminarObservacion
     //
     this.sButtonEliminarObservacion.AutoSizeInLayoutControl = true;
     this.sButtonEliminarObservacion.Image = ((System.Drawing.Image)(resources.GetObject("sButtonEliminarObservacion.Image")));
     this.sButtonEliminarObservacion.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonEliminarObservacion.Location = new System.Drawing.Point(508, 518);
     this.sButtonEliminarObservacion.Name = "sButtonEliminarObservacion";
     this.sButtonEliminarObservacion.Size = new System.Drawing.Size(32, 24);
     this.sButtonEliminarObservacion.TabIndex = 80;
     this.sButtonEliminarObservacion.Click += new System.EventHandler(this.sButtonEliminarObservacion_Click);
     //
     // sButtonGrabarObs
     //
     this.sButtonGrabarObs.Image = ((System.Drawing.Image)(resources.GetObject("sButtonGrabarObs.Image")));
     this.sButtonGrabarObs.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.sButtonGrabarObs.Location = new System.Drawing.Point(508, 437);
     this.sButtonGrabarObs.Name = "sButtonGrabarObs";
     this.sButtonGrabarObs.Size = new System.Drawing.Size(32, 29);
     this.sButtonGrabarObs.TabIndex = 79;
     this.sButtonGrabarObs.Click += new System.EventHandler(this.sButtonGrabarObs_Click);
     //
     // gridProspectos
     //
     this.gridProspectos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridProspectos.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridProspectos.AppearanceCaption.ForeColor = System.Drawing.Color.DarkBlue;
     this.gridProspectos.AppearanceCaption.Options.UseFont = true;
     this.gridProspectos.AppearanceCaption.Options.UseForeColor = true;
     this.gridProspectos.Controls.Add(this.gridSLeads);
     this.gridProspectos.Location = new System.Drawing.Point(5, 41);
     this.gridProspectos.Name = "gridProspectos";
     this.gridProspectos.Size = new System.Drawing.Size(951, 369);
     this.gridProspectos.TabIndex = 83;
     this.gridProspectos.Text = "Sales Leads";
     //
     // gridSLeads
     //
     this.gridSLeads.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridSLeads.Location = new System.Drawing.Point(5, 23);
     this.gridSLeads.MainView = this.gridViewSLeads;
     this.gridSLeads.Name = "gridSLeads";
     this.gridSLeads.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemImageComboBox1,
     this.repositoryItemPictureEdit1,
     this.repositoryItemCheckEdit3,
     this.repositoryItemCheckEdit4});
     this.gridSLeads.Size = new System.Drawing.Size(941, 306);
     this.gridSLeads.TabIndex = 1;
     this.gridSLeads.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewSLeads});
     this.gridSLeads.Click += new System.EventHandler(this.gridSLeads_Click);
     //
     // gridViewSLeads
     //
     this.gridViewSLeads.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3,
     this.gridColumn7,
     this.gridColContacto,
     this.gridColCuenta,
     this.gridColConsignatario,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn1});
     this.gridViewSLeads.GridControl = this.gridSLeads;
     this.gridViewSLeads.Name = "gridViewSLeads";
     this.gridViewSLeads.OptionsSelection.MultiSelect = true;
     this.gridViewSLeads.OptionsView.ShowGroupPanel = false;
     this.gridViewSLeads.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewSLeads_FocusedRowChanged);
     this.gridViewSLeads.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewSLeads_RowStyle);
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn3.Caption = "N# Sales Lead";
     this.gridColumn3.FieldName = "Reference";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 85;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "Agente";
     this.gridColumn7.FieldName = "Agente.Nombre";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 180;
     //
     // gridColContacto
     //
     this.gridColContacto.Caption = "Contacto";
     this.gridColContacto.FieldName = "Agente.Contacto";
     this.gridColContacto.Name = "gridColContacto";
     this.gridColContacto.OptionsColumn.ReadOnly = true;
     this.gridColContacto.Visible = true;
     this.gridColContacto.VisibleIndex = 2;
     this.gridColContacto.Width = 77;
     //
     // gridColCuenta
     //
     this.gridColCuenta.Caption = "Shipper";
     this.gridColCuenta.FieldName = "ShipperNombre";
     this.gridColCuenta.Name = "gridColCuenta";
     this.gridColCuenta.OptionsColumn.ReadOnly = true;
     this.gridColCuenta.Visible = true;
     this.gridColCuenta.VisibleIndex = 3;
     this.gridColCuenta.Width = 101;
     //
     // gridColConsignatario
     //
     this.gridColConsignatario.Caption = "Consignatario";
     this.gridColConsignatario.FieldName = "ConsigNombre";
     this.gridColConsignatario.Name = "gridColConsignatario";
     this.gridColConsignatario.OptionsColumn.ReadOnly = true;
     this.gridColConsignatario.Visible = true;
     this.gridColConsignatario.VisibleIndex = 4;
     this.gridColConsignatario.Width = 86;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "Estado";
     this.gridColumn9.FieldName = "EstadoSLead";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     this.gridColumn9.Width = 73;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn10.Caption = "Asignación";
     this.gridColumn10.FieldName = "FechaApertura";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 6;
     this.gridColumn10.Width = 107;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn1.Caption = "Follow Up";
     this.gridColumn1.FieldName = "FechaRevision";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 7;
     this.gridColumn1.Width = 109;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.Appearance.Options.UseTextOptions = true;
     this.repositoryItemImageComboBox1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repositoryItemImageComboBox1.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Skinned;
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Baja", "2", 0),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Alta", "0", 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Media", "1", 2),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("New", 1, 3)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.PictureStoreMode = DevExpress.XtraEditors.Controls.PictureStoreMode.Image;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // ctrldxError
     //
     this.ctrldxError.ContainerControl = this;
     //
     // repSel
     //
     this.repSel.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("repSel.Appearance.Image")));
     this.repSel.Appearance.Options.UseImage = true;
     this.repSel.AutoHeight = false;
     this.repSel.Name = "repSel";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.Appearance.Options.UseTextOptions = true;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // 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";
     this.repositoryItemMemoExEdit1.ShowIcon = false;
     //
     // gridView3
     //
     this.gridView3.GridControl = this.gridObservacionesSL;
     this.gridView3.Name = "gridView3";
     //
     // gridObservacionesSL
     //
     this.gridObservacionesSL.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.gridObservacionesSL.Location = new System.Drawing.Point(542, 416);
     this.gridObservacionesSL.MainView = this.gridViewObsSL;
     this.gridObservacionesSL.Name = "gridObservacionesSL";
     this.gridObservacionesSL.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repSel,
     this.repositoryItemCheckEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemMemoEdit1,
     this.repositoryItemMemoEdit2,
     this.repositoryItemMemoExEdit1});
     this.gridObservacionesSL.Size = new System.Drawing.Size(414, 156);
     this.gridObservacionesSL.TabIndex = 82;
     this.gridObservacionesSL.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewObsSL,
     this.gridView3});
     //
     // gridViewObsSL
     //
     this.gridViewObsSL.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColUsuario,
     this.gridColObservacion,
     this.gridFechaHora});
     this.gridViewObsSL.CustomizationFormBounds = new System.Drawing.Rectangle(592, 334, 208, 170);
     this.gridViewObsSL.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.None;
     this.gridViewObsSL.GridControl = this.gridObservacionesSL;
     this.gridViewObsSL.Name = "gridViewObsSL";
     this.gridViewObsSL.OptionsBehavior.CacheValuesOnRowUpdating = DevExpress.Data.CacheRowValuesMode.Disabled;
     this.gridViewObsSL.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewObsSL.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridViewObsSL.OptionsView.ShowGroupPanel = false;
     //
     // gridColUsuario
     //
     this.gridColUsuario.Caption = "Usuario";
     this.gridColUsuario.FieldName = "ObjUsuario.NombreUsuario";
     this.gridColUsuario.Name = "gridColUsuario";
     this.gridColUsuario.OptionsColumn.AllowEdit = false;
     this.gridColUsuario.OptionsColumn.ReadOnly = true;
     this.gridColUsuario.Visible = true;
     this.gridColUsuario.VisibleIndex = 0;
     this.gridColUsuario.Width = 63;
     //
     // gridColObservacion
     //
     this.gridColObservacion.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColObservacion.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColObservacion.Caption = "Comentario";
     this.gridColObservacion.ColumnEdit = this.repositoryItemMemoExEdit1;
     this.gridColObservacion.FieldName = "Observacion";
     this.gridColObservacion.Name = "gridColObservacion";
     this.gridColObservacion.Visible = true;
     this.gridColObservacion.VisibleIndex = 1;
     this.gridColObservacion.Width = 276;
     //
     // gridFechaHora
     //
     this.gridFechaHora.AppearanceHeader.Options.UseTextOptions = true;
     this.gridFechaHora.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridFechaHora.Caption = "Fecha";
     this.gridFechaHora.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridFechaHora.FieldName = "FechaHora";
     this.gridFechaHora.Name = "gridFechaHora";
     this.gridFechaHora.OptionsColumn.ReadOnly = true;
     this.gridFechaHora.Visible = true;
     this.gridFechaHora.VisibleIndex = 2;
     this.gridFechaHora.Width = 76;
     //
     // frmGestionarSLead
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(956, 574);
     this.Controls.Add(this.gridProspectos);
     this.Controls.Add(this.gridObservacionesSL);
     this.Controls.Add(this.sButtonAgregarObservacion);
     this.Controls.Add(this.sButtonEliminarObservacion);
     this.Controls.Add(this.sButtonGrabarObs);
     this.Controls.Add(this.ChartSalesLead);
     this.Controls.Add(this.sBActualizar);
     this.Controls.Add(this.DateHasta);
     this.Controls.Add(this.DateDesde);
     this.Controls.Add(this.toolStripBarraSLead);
     this.Name = "frmGestionarSLead";
     this.Text = "Gestión de Sales Leads";
     this.Load += new System.EventHandler(this.frmGestionarSLead_Load);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmGestionarSLead_FormClosed);
     this.toolStripBarraSLead.ResumeLayout(false);
     this.toolStripBarraSLead.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateHasta.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateDesde.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesLabel5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(stackedBarSeriesView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChartSalesLead)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridProspectos)).EndInit();
     this.gridProspectos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSLeads)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ctrldxError)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridObservacionesSL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewObsSL)).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(QUANLYKHO));
     DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
     DevExpress.XtraBars.Ribbon.GalleryItem      galleryItem3      = new DevExpress.XtraBars.Ribbon.GalleryItem();
     this.panelControl1                        = new DevExpress.XtraEditors.PanelControl();
     this.huongdan                             = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1                         = new DevExpress.XtraNavBar.NavBarGroup();
     this.navBarItem_TrangChu                  = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_NhapHang                  = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_XuatHang                  = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarItem_ThongKe                   = new DevExpress.XtraNavBar.NavBarItem();
     this.navBarGroup2                         = new DevExpress.XtraNavBar.NavBarGroup();
     this.panelControl2                        = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1                      = new DevExpress.XtraTab.XtraTabControl();
     this.rPThongKe                            = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup3                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem_ThongKe_DoanhThu       = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPageGroup4                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem_ThongKe_DoanhThu_Chung = new DevExpress.XtraBars.BarButtonItem();
     this.rPXuatHang                           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rPGXuatHang                          = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.bbiPhieuXuat                         = new DevExpress.XtraBars.BarButtonItem();
     this.rPNhapHang                           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.ribbonPageGroup1                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.bbiNhapHang                          = new DevExpress.XtraBars.BarButtonItem();
     this.bbtnCapnhat                          = new DevExpress.XtraBars.BarButtonItem();
     this.rpTrangChu                           = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rpgHeThong                           = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.bbiTrangChu                          = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDangNhap                          = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDangXuat                          = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPageGroup2                     = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.skinHT                         = new DevExpress.XtraBars.SkinRibbonGalleryBarItem();
     this.barButtonItem1                 = new DevExpress.XtraBars.BarButtonItem();
     this.barEditItem1                   = new DevExpress.XtraBars.BarEditItem();
     this.ribbonGalleryBarItem1          = new DevExpress.XtraBars.RibbonGalleryBarItem();
     this.barButtonItem3                 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2                 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem_ThongKe_NhapXuat = new DevExpress.XtraBars.BarButtonItem();
     this.rPHuongdan                     = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.bbtntimkiem                    = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4                 = new DevExpress.XtraBars.BarButtonItem();
     this.ribbonPage1                    = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.navBarItem_Huongdan            = new DevExpress.XtraNavBar.NavBarItem();
     this.ribbonPageGroup5               = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.barButtonItem5                 = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1                     = new DevExpress.XtraBars.PopupMenu(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.huongdan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rPHuongdan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.huongdan);
     this.panelControl1.Location = new System.Drawing.Point(0, 145);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(200, 553);
     this.panelControl1.TabIndex = 1;
     //
     // huongdan
     //
     this.huongdan.ActiveGroup = this.navBarGroup1;
     this.huongdan.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
         this.navBarGroup1,
         this.navBarGroup2
     });
     this.huongdan.Items.AddRange(new DevExpress.XtraNavBar.NavBarItem[] {
         this.navBarItem_TrangChu,
         this.navBarItem_NhapHang,
         this.navBarItem_XuatHang,
         this.navBarItem_ThongKe,
         this.navBarItem_Huongdan
     });
     this.huongdan.Location = new System.Drawing.Point(6, 5);
     this.huongdan.Name     = "huongdan";
     this.huongdan.OptionsNavPane.ExpandedWidth = 189;
     this.huongdan.Size         = new System.Drawing.Size(189, 535);
     this.huongdan.TabIndex     = 0;
     this.huongdan.Text         = "navBarControl1";
     this.huongdan.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_Huongdan_LinkClicked);
     this.huongdan.Click       += new System.EventHandler(this.huongdan_Click);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption  = "Trang chủ";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_TrangChu),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_NhapHang),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_XuatHang),
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_ThongKe)
     });
     this.navBarGroup1.Name = "navBarGroup1";
     //
     // navBarItem_TrangChu
     //
     this.navBarItem_TrangChu.Caption      = "Trang chủ";
     this.navBarItem_TrangChu.ImageUri.Uri = "Home";
     this.navBarItem_TrangChu.Name         = "navBarItem_TrangChu";
     this.navBarItem_TrangChu.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_TrangChu_LinkClicked);
     //
     // navBarItem_NhapHang
     //
     this.navBarItem_NhapHang.Caption      = "Nhập hàng";
     this.navBarItem_NhapHang.Name         = "navBarItem_NhapHang";
     this.navBarItem_NhapHang.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_NhapHang_LinkClicked);
     //
     // navBarItem_XuatHang
     //
     this.navBarItem_XuatHang.Caption      = "Xuất Hàng";
     this.navBarItem_XuatHang.Name         = "navBarItem_XuatHang";
     this.navBarItem_XuatHang.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_XuatHang_LinkClicked);
     //
     // navBarItem_ThongKe
     //
     this.navBarItem_ThongKe.Caption      = "Thống kê";
     this.navBarItem_ThongKe.ImageUri.Uri = "Chart";
     this.navBarItem_ThongKe.Name         = "navBarItem_ThongKe";
     this.navBarItem_ThongKe.LinkClicked += new DevExpress.XtraNavBar.NavBarLinkEventHandler(this.navBarItem_ThongKe_LinkClicked);
     //
     // navBarGroup2
     //
     this.navBarGroup2.Caption  = "Hướng dẫn sử dụng";
     this.navBarGroup2.Expanded = true;
     this.navBarGroup2.ItemLinks.AddRange(new DevExpress.XtraNavBar.NavBarItemLink[] {
         new DevExpress.XtraNavBar.NavBarItemLink(this.navBarItem_Huongdan)
     });
     this.navBarGroup2.Name = "navBarGroup2";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl1);
     this.panelControl2.Location = new System.Drawing.Point(206, 145);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(942, 540);
     this.panelControl2.TabIndex = 2;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControl1.Location          = new System.Drawing.Point(6, 6);
     this.xtraTabControl1.Name              = "xtraTabControl1";
     this.xtraTabControl1.Size              = new System.Drawing.Size(931, 534);
     this.xtraTabControl1.TabIndex          = 0;
     this.xtraTabControl1.CloseButtonClick += new System.EventHandler(this.xtraTabControl1_CloseButtonClick);
     //
     // rPThongKe
     //
     this.rPThongKe.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup3,
         this.ribbonPageGroup4
     });
     this.rPThongKe.Name = "rPThongKe";
     this.rPThongKe.Text = "Thống kê";
     //
     // ribbonPageGroup3
     //
     this.ribbonPageGroup3.Glyph = ((System.Drawing.Image)(resources.GetObject("ribbonPageGroup3.Glyph")));
     this.ribbonPageGroup3.ItemLinks.Add(this.barButtonItem_ThongKe_DoanhThu);
     this.ribbonPageGroup3.Name = "ribbonPageGroup3";
     this.ribbonPageGroup3.Text = "Thống kê";
     //
     // barButtonItem_ThongKe_DoanhThu
     //
     this.barButtonItem_ThongKe_DoanhThu.Caption      = "Nhập xuất";
     this.barButtonItem_ThongKe_DoanhThu.Id           = 13;
     this.barButtonItem_ThongKe_DoanhThu.ImageUri.Uri = "Chart";
     this.barButtonItem_ThongKe_DoanhThu.Name         = "barButtonItem_ThongKe_DoanhThu";
     this.barButtonItem_ThongKe_DoanhThu.RibbonStyle  = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.barButtonItem_ThongKe_DoanhThu.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ThongKe_DoanhThu_ItemClick);
     //
     // ribbonPageGroup4
     //
     this.ribbonPageGroup4.ItemLinks.Add(this.barButtonItem_ThongKe_DoanhThu_Chung);
     this.ribbonPageGroup4.Name = "ribbonPageGroup4";
     this.ribbonPageGroup4.Text = "ribbonPageGroup4";
     //
     // barButtonItem_ThongKe_DoanhThu_Chung
     //
     this.barButtonItem_ThongKe_DoanhThu_Chung.Caption      = "Thống kê chung";
     this.barButtonItem_ThongKe_DoanhThu_Chung.Id           = 15;
     this.barButtonItem_ThongKe_DoanhThu_Chung.ImageUri.Uri = "Summary";
     this.barButtonItem_ThongKe_DoanhThu_Chung.Name         = "barButtonItem_ThongKe_DoanhThu_Chung";
     this.barButtonItem_ThongKe_DoanhThu_Chung.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ThongKe_DoanhThu_Chung_ItemClick);
     //
     // rPXuatHang
     //
     this.rPXuatHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rPGXuatHang
     });
     this.rPXuatHang.Name = "rPXuatHang";
     this.rPXuatHang.Text = "Xuất Hàng";
     //
     // rPGXuatHang
     //
     this.rPGXuatHang.ItemLinks.Add(this.bbiPhieuXuat);
     this.rPGXuatHang.Name = "rPGXuatHang";
     this.rPGXuatHang.Text = "Xuất Hàng";
     //
     // bbiPhieuXuat
     //
     this.bbiPhieuXuat.Caption    = "Phiếu Xuất";
     this.bbiPhieuXuat.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiPhieuXuat.Glyph")));
     this.bbiPhieuXuat.Id         = 11;
     this.bbiPhieuXuat.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiPhieuXuat.LargeGlyph")));
     this.bbiPhieuXuat.LargeWidth = 80;
     this.bbiPhieuXuat.Name       = "bbiPhieuXuat";
     this.bbiPhieuXuat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhieuXuat_ItemClick);
     //
     // rPNhapHang
     //
     this.rPNhapHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup1
     });
     this.rPNhapHang.Name = "rPNhapHang";
     this.rPNhapHang.Text = "Nhập Hàng";
     //
     // ribbonPageGroup1
     //
     this.ribbonPageGroup1.ItemLinks.Add(this.bbiNhapHang);
     this.ribbonPageGroup1.Name = "ribbonPageGroup1";
     this.ribbonPageGroup1.Text = "Nhập Hàng";
     //
     // bbiNhapHang
     //
     this.bbiNhapHang.Caption    = "Thêm hàng mới";
     this.bbiNhapHang.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiNhapHang.Glyph")));
     this.bbiNhapHang.Id         = 5;
     this.bbiNhapHang.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiNhapHang.LargeGlyph")));
     this.bbiNhapHang.LargeWidth = 80;
     this.bbiNhapHang.Name       = "bbiNhapHang";
     this.bbiNhapHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhapHang_ItemClick);
     //
     // bbtnCapnhat
     //
     this.bbtnCapnhat.Caption      = "Cập nhật lại";
     this.bbtnCapnhat.Id           = 17;
     this.bbtnCapnhat.ImageUri.Uri = "Edit";
     this.bbtnCapnhat.Name         = "bbtnCapnhat";
     //
     // rpTrangChu
     //
     this.rpTrangChu.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.rpgHeThong,
         this.ribbonPageGroup2
     });
     this.rpTrangChu.Name = "rpTrangChu";
     this.rpTrangChu.Text = "Trang chủ";
     //
     // rpgHeThong
     //
     this.rpgHeThong.ItemLinks.Add(this.bbiTrangChu);
     this.rpgHeThong.ItemLinks.Add(this.bbiDangNhap);
     this.rpgHeThong.ItemLinks.Add(this.bbiDangXuat);
     this.rpgHeThong.Name = "rpgHeThong";
     this.rpgHeThong.Text = "Hệ Thống";
     //
     // bbiTrangChu
     //
     this.bbiTrangChu.Caption      = "Trang chủ";
     this.bbiTrangChu.Id           = 16;
     this.bbiTrangChu.ImageUri.Uri = "Home";
     this.bbiTrangChu.Name         = "bbiTrangChu";
     this.bbiTrangChu.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTrangChu_ItemClick);
     //
     // bbiDangNhap
     //
     this.bbiDangNhap.Caption    = "Đăng Nhập";
     this.bbiDangNhap.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiDangNhap.Glyph")));
     this.bbiDangNhap.Id         = 3;
     this.bbiDangNhap.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiDangNhap.LargeGlyph")));
     this.bbiDangNhap.LargeWidth = 80;
     this.bbiDangNhap.Name       = "bbiDangNhap";
     //
     // bbiDangXuat
     //
     this.bbiDangXuat.Caption    = "Đăng Xuất";
     this.bbiDangXuat.Glyph      = ((System.Drawing.Image)(resources.GetObject("bbiDangXuat.Glyph")));
     this.bbiDangXuat.Id         = 4;
     this.bbiDangXuat.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiDangXuat.LargeGlyph")));
     this.bbiDangXuat.LargeWidth = 80;
     this.bbiDangXuat.Name       = "bbiDangXuat";
     //
     // ribbonPageGroup2
     //
     this.ribbonPageGroup2.ItemLinks.Add(this.skinHT);
     this.ribbonPageGroup2.Name = "ribbonPageGroup2";
     this.ribbonPageGroup2.Text = "Chọn giao diện ";
     //
     // skinHT
     //
     this.skinHT.Caption = "Giao diện";
     this.skinHT.Id      = 8;
     this.skinHT.Name    = "skinHT";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id      = 1;
     this.barButtonItem1.Name    = "barButtonItem1";
     //
     // barEditItem1
     //
     this.barEditItem1.Caption       = "barEditItem1";
     repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     repositoryItemPictureEdit1.ZoomAccelerationFactor = 1D;
     this.barEditItem1.Edit = repositoryItemPictureEdit1;
     this.barEditItem1.Id   = 6;
     this.barEditItem1.Name = "barEditItem1";
     //
     // ribbonGalleryBarItem1
     //
     this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
     //
     //
     //
     this.ribbonGalleryBarItem1.Gallery.AllowHoverImages = true;
     galleryItemGroup3.Caption = "Group2";
     galleryItem3.Caption      = "Item5";
     galleryItemGroup3.Items.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItem[] {
         galleryItem3
     });
     this.ribbonGalleryBarItem1.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
         galleryItemGroup3
     });
     this.ribbonGalleryBarItem1.Id   = 7;
     this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "barButtonItem3";
     this.barButtonItem3.Id      = 9;
     this.barButtonItem3.Name    = "barButtonItem3";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id      = 10;
     this.barButtonItem2.Name    = "barButtonItem2";
     //
     // barButtonItem_ThongKe_NhapXuat
     //
     this.barButtonItem_ThongKe_NhapXuat.Id           = 14;
     this.barButtonItem_ThongKe_NhapXuat.ImageUri.Uri = "Pie";
     this.barButtonItem_ThongKe_NhapXuat.Name         = "barButtonItem_ThongKe_NhapXuat";
     this.barButtonItem_ThongKe_NhapXuat.RibbonStyle  = DevExpress.XtraBars.Ribbon.RibbonItemStyles.Large;
     this.barButtonItem_ThongKe_NhapXuat.ItemClick   += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_ThongKe_NhapXuat_ItemClick);
     //
     // rPHuongdan
     //
     this.rPHuongdan.ExpandCollapseItem.Id = 0;
     this.rPHuongdan.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.rPHuongdan.ExpandCollapseItem,
         this.barButtonItem1,
         this.bbiDangNhap,
         this.bbiDangXuat,
         this.bbiNhapHang,
         this.barEditItem1,
         this.ribbonGalleryBarItem1,
         this.skinHT,
         this.barButtonItem3,
         this.barButtonItem2,
         this.bbiPhieuXuat,
         this.barButtonItem_ThongKe_DoanhThu,
         this.barButtonItem_ThongKe_NhapXuat,
         this.barButtonItem_ThongKe_DoanhThu_Chung,
         this.bbiTrangChu,
         this.bbtnCapnhat,
         this.bbtntimkiem,
         this.barButtonItem4,
         this.barButtonItem5
     });
     this.rPHuongdan.Location  = new System.Drawing.Point(0, 0);
     this.rPHuongdan.MaxItemId = 21;
     this.rPHuongdan.Name      = "rPHuongdan";
     this.rPHuongdan.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
         this.rpTrangChu,
         this.rPNhapHang,
         this.rPXuatHang,
         this.rPThongKe,
         this.ribbonPage1
     });
     this.rPHuongdan.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
     this.rPHuongdan.Size        = new System.Drawing.Size(1148, 143);
     //
     // bbtntimkiem
     //
     this.bbtntimkiem.Caption      = "Tìm kiếm";
     this.bbtntimkiem.Id           = 18;
     this.bbtntimkiem.ImageUri.Uri = "Zoom";
     this.bbtntimkiem.Name         = "bbtntimkiem";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id      = 19;
     this.barButtonItem4.Name    = "barButtonItem4";
     //
     // ribbonPage1
     //
     this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
         this.ribbonPageGroup5
     });
     this.ribbonPage1.Name = "ribbonPage1";
     this.ribbonPage1.Text = "Hướng dẫn";
     //
     // navBarItem_Huongdan
     //
     this.navBarItem_Huongdan.AllowGlyphSkinning = DevExpress.Utils.DefaultBoolean.True;
     this.navBarItem_Huongdan.Caption            = "Hướng dẫn sử dụng phần mềm";
     this.navBarItem_Huongdan.Name = "navBarItem_Huongdan";
     //
     // ribbonPageGroup5
     //
     this.ribbonPageGroup5.ItemLinks.Add(this.barButtonItem5);
     this.ribbonPageGroup5.Name = "ribbonPageGroup5";
     this.ribbonPageGroup5.Text = "rpHuongdan";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption    = "Hướng dẫn";
     this.barButtonItem5.Id         = 20;
     this.barButtonItem5.Name       = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // popupMenu1
     //
     this.popupMenu1.Name   = "popupMenu1";
     this.popupMenu1.Ribbon = this.rPHuongdan;
     //
     // QUANLYKHO
     //
     this.AllowFormGlass      = DevExpress.Utils.DefaultBoolean.False;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1148, 697);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.rPHuongdan);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "QUANLYKHO";
     this.Ribbon        = this.rPHuongdan;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Quản lý kho";
     this.Load         += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.huongdan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rPHuongdan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).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(frmCuaHang));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiThem = new DevExpress.XtraBars.BarButtonItem();
     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.gcList = new DevExpress.XtraGrid.GridControl();
     this.cUAHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCuaHang = new Do_An_Quan_Ly_Kho.CuaHang.DataSet.dsCuaHang();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Cua_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Cua_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_So_Thue = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDien_Thoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDi_Dong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQuan_Ly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAnh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptAnh = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.rptVal = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cUA_HANGTableAdapter = new Do_An_Quan_Ly_Kho.CuaHang.DataSet.dsCuaHangTableAdapters.CUA_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.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cUAHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCuaHang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptAnh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptVal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).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.bbiThem});
     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.bbiThem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiThem
     //
     this.bbiThem.Caption = "Thêm";
     this.bbiThem.Id = 12;
     this.bbiThem.ImageIndex = 11;
     this.bbiThem.Name = "bbiThem";
     this.bbiThem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiThem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiThem_ItemClick);
     //
     // 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.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSua_ItemClick);
     //
     // 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.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXoa_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;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // 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.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";
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.cUAHANGBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 2);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptVal,
     this.rptAnh});
     this.gcList.Size = new System.Drawing.Size(1098, 388);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // cUAHANGBindingSource
     //
     this.cUAHANGBindingSource.DataMember = "CUA_HANG";
     this.cUAHANGBindingSource.DataSource = this.dsCuaHang;
     //
     // dsCuaHang
     //
     this.dsCuaHang.DataSetName = "dsCuaHang";
     this.dsCuaHang.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Cua_Hang,
     this.colTen_Cua_Hang,
     this.colDia_Chi,
     this.colMa_So_Thue,
     this.colDien_Thoai,
     this.colEmail,
     this.colFax,
     this.colDi_Dong,
     this.colQuan_Ly,
     this.colGhi_Chu,
     this.colAnh});
     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.OptionsSelection.MultiSelect = true;
     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);
     //
     // colMa_Cua_Hang
     //
     this.colMa_Cua_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Cua_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Cua_Hang.Caption = "Mã Cửa Hàng";
     this.colMa_Cua_Hang.FieldName = "Ma_Cua_Hang";
     this.colMa_Cua_Hang.Name = "colMa_Cua_Hang";
     this.colMa_Cua_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Cua_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Cua_Hang.Visible = true;
     this.colMa_Cua_Hang.VisibleIndex = 0;
     //
     // colTen_Cua_Hang
     //
     this.colTen_Cua_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Cua_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Cua_Hang.Caption = "Tên Cửa Hàng";
     this.colTen_Cua_Hang.FieldName = "Ten_Cua_Hang";
     this.colTen_Cua_Hang.Name = "colTen_Cua_Hang";
     this.colTen_Cua_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Cua_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Cua_Hang.Visible = true;
     this.colTen_Cua_Hang.VisibleIndex = 1;
     this.colTen_Cua_Hang.Width = 89;
     //
     // colDia_Chi
     //
     this.colDia_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDia_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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;
     //
     // colMa_So_Thue
     //
     this.colMa_So_Thue.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_So_Thue.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_So_Thue.Caption = "Mã Số Thuế";
     this.colMa_So_Thue.FieldName = "Ma_So_Thue";
     this.colMa_So_Thue.Name = "colMa_So_Thue";
     this.colMa_So_Thue.OptionsColumn.ReadOnly = true;
     this.colMa_So_Thue.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_So_Thue.Visible = true;
     this.colMa_So_Thue.VisibleIndex = 3;
     //
     // colDien_Thoai
     //
     this.colDien_Thoai.AppearanceHeader.Options.UseTextOptions = true;
     this.colDien_Thoai.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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;
     //
     // colEmail
     //
     this.colEmail.AppearanceHeader.Options.UseTextOptions = true;
     this.colEmail.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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 = 5;
     //
     // colFax
     //
     this.colFax.AppearanceHeader.Options.UseTextOptions = true;
     this.colFax.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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 = 6;
     //
     // colDi_Dong
     //
     this.colDi_Dong.AppearanceHeader.Options.UseTextOptions = true;
     this.colDi_Dong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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 = 7;
     //
     // colQuan_Ly
     //
     this.colQuan_Ly.AppearanceHeader.Options.UseTextOptions = true;
     this.colQuan_Ly.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQuan_Ly.Caption = "Quản Lý";
     this.colQuan_Ly.FieldName = "Quan_Ly";
     this.colQuan_Ly.Name = "colQuan_Ly";
     this.colQuan_Ly.OptionsColumn.ReadOnly = true;
     this.colQuan_Ly.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQuan_Ly.Visible = true;
     this.colQuan_Ly.VisibleIndex = 8;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.AppearanceHeader.Options.UseTextOptions = true;
     this.colGhi_Chu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     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 = 9;
     //
     // colAnh
     //
     this.colAnh.AppearanceHeader.Options.UseTextOptions = true;
     this.colAnh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAnh.Caption = "Ảnh";
     this.colAnh.ColumnEdit = this.rptAnh;
     this.colAnh.FieldName = "Anh";
     this.colAnh.MaxWidth = 50;
     this.colAnh.Name = "colAnh";
     this.colAnh.OptionsColumn.ReadOnly = true;
     this.colAnh.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colAnh.Visible = true;
     this.colAnh.VisibleIndex = 10;
     this.colAnh.Width = 50;
     //
     // rptAnh
     //
     this.rptAnh.Name = "rptAnh";
     this.rptAnh.NullText = "Ảnh";
     this.rptAnh.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;
     //
     // rptVal
     //
     this.rptVal.AutoHeight = false;
     this.rptVal.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptVal.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptVal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptVal.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptVal.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptVal.Name = "rptVal";
     //
     // 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.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, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // cUA_HANGTableAdapter
     //
     this.cUA_HANGTableAdapter.ClearBeforeFill = true;
     //
     // frmCuaHang
     //
     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 = "frmCuaHang";
     this.Text = "Cửa Hàng";
     ((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.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cUAHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCuaHang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptAnh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptVal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #14
0
        private void BuildVisibleColumnsProc()
        {
            bool isContainPic     = false;
            int  iGroupIndexCount = -1;
            int  i = 0;

            DevExpress.XtraGrid.Columns.GridColumn[] grdCol = new DevExpress.XtraGrid.Columns.GridColumn[m_dtTableData.Columns.Count];

            foreach (DataColumn dc in m_dtTableData.Columns)
            {
                DevExpress.XtraGrid.Columns.GridColumn colAdd = new DevExpress.XtraGrid.Columns.GridColumn()
                {
                    FieldName = dc.Caption, Caption = dc.Caption, Name = dc.Caption
                };
                foreach (string readOnl in strColumnReadOnly)
                {
                    if (readOnl.ToLower().Equals(dc.Caption.ToLower()))
                    {
                        m_dtTableData.Columns[readOnl].ReadOnly = true;
                        break;
                    }
                }
                switch (dc.DataType.Name.ToLower())
                {
                case "boolean":
                    DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colBool = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit()
                    {
                        AllowFocused = false, BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder, ValueChecked = true, ValueUnchecked = false
                    };

                    isShowCheckAllBtn = true;
                    if (colAdd.Name.ToLower().Contains("modifed"))
                    {
                        isContainModifedColumn = true;
                    }
                    colAdd.ColumnEdit   = colBool;
                    colAdd.VisibleIndex = i;

                    break;

                case strDATETIME:
                    if (colAdd.Name.ToLower().Contains("time"))
                    {
                        colAdd.ColumnEdit = rpeDateTimeMask;
                    }
                    else
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemDateEdit colDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
                        colDate.Mask.EditMask = CommonConst.DATE_FORMAT_PATTEN;
                        colDate.Mask.UseMaskAsDisplayFormat = true;
                        colDate.AllowFocused = false;
                        colDate.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

                        colAdd.ColumnEdit = colDate;
                    }
                    colAdd.VisibleIndex = i;
                    break;

                case strFLOAT:
                case strREAL:
                    colAdd.DisplayFormat.FormatString = "f";
                    colAdd.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    colAdd.SummaryItem.DisplayFormat  = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
                    colAdd.VisibleIndex = i;
                    break;

                case strBIGINT:
                case strINT:
                case strNUMERIC:
                case strSMALLINT:
                case strTINYINT:
                case strDecimal:
                    colAdd.DisplayFormat.FormatString = "n0";
                    colAdd.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
                    colAdd.VisibleIndex = i;
                    break;

                case strMONEY:
                case strSMALLMONEY:
                    colAdd.DisplayFormat.FormatString = "n0";
                    colAdd.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
                    colAdd.VisibleIndex = i;
                    break;

                case strIMAGE:
                case "byte[]":
                    DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit colPhoto = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
                    colAdd.ColumnEdit   = colPhoto;
                    colAdd.VisibleIndex = i;
                    isContainPic        = true;
                    break;

                default:

                    colAdd.VisibleIndex = i;
                    break;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.EmployeeID.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = null;//this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Count;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.FullName.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (strColumnFormatFont != null && strColumnFormatFont.Length > 0 && strColumnFormatFont[0] != "")
                {
                    foreach (string strPairs in strColumnFormatFont)
                    {
                        if (colAdd.FieldName.Equals(strPairs.Split('#')[0]))
                        {
                            switch (strPairs.Split('#')[1].ToLower())
                            {
                            case "b":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
                                break;

                            case "i":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
                                break;

                            case "s":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout);
                                break;

                            case "u":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
                                break;
                            }
                        }
                    }
                }
                if (colAdd.Name.ToLower().Equals("month") || colAdd.Name.ToLower().Equals("year"))
                {
                    colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
                    colAdd.ColumnEdit = null;
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.None;
                }
                //Set list box columns
                DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repCom = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
                //set combobox value data
                if (strColumnCombobox.Length > 0)
                {
                    foreach (string com in strColumnCombobox)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                        {
                            continue;
                        }
                        if (dc.Caption == comboCol[0])
                        {
                            DataTable dtCom = DBEngine.execReturnDataTable(comboCol[1]);
                            if (dtCom != null && dtCom.Rows.Count > 0)
                            {
                                repCom.DataSource    = dtCom;
                                repCom.ValueMember   = dtCom.Columns[0].Caption;
                                repCom.DisplayMember = dtCom.Columns[1].Caption;
                                repCom.NullText      = string.Empty;
                                repCom.CloseUp      += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(repCom_CloseUp);
                                colAdd.ColumnEdit    = repCom;
                                break;
                            }
                        }
                    }
                }
                if (strColumnHide != null && strColumnHide.Length > 0)
                {
                    foreach (string com in strColumnHide)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.VisibleIndex = -1;
                        }
                    }
                }
                if (strColumnFixed != null && strColumnFixed.Length > 0)
                {
                    foreach (string com in strColumnFixed)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.Fixed = FixedStyle.Left;
                        }
                    }
                }
                if (strColumnOrderBy != null && strColumnOrderBy.Length > 0)
                {
                    foreach (string com in strColumnOrderBy)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                        {
                            continue;
                        }
                        if (colAdd.Name.ToLower() == comboCol[0].ToLower())
                        {
                            colAdd.VisibleIndex = Convert.ToInt32(comboCol[1]);
                            break;
                        }
                    }
                }
                //int intWidth = Convert.ToInt16(dc.MaxLength) * 4;
                //colAdd.Width = (intWidth > 100 ? intWidth : 100);
                //colAdd.OptionsColumn.AllowEdit = !isReadOnly;
                grdCol[i++] = colAdd;
            }
            this.grvDynamic.Columns.Clear();
            this.grvDynamic.Columns.AddRange(grdCol);

            m_dtTableData.DefaultView.AllowEdit = !isReadOnly;
            //if (!isContainPic)
            //    grvDynamic.BestFitColumns();
            //else
            //    grvDynamic.RowHeight = 100;
            grvDynamic.BestFitColumns();
            if (strGroupColumns != null && strGroupColumns.Length > 0)
            {
                grvDynamic.OptionsView.ShowGroupPanel = false;
                foreach (string com in strGroupColumns)
                {
                    foreach (GridColumn colGroup in grvDynamic.Columns)
                    {
                        if (colGroup.Name.ToLower() == com.ToLower())
                        {
                            colGroup.GroupIndex = ++iGroupIndexCount;
                            grvDynamic.OptionsView.ShowGroupPanel = true;
                        }
                    }
                }
                grvDynamic.ExpandAllGroups();
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridViewTBLWarasa = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMSTBLMashats = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewTBLMashats = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWorkeEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLMashats)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTBLMashats)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridViewTBLWarasa
     //
     this.gridViewTBLWarasa.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2});
     this.gridViewTBLWarasa.GridControl = this.gridControlData;
     this.gridViewTBLWarasa.Name = "gridViewTBLWarasa";
     //
     // 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 = "personName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.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 = "WarasaTypeId";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // 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.LSMSTBLMashats;
     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}";
     gridLevelNode1.LevelTemplate = this.gridViewTBLWarasa;
     gridLevelNode1.RelationName = "TBLWarasa";
     this.gridControlData.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewTBLMashats;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     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.gridViewTBLMashats,
     this.gridViewTBLWarasa});
     //
     // LSMSTBLMashats
     //
     this.LSMSTBLMashats.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLMashat);
     this.LSMSTBLMashats.KeyExpression = "[MMashatId]";
     //
     // gridViewTBLMashats
     //
     this.gridViewTBLMashats.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewTBLMashats.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewTBLMashats.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewTBLMashats.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewTBLMashats.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewTBLMashats.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewTBLMashats.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewTBLMashats.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewTBLMashats.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewTBLMashats.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewTBLMashats.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewTBLMashats.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewTBLMashats.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewTBLMashats.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewTBLMashats.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewTBLMashats.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewTBLMashats.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewTBLMashats.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewTBLMashats.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewTBLMashats.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewTBLMashats.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewTBLMashats.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewTBLMashats.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewTBLMashats.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewTBLMashats.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewTBLMashats.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewTBLMashats.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewTBLMashats.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewTBLMashats.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewTBLMashats.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewTBLMashats.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewTBLMashats.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewTBLMashats.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewTBLMashats.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewTBLMashats.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewTBLMashats.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewTBLMashats.Appearance.Row.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewTBLMashats.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewTBLMashats.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewTBLMashats.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewTBLMashats.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewTBLMashats.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colsarfnumber,
     this.colyasref,
     this.colSyndicateId,
     this.colSubCommitte,
     this.colWorkeEndDate,
     this.coldatein,
     this.colMMashatId});
     this.gridViewTBLMashats.GridControl = this.gridControlData;
     this.gridViewTBLMashats.Name = "gridViewTBLMashats";
     this.gridViewTBLMashats.OptionsCustomization.AllowRowSizing = true;
     this.gridViewTBLMashats.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridViewTBLMashats.OptionsFind.AlwaysVisible = true;
     this.gridViewTBLMashats.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewTBLMashats.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewTBLMashats.OptionsView.AllowCellMerge = true;
     this.gridViewTBLMashats.OptionsView.ColumnAutoWidth = false;
     this.gridViewTBLMashats.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewTBLMashats.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewTBLMashats.OptionsView.ShowAutoFilterRow = true;
     this.gridViewTBLMashats.OptionsView.ShowFooter = true;
     this.gridViewTBLMashats.MasterRowGetChildList += new DevExpress.XtraGrid.Views.Grid.MasterRowGetChildListEventHandler(this.gridViewTBLMashats_MasterRowGetChildList);
     this.gridViewTBLMashats.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewTBLMashats_FocusedRowChanged);
     //
     // 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;
     //
     // 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 = 1;
     //
     // colyasref
     //
     this.colyasref.AppearanceCell.Options.UseTextOptions = true;
     this.colyasref.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.AppearanceHeader.Options.UseTextOptions = true;
     this.colyasref.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.Caption = "يصرف";
     this.colyasref.FieldName = "yasref";
     this.colyasref.Name = "colyasref";
     this.colyasref.Visible = true;
     this.colyasref.VisibleIndex = 2;
     this.colyasref.Width = 46;
     //
     // 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.FieldName = "CDSyndicate.Syndicate";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 3;
     this.colSyndicateId.Width = 114;
     //
     // 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 = "CDSubCommitte.SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 4;
     //
     // colWorkeEndDate
     //
     this.colWorkeEndDate.AppearanceCell.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.Caption = "تاريخ نهاية العمل";
     this.colWorkeEndDate.FieldName = "WorkeEndDate";
     this.colWorkeEndDate.Name = "colWorkeEndDate";
     this.colWorkeEndDate.Visible = true;
     this.colWorkeEndDate.VisibleIndex = 5;
     this.colWorkeEndDate.Width = 94;
     //
     // 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.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 6;
     //
     // 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 = 7;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // 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()});
     //
     // 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);
     //
     // Qry00Frm
     //
     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 = "Qry00Frm";
     this.Text = "الورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.QryTblAhteatyFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLMashats)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTBLMashats)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_nav = new DevExpress.XtraEditors.ControlNavigator();
     this.gridtp = new SkyMap.Net.Gui.Components.SmGridControl();
     this.gridView1 = new SkyMap.Net.Gui.Components.SmCardView();
     this.colͼƬ���� = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ͼƬICON = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.m_btnSave = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.gridtp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // m_nav
     //
     this.m_nav.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.m_nav.Location = new System.Drawing.Point(12, 335);
     this.m_nav.Name = "m_nav";
     this.m_nav.NavigatableControl = this.gridtp;
     this.m_nav.Size = new System.Drawing.Size(224, 24);
     this.m_nav.TabIndex = 6;
     this.m_nav.Text = "controlNavigator2";
     //
     // gridtp
     //
     this.gridtp.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.gridtp.EmbeddedNavigator.Name = "";
     this.gridtp.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.gridtp.Location = new System.Drawing.Point(12, 12);
     this.gridtp.MainView = this.gridView1;
     this.gridtp.Name = "gridtp";
     this.gridtp.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemImageEdit1,
     this.repositoryItemPictureEdit1});
     this.gridtp.Size = new System.Drawing.Size(552, 317);
     this.gridtp.TabIndex = 5;
     this.gridtp.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Appearance.FieldCaption.BackColor = System.Drawing.Color.GhostWhite;
     this.gridView1.Appearance.FieldCaption.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.gridView1.Appearance.FieldCaption.ForeColor = System.Drawing.Color.BlueViolet;
     this.gridView1.Appearance.FieldCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.gridView1.Appearance.FieldValue.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.gridView1.CardCaptionFormat = "ͼƬ���� {1}";
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colͼƬ����,
     this.ͼƬICON});
     this.gridView1.FocusedCardTopFieldIndex = 0;
     this.gridView1.GridControl = this.gridtp;
     this.gridView1.MaximumCardColumns = 1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AutoFocusNewCard = true;
     this.gridView1.OptionsBehavior.AutoHorzWidth = true;
     this.gridView1.OptionsBehavior.FieldAutoHeight = true;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // colͼƬ����
     //
     this.colͼƬ����.Caption = "ͼƬ����";
     this.colͼƬ����.FieldName = "ͼƬ����";
     this.colͼƬ����.Name = "colͼƬ����";
     this.colͼƬ����.Visible = true;
     this.colͼƬ����.VisibleIndex = 0;
     //
     // ͼƬICON
     //
     this.ͼƬICON.Caption = "ͼƬICON";
     this.ͼƬICON.ColumnEdit = this.repositoryItemPictureEdit1;
     this.ͼƬICON.FieldName = "ͼƬ";
     this.ͼƬICON.Name = "ͼƬICON";
     this.ͼƬICON.Visible = true;
     this.ͼƬICON.VisibleIndex = 1;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     //
     // m_btnSave
     //
     this.m_btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.m_btnSave.Location = new System.Drawing.Point(264, 335);
     this.m_btnSave.Name = "m_btnSave";
     this.m_btnSave.Size = new System.Drawing.Size(75, 23);
     this.m_btnSave.TabIndex = 7;
     this.m_btnSave.Text = "����";
     this.m_btnSave.UseVisualStyleBackColor = true;
     this.m_btnSave.Click += new System.EventHandler(this.m_btnSave_Click);
     //
     // frmEditPhoto
     //
     this.ClientSize = new System.Drawing.Size(577, 398);
     this.Controls.Add(this.m_btnSave);
     this.Controls.Add(this.m_nav);
     this.Controls.Add(this.gridtp);
     this.MaximizeBox = false;
     this.Name = "frmEditPhoto";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "�ؿ�ͼƬ";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmEditPhoto_FormClosing);
     this.Load += new System.EventHandler(this.frmEditPhoto_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridtp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #17
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();
     DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.ctrl_Suc_Bod  = new Core.Erp.Winform.Controles.UCIn_Sucursal_Bodega();
     this.checkEdit1    = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.dtpFecha      = new DevExpress.XtraEditors.DateEdit();
     this.pnlCategorias = new DevExpress.XtraEditors.PanelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.gridControl   = new DevExpress.XtraGrid.GridControl();
     this.spInDispInventarioInfoBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView          = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmpresaSi      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIdSucursalSi   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIdBodegaSi     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIdProductoSi   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSu_Descripcion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colbo_Descripcion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpr_descripcion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIdCategoria    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colca_Categoria   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colstock          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpr_Pedidos     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIdUsuario      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpr_codigo      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDisponibles    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colImagen         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.BTProcesar        = new System.Windows.Forms.ToolStripButton();
     this.btImprimir        = new System.Windows.Forms.ToolStripButton();
     this.btSalir           = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1        = new System.Windows.Forms.ToolStrip();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFecha.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFecha.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCategorias)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spInDispInventarioInfoBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemPictureEdit1)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.toolStrip1);
     this.panelControl1.Controls.Add(this.ctrl_Suc_Bod);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.dtpFecha);
     this.panelControl1.Controls.Add(this.pnlCategorias);
     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(991, 145);
     this.panelControl1.TabIndex = 0;
     //
     // ctrl_Suc_Bod
     //
     this.ctrl_Suc_Bod.Location  = new System.Drawing.Point(12, 66);
     this.ctrl_Suc_Bod.Name      = "ctrl_Suc_Bod";
     this.ctrl_Suc_Bod.Size      = new System.Drawing.Size(467, 51);
     this.ctrl_Suc_Bod.TabIndex  = 4;
     this.ctrl_Suc_Bod.TipoCarga = Core.Erp.Info.General.Cl_Enumeradores.eTipoFiltro.todos;
     //
     // checkEdit1
     //
     this.checkEdit1.Location           = new System.Drawing.Point(112, 41);
     this.checkEdit1.Name               = "checkEdit1";
     this.checkEdit1.Properties.Caption = "checkEdit1";
     this.checkEdit1.Size               = new System.Drawing.Size(21, 19);
     this.checkEdit1.TabIndex           = 3;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(13, 44);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(74, 13);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text     = "Fecha de Corte";
     //
     // dtpFecha
     //
     this.dtpFecha.EditValue = null;
     this.dtpFecha.Location  = new System.Drawing.Point(139, 40);
     this.dtpFecha.Name      = "dtpFecha";
     this.dtpFecha.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtpFecha.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtpFecha.Size     = new System.Drawing.Size(162, 20);
     this.dtpFecha.TabIndex = 1;
     //
     // pnlCategorias
     //
     this.pnlCategorias.Dock     = System.Windows.Forms.DockStyle.Right;
     this.pnlCategorias.Location = new System.Drawing.Point(772, 2);
     this.pnlCategorias.Name     = "pnlCategorias";
     this.pnlCategorias.Size     = new System.Drawing.Size(217, 141);
     this.pnlCategorias.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gridControl);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 145);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(991, 304);
     this.panelControl2.TabIndex = 1;
     //
     // gridControl
     //
     this.gridControl.DataSource = this.spInDispInventarioInfoBindingSource;
     this.gridControl.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.gridControl.Location   = new System.Drawing.Point(2, 2);
     this.gridControl.MainView   = this.gridView;
     this.gridControl.Name       = "gridControl";
     this.gridControl.Size       = new System.Drawing.Size(987, 300);
     this.gridControl.TabIndex   = 0;
     this.gridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView
     });
     //
     // spInDispInventarioInfoBindingSource
     //
     this.spInDispInventarioInfoBindingSource.DataSource = typeof(Core.Erp.Info.Inventario.SpIn_DispInventario_Info);
     //
     // gridView
     //
     this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colEmpresaSi,
         this.colIdSucursalSi,
         this.colIdBodegaSi,
         this.colIdProductoSi,
         this.colSu_Descripcion,
         this.colbo_Descripcion,
         this.colpr_descripcion,
         this.colIdCategoria,
         this.colca_Categoria,
         this.colstock,
         this.colpr_Pedidos,
         this.colIdUsuario,
         this.colpr_codigo,
         this.colDisponibles,
         this.colImagen
     });
     this.gridView.GridControl = this.gridControl;
     this.gridView.Name        = "gridView";
     this.gridView.OptionsBehavior.Editable = false;
     this.gridView.RowCellClick            += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.gridView_RowCellClick);
     //
     // colEmpresaSi
     //
     this.colEmpresaSi.FieldName = "EmpresaSi";
     this.colEmpresaSi.Name      = "colEmpresaSi";
     //
     // colIdSucursalSi
     //
     this.colIdSucursalSi.FieldName = "IdSucursalSi";
     this.colIdSucursalSi.Name      = "colIdSucursalSi";
     //
     // colIdBodegaSi
     //
     this.colIdBodegaSi.FieldName = "IdBodegaSi";
     this.colIdBodegaSi.Name      = "colIdBodegaSi";
     //
     // colIdProductoSi
     //
     this.colIdProductoSi.FieldName = "IdProductoSi";
     this.colIdProductoSi.Name      = "colIdProductoSi";
     //
     // colSu_Descripcion
     //
     this.colSu_Descripcion.Caption      = "Sucursal";
     this.colSu_Descripcion.FieldName    = "Su_Descripcion";
     this.colSu_Descripcion.Name         = "colSu_Descripcion";
     this.colSu_Descripcion.Visible      = true;
     this.colSu_Descripcion.VisibleIndex = 0;
     this.colSu_Descripcion.Width        = 107;
     //
     // colbo_Descripcion
     //
     this.colbo_Descripcion.Caption      = "Bodega";
     this.colbo_Descripcion.FieldName    = "bo_Descripcion";
     this.colbo_Descripcion.Name         = "colbo_Descripcion";
     this.colbo_Descripcion.Visible      = true;
     this.colbo_Descripcion.VisibleIndex = 1;
     this.colbo_Descripcion.Width        = 107;
     //
     // colpr_descripcion
     //
     this.colpr_descripcion.Caption      = "Item";
     this.colpr_descripcion.FieldName    = "pr_descripcion";
     this.colpr_descripcion.Name         = "colpr_descripcion";
     this.colpr_descripcion.Visible      = true;
     this.colpr_descripcion.VisibleIndex = 3;
     this.colpr_descripcion.Width        = 107;
     //
     // colIdCategoria
     //
     this.colIdCategoria.FieldName = "IdCategoria";
     this.colIdCategoria.Name      = "colIdCategoria";
     //
     // colca_Categoria
     //
     this.colca_Categoria.Caption      = "Categoria";
     this.colca_Categoria.FieldName    = "ca_Categoria";
     this.colca_Categoria.Name         = "colca_Categoria";
     this.colca_Categoria.Visible      = true;
     this.colca_Categoria.VisibleIndex = 4;
     this.colca_Categoria.Width        = 107;
     //
     // colstock
     //
     this.colstock.Caption      = "Stock";
     this.colstock.FieldName    = "stock";
     this.colstock.Name         = "colstock";
     this.colstock.Visible      = true;
     this.colstock.VisibleIndex = 5;
     this.colstock.Width        = 107;
     //
     // colpr_Pedidos
     //
     this.colpr_Pedidos.Caption      = "Pedidos";
     this.colpr_Pedidos.FieldName    = "pr_Pedidos";
     this.colpr_Pedidos.Name         = "colpr_Pedidos";
     this.colpr_Pedidos.Visible      = true;
     this.colpr_Pedidos.VisibleIndex = 6;
     this.colpr_Pedidos.Width        = 107;
     //
     // colIdUsuario
     //
     this.colIdUsuario.FieldName = "IdUsuario";
     this.colIdUsuario.Name      = "colIdUsuario";
     //
     // colpr_codigo
     //
     this.colpr_codigo.Caption      = "Codigo";
     this.colpr_codigo.FieldName    = "pr_codigo";
     this.colpr_codigo.Name         = "colpr_codigo";
     this.colpr_codigo.Visible      = true;
     this.colpr_codigo.VisibleIndex = 2;
     this.colpr_codigo.Width        = 107;
     //
     // colDisponibles
     //
     this.colDisponibles.FieldName    = "Disponibles";
     this.colDisponibles.Name         = "colDisponibles";
     this.colDisponibles.Visible      = true;
     this.colDisponibles.VisibleIndex = 7;
     this.colDisponibles.Width        = 195;
     //
     // colImagen
     //
     this.colImagen.Caption              = " ";
     repositoryItemPictureEdit1.Name     = "repositoryItemPictureEdit1";
     repositoryItemPictureEdit1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     this.colImagen.ColumnEdit           = repositoryItemPictureEdit1;
     this.colImagen.FieldName            = "Imagen";
     this.colImagen.Name         = "colImagen";
     this.colImagen.Visible      = true;
     this.colImagen.VisibleIndex = 8;
     this.colImagen.Width        = 25;
     //
     // BTProcesar
     //
     this.BTProcesar.Image = global::Core.Erp.Winform.Properties.Resources.Refres;
     this.BTProcesar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.BTProcesar.Name   = "BTProcesar";
     this.BTProcesar.Size   = new System.Drawing.Size(78, 22);
     this.BTProcesar.Text   = "Consultar";
     this.BTProcesar.Click += new System.EventHandler(this.BTProcesar_Click);
     //
     // btImprimir
     //
     this.btImprimir.Image = global::Core.Erp.Winform.Properties.Resources.imprimir;
     this.btImprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btImprimir.Name   = "btImprimir";
     this.btImprimir.Size   = new System.Drawing.Size(73, 22);
     this.btImprimir.Text   = "Imprimir";
     this.btImprimir.Click += new System.EventHandler(this.btImprimir_Click);
     //
     // btSalir
     //
     this.btSalir.Image = global::Core.Erp.Winform.Properties.Resources.salir;
     this.btSalir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btSalir.Name   = "btSalir";
     this.btSalir.Size   = new System.Drawing.Size(49, 22);
     this.btSalir.Text   = "Salir";
     this.btSalir.Click += new System.EventHandler(this.btSalir_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.BTProcesar,
         this.btImprimir,
         this.btSalir
     });
     this.toolStrip1.Location = new System.Drawing.Point(2, 2);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(770, 25);
     this.toolStrip1.TabIndex = 6;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // FrmIn_Disponibilidad_Inventario
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(991, 449);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Name = "FrmIn_Disponibilidad_Inventario";
     this.Text = "Disponibilidad De Inventario";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFecha.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFecha.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCategorias)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spInDispInventarioInfoBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemPictureEdit1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.vQry66BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries1 = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisanumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsummony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCurrency = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAction = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsendbankdate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatwareddate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluserin = 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.colMMashatName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActivate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditMDY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.panelControlMain = new DevExpress.XtraEditors.PanelControl();
     this.LUETBLDofatSarf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveBackData = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry66TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry66TableAdapter();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf1 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry66BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMain)).BeginInit();
     this.panelControlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).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.vQry66BindingSource;
     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, 69);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditMDY});
     this.gridControlData.Size = new System.Drawing.Size(1353, 388);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // vQry66BindingSource
     //
     this.vQry66BindingSource.DataMember = "vQry66";
     this.vQry66BindingSource.DataSource = this.dsQueries1;
     //
     // dsQueries1
     //
     this.dsQueries1.DataSetName = "dsQueries";
     this.dsQueries1.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.colMMashatId,
     this.colvisanumber,
     this.gridColumn2,
     this.colsummony,
     this.colCurrency,
     this.colAction,
     this.colMMashatName,
     this.colMMashatNId,
     this.gridColumn1,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colsendbankdate,
     this.colamanatmony,
     this.colamanatwareddate,
     this.coldatein,
     this.coluserin,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte,
     this.colMMashatName1,
     this.colActivate,
     this.colDofatSarfId,
     this.colDofatSarf1});
     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;
     //
     // 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 = "Customer ID";
     this.colMMashatId.FieldName = "newid";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     this.colMMashatId.Width = 79;
     //
     // colvisanumber
     //
     this.colvisanumber.AppearanceCell.Options.UseTextOptions = true;
     this.colvisanumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisanumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisanumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisanumber.Caption = "PAN";
     this.colvisanumber.FieldName = "visanumber";
     this.colvisanumber.Name = "colvisanumber";
     this.colvisanumber.Visible = true;
     this.colvisanumber.VisibleIndex = 1;
     //
     // 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 = "Account Number";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 98;
     //
     // colsummony
     //
     this.colsummony.AppearanceCell.Options.UseTextOptions = true;
     this.colsummony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsummony.AppearanceHeader.Options.UseTextOptions = true;
     this.colsummony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsummony.Caption = "Amount";
     this.colsummony.FieldName = "summony";
     this.colsummony.Name = "colsummony";
     this.colsummony.Visible = true;
     this.colsummony.VisibleIndex = 3;
     //
     // colCurrency
     //
     this.colCurrency.AppearanceCell.Options.UseTextOptions = true;
     this.colCurrency.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrency.AppearanceHeader.Options.UseTextOptions = true;
     this.colCurrency.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrency.FieldName = "Currency";
     this.colCurrency.Name = "colCurrency";
     this.colCurrency.Visible = true;
     this.colCurrency.VisibleIndex = 4;
     //
     // colAction
     //
     this.colAction.AppearanceCell.Options.UseTextOptions = true;
     this.colAction.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAction.AppearanceHeader.Options.UseTextOptions = true;
     this.colAction.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAction.FieldName = "Action";
     this.colAction.Name = "colAction";
     this.colAction.Visible = true;
     this.colAction.VisibleIndex = 5;
     //
     // 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 = "Customer Name";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 6;
     this.colMMashatName.Width = 95;
     //
     // colMMashatNId
     //
     this.colMMashatNId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.Caption = "National ID";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 7;
     //
     // 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 = "Description";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 8;
     //
     // 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.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 9;
     this.colSyndicateId.Width = 79;
     //
     // colSubCommitteId
     //
     this.colSubCommitteId.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 10;
     this.colSubCommitteId.Width = 98;
     //
     // colsendbankdate
     //
     this.colsendbankdate.AppearanceCell.Options.UseTextOptions = true;
     this.colsendbankdate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsendbankdate.AppearanceHeader.Options.UseTextOptions = true;
     this.colsendbankdate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsendbankdate.FieldName = "sendbankdate";
     this.colsendbankdate.Name = "colsendbankdate";
     this.colsendbankdate.Visible = true;
     this.colsendbankdate.VisibleIndex = 11;
     this.colsendbankdate.Width = 87;
     //
     // 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.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 12;
     this.colamanatmony.Width = 81;
     //
     // colamanatwareddate
     //
     this.colamanatwareddate.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatwareddate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatwareddate.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatwareddate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatwareddate.FieldName = "amanatwareddate";
     this.colamanatwareddate.Name = "colamanatwareddate";
     this.colamanatwareddate.Visible = true;
     this.colamanatwareddate.VisibleIndex = 13;
     this.colamanatwareddate.Width = 107;
     //
     // 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.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 14;
     //
     // 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.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 15;
     //
     // 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.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 16;
     //
     // 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.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 17;
     //
     // 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.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 18;
     this.colSubCommitte.Width = 85;
     //
     // colMMashatName1
     //
     this.colMMashatName1.FieldName = "MMashatName";
     this.colMMashatName1.Name = "colMMashatName1";
     this.colMMashatName1.Visible = true;
     this.colMMashatName1.VisibleIndex = 19;
     //
     // colActivate
     //
     this.colActivate.AppearanceCell.Options.UseTextOptions = true;
     this.colActivate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.AppearanceHeader.Options.UseTextOptions = true;
     this.colActivate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.Caption = "Activate";
     this.colActivate.FieldName = "Activate";
     this.colActivate.Name = "colActivate";
     this.colActivate.Visible = true;
     this.colActivate.VisibleIndex = 20;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemDateEditMDY
     //
     this.repositoryItemDateEditMDY.AutoHeight = false;
     this.repositoryItemDateEditMDY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditMDY.DisplayFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditMDY.EditFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditMDY.Mask.EditMask = "MM/dd/yyyy";
     this.repositoryItemDateEditMDY.Name = "repositoryItemDateEditMDY";
     this.repositoryItemDateEditMDY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // panelControlMain
     //
     this.panelControlMain.Controls.Add(this.LUETBLDofatSarf);
     this.panelControlMain.Controls.Add(this.labelControl7);
     this.panelControlMain.Controls.Add(this.btnSaveBackData);
     this.panelControlMain.Controls.Add(this.btnPrintExport);
     this.panelControlMain.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlMain.Location = new System.Drawing.Point(0, 0);
     this.panelControlMain.Name = "panelControlMain";
     this.panelControlMain.Size = new System.Drawing.Size(1353, 63);
     this.panelControlMain.TabIndex = 3;
     //
     // LUETBLDofatSarf
     //
     this.LUETBLDofatSarf.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.LUETBLDofatSarf.Location = new System.Drawing.Point(1070, 20);
     this.LUETBLDofatSarf.Name = "LUETBLDofatSarf";
     this.LUETBLDofatSarf.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUETBLDofatSarf.Properties.Appearance.Options.UseFont = true;
     this.LUETBLDofatSarf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUETBLDofatSarf.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.LUETBLDofatSarf.Properties.DisplayMember = "DofatSarf";
     this.LUETBLDofatSarf.Properties.NullText = "";
     this.LUETBLDofatSarf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUETBLDofatSarf.Properties.ValueMember = "DofatSarfId";
     this.LUETBLDofatSarf.Properties.View = this.gridLookUpEdit1View;
     this.LUETBLDofatSarf.Size = new System.Drawing.Size(236, 22);
     this.LUETBLDofatSarf.TabIndex = 2;
     this.LUETBLDofatSarf.EditValueChanged += new System.EventHandler(this.LUETBLDofatSarf_EditValueChanged);
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarf});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "اسم الدفعة";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // labelControl7
     //
     this.labelControl7.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl7.Location = new System.Drawing.Point(1312, 23);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(29, 13);
     this.labelControl7.TabIndex = 3;
     this.labelControl7.Text = "الدفعة";
     //
     // btnSaveBackData
     //
     this.btnSaveBackData.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnSaveBackData.Image = global::RetirementCenter.Properties.Resources.save_16x16;
     this.btnSaveBackData.Location = new System.Drawing.Point(12, 34);
     this.btnSaveBackData.Name = "btnSaveBackData";
     this.btnSaveBackData.Size = new System.Drawing.Size(134, 23);
     this.btnSaveBackData.TabIndex = 0;
     this.btnSaveBackData.Text = "حفظ بيانات البنك";
     this.btnSaveBackData.Click += new System.EventHandler(this.btnSaveBackData_Click);
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.btnPrintExport.Location = new System.Drawing.Point(12, 5);
     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);
     //
     // vQry66TableAdapter
     //
     this.vQry66TableAdapter.ClearBeforeFill = true;
     //
     // 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 = "DofatSarfId";
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 21;
     //
     // colDofatSarf1
     //
     this.colDofatSarf1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf1.Caption = "DofatSarf";
     this.colDofatSarf1.FieldName = "DofatSarf";
     this.colDofatSarf1.Name = "colDofatSarf1";
     this.colDofatSarf1.Visible = true;
     this.colDofatSarf1.VisibleIndex = 22;
     //
     // Qry66Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1353, 462);
     this.Controls.Add(this.panelControlMain);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry66Frm";
     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.vQry66BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditMDY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMain)).EndInit();
     this.panelControlMain.ResumeLayout(false);
     this.panelControlMain.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #19
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.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.xtraTab = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabMemberCardPhoto = new DevExpress.XtraTab.XtraTabPage();
     this.btnPhotoRotate = new System.Windows.Forms.Button();
     this.btnMemberPhotoReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberPhotoApprove = new DevExpress.XtraEditors.SimpleButton();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.GridMemberCard = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckSelection = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcMemberPhotoID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMemberName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRequestDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.xtraTabPackageExtension = new DevExpress.XtraTab.XtraTabPage();
     this.btnRotate = new System.Windows.Forms.Button();
     this.pictureEdit2 = new System.Windows.Forms.PictureBox();
     this.btnPackageExtensionReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageExtensionApprove = new DevExpress.XtraEditors.SimpleButton();
     this.label2 = new System.Windows.Forms.Label();
     this.GridPackageExtension = new DevExpress.XtraGrid.GridControl();
     this.gridViewPackageExtension = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCheckExtension = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcExtensionID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCreateDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMemberID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPackageCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gReason = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDayExtend = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcStartDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcNewExpiryDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTab)).BeginInit();
     this.xtraTab.SuspendLayout();
     this.xtraTabMemberCardPhoto.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckSelection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     this.xtraTabPackageExtension.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPackageExtension)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackageExtension)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.xtraTab);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(912, 525);
     this.groupControl1.TabIndex = 124;
     this.groupControl1.Text = "Mobile App";
     //
     // xtraTab
     //
     this.xtraTab.Location = new System.Drawing.Point(8, 48);
     this.xtraTab.Name = "xtraTab";
     this.xtraTab.SelectedTabPage = this.xtraTabMemberCardPhoto;
     this.xtraTab.Size = new System.Drawing.Size(840, 442);
     this.xtraTab.TabIndex = 119;
     this.xtraTab.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabMemberCardPhoto,
     this.xtraTabPackageExtension});
     //
     // xtraTabMemberCardPhoto
     //
     this.xtraTabMemberCardPhoto.Controls.Add(this.btnPhotoRotate);
     this.xtraTabMemberCardPhoto.Controls.Add(this.btnMemberPhotoReject);
     this.xtraTabMemberCardPhoto.Controls.Add(this.btnMemberPhotoApprove);
     this.xtraTabMemberCardPhoto.Controls.Add(this.pictureEdit1);
     this.xtraTabMemberCardPhoto.Controls.Add(this.label1);
     this.xtraTabMemberCardPhoto.Controls.Add(this.GridMemberCard);
     this.xtraTabMemberCardPhoto.Name = "xtraTabMemberCardPhoto";
     this.xtraTabMemberCardPhoto.Size = new System.Drawing.Size(831, 411);
     this.xtraTabMemberCardPhoto.Text = "Photo Approval";
     //
     // btnPhotoRotate
     //
     this.btnPhotoRotate.Location = new System.Drawing.Point(629, 112);
     this.btnPhotoRotate.Name = "btnPhotoRotate";
     this.btnPhotoRotate.Size = new System.Drawing.Size(75, 23);
     this.btnPhotoRotate.TabIndex = 89;
     this.btnPhotoRotate.Text = "Rotate";
     this.btnPhotoRotate.UseVisualStyleBackColor = true;
     this.btnPhotoRotate.Click += new System.EventHandler(this.btnPhotoRotate_Click);
     //
     // btnMemberPhotoReject
     //
     this.btnMemberPhotoReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMemberPhotoReject.Appearance.Options.UseFont = true;
     this.btnMemberPhotoReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberPhotoReject.Location = new System.Drawing.Point(84, 340);
     this.btnMemberPhotoReject.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnMemberPhotoReject.Name = "btnMemberPhotoReject";
     this.btnMemberPhotoReject.Size = new System.Drawing.Size(75, 23);
     this.btnMemberPhotoReject.TabIndex = 83;
     this.btnMemberPhotoReject.Text = "Reject";
     this.btnMemberPhotoReject.Click += new System.EventHandler(this.btnMemberPhotoReject_Click);
     //
     // btnMemberPhotoApprove
     //
     this.btnMemberPhotoApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMemberPhotoApprove.Appearance.Options.UseFont = true;
     this.btnMemberPhotoApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberPhotoApprove.Location = new System.Drawing.Point(3, 340);
     this.btnMemberPhotoApprove.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnMemberPhotoApprove.Name = "btnMemberPhotoApprove";
     this.btnMemberPhotoApprove.Size = new System.Drawing.Size(75, 23);
     this.btnMemberPhotoApprove.TabIndex = 82;
     this.btnMemberPhotoApprove.Text = "Approve";
     this.btnMemberPhotoApprove.Click += new System.EventHandler(this.btnMemberPhotoApprove_Click);
     //
     // pictureEdit1
     //
     this.pictureEdit1.Location = new System.Drawing.Point(710, 23);
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     this.pictureEdit1.Size = new System.Drawing.Size(109, 112);
     this.pictureEdit1.TabIndex = 11;
     this.pictureEdit1.Click += new System.EventHandler(this.pictureEdit1_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(4, 10);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(107, 13);
     this.label1.TabIndex = 10;
     this.label1.Text = "Pending Approval";
     //
     // GridMemberCard
     //
     this.GridMemberCard.Location = new System.Drawing.Point(3, 143);
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckSelection,
     this.repositoryItemImageComboBox1,
     this.repositoryItemImageComboBox2,
     this.repositoryItemImageEdit1,
     this.repositoryItemPictureEdit1});
     this.GridMemberCard.Size = new System.Drawing.Size(816, 191);
     this.GridMemberCard.TabIndex = 9;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberCard});
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCheck,
     this.gcMemberPhotoID,
     this.gcMembershipID,
     this.gcMemberName,
     this.gcRequestDate});
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     //
     // gcCheck
     //
     this.gcCheck.Caption = "Utl";
     this.gcCheck.ColumnEdit = this.repositoryItemCheckSelection;
     this.gcCheck.FieldName = "UtlCheck";
     this.gcCheck.Name = "gcCheck";
     this.gcCheck.OptionsColumn.ShowCaption = false;
     this.gcCheck.Visible = true;
     this.gcCheck.VisibleIndex = 0;
     this.gcCheck.Width = 25;
     //
     // repositoryItemCheckSelection
     //
     this.repositoryItemCheckSelection.AutoHeight = false;
     this.repositoryItemCheckSelection.Name = "repositoryItemCheckSelection";
     this.repositoryItemCheckSelection.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gcMemberPhotoID
     //
     this.gcMemberPhotoID.Caption = "ID";
     this.gcMemberPhotoID.FieldName = "nMemberPhotoID";
     this.gcMemberPhotoID.Name = "gcMemberPhotoID";
     this.gcMemberPhotoID.OptionsColumn.AllowEdit = false;
     this.gcMemberPhotoID.Visible = true;
     this.gcMemberPhotoID.VisibleIndex = 1;
     //
     // gcMembershipID
     //
     this.gcMembershipID.Caption = "Membership ID";
     this.gcMembershipID.FieldName = "strMembershipID";
     this.gcMembershipID.Name = "gcMembershipID";
     this.gcMembershipID.OptionsColumn.AllowEdit = false;
     this.gcMembershipID.Visible = true;
     this.gcMembershipID.VisibleIndex = 2;
     this.gcMembershipID.Width = 117;
     //
     // gcMemberName
     //
     this.gcMemberName.Caption = "Member Name";
     this.gcMemberName.FieldName = "strMemberName";
     this.gcMemberName.Name = "gcMemberName";
     this.gcMemberName.OptionsColumn.AllowEdit = false;
     this.gcMemberName.Visible = true;
     this.gcMemberName.VisibleIndex = 3;
     this.gcMemberName.Width = 161;
     //
     // gcRequestDate
     //
     this.gcRequestDate.Caption = "Request Date";
     this.gcRequestDate.FieldName = "dtUpload";
     this.gcRequestDate.Name = "gcRequestDate";
     this.gcRequestDate.OptionsColumn.AllowEdit = false;
     this.gcRequestDate.Visible = true;
     this.gcRequestDate.VisibleIndex = 4;
     this.gcRequestDate.Width = 162;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     this.repositoryItemImageEdit1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // xtraTabPackageExtension
     //
     this.xtraTabPackageExtension.Controls.Add(this.btnRotate);
     this.xtraTabPackageExtension.Controls.Add(this.pictureEdit2);
     this.xtraTabPackageExtension.Controls.Add(this.btnPackageExtensionReject);
     this.xtraTabPackageExtension.Controls.Add(this.btnPackageExtensionApprove);
     this.xtraTabPackageExtension.Controls.Add(this.label2);
     this.xtraTabPackageExtension.Controls.Add(this.GridPackageExtension);
     this.xtraTabPackageExtension.Name = "xtraTabPackageExtension";
     this.xtraTabPackageExtension.Size = new System.Drawing.Size(831, 411);
     this.xtraTabPackageExtension.Text = "Package Extension Approval";
     //
     // btnRotate
     //
     this.btnRotate.Location = new System.Drawing.Point(597, 134);
     this.btnRotate.Name = "btnRotate";
     this.btnRotate.Size = new System.Drawing.Size(75, 23);
     this.btnRotate.TabIndex = 87;
     this.btnRotate.Text = "Rotate";
     this.btnRotate.UseVisualStyleBackColor = true;
     this.btnRotate.Click += new System.EventHandler(this.btnRotate_Click);
     //
     // pictureEdit2
     //
     this.pictureEdit2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureEdit2.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureEdit2.Location = new System.Drawing.Point(690, 14);
     this.pictureEdit2.Name = "pictureEdit2";
     this.pictureEdit2.Size = new System.Drawing.Size(123, 143);
     this.pictureEdit2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureEdit2.TabIndex = 86;
     this.pictureEdit2.TabStop = false;
     this.pictureEdit2.Click += new System.EventHandler(this.pictureEdit2_Click);
     //
     // btnPackageExtensionReject
     //
     this.btnPackageExtensionReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPackageExtensionReject.Appearance.Options.UseFont = true;
     this.btnPackageExtensionReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageExtensionReject.Location = new System.Drawing.Point(88, 361);
     this.btnPackageExtensionReject.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageExtensionReject.Name = "btnPackageExtensionReject";
     this.btnPackageExtensionReject.Size = new System.Drawing.Size(75, 23);
     this.btnPackageExtensionReject.TabIndex = 85;
     this.btnPackageExtensionReject.Text = "Reject";
     this.btnPackageExtensionReject.Click += new System.EventHandler(this.btnPackageExtensionReject_Click);
     //
     // btnPackageExtensionApprove
     //
     this.btnPackageExtensionApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPackageExtensionApprove.Appearance.Options.UseFont = true;
     this.btnPackageExtensionApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageExtensionApprove.Location = new System.Drawing.Point(7, 361);
     this.btnPackageExtensionApprove.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageExtensionApprove.Name = "btnPackageExtensionApprove";
     this.btnPackageExtensionApprove.Size = new System.Drawing.Size(75, 23);
     this.btnPackageExtensionApprove.TabIndex = 84;
     this.btnPackageExtensionApprove.Text = "Approve";
     this.btnPackageExtensionApprove.Click += new System.EventHandler(this.btnPackageExtensionApprove_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(4, 14);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(107, 13);
     this.label2.TabIndex = 11;
     this.label2.Text = "Pending Approval";
     //
     // GridPackageExtension
     //
     this.GridPackageExtension.Location = new System.Drawing.Point(7, 167);
     this.GridPackageExtension.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridPackageExtension.MainView = this.gridViewPackageExtension;
     this.GridPackageExtension.Name = "GridPackageExtension";
     this.GridPackageExtension.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemImageComboBox3,
     this.repositoryItemImageComboBox4,
     this.repositoryItemImageEdit2,
     this.repositoryItemPictureEdit2});
     this.GridPackageExtension.Size = new System.Drawing.Size(806, 188);
     this.GridPackageExtension.TabIndex = 10;
     this.GridPackageExtension.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPackageExtension});
     //
     // gridViewPackageExtension
     //
     this.gridViewPackageExtension.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCheckExtension,
     this.gcExtensionID,
     this.gcCreateDate,
     this.gcMemberID,
     this.gcPackageCode,
     this.gReason,
     this.gcDayExtend,
     this.gcStartDate,
     this.gcEndDate,
     this.gcNewExpiryDate});
     this.gridViewPackageExtension.GridControl = this.GridPackageExtension;
     this.gridViewPackageExtension.Name = "gridViewPackageExtension";
     this.gridViewPackageExtension.OptionsView.ShowGroupPanel = false;
     this.gridViewPackageExtension.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewPackageExtension_FocusedRowChanged);
     this.gridViewPackageExtension.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewPackageExtension_CellValueChanged);
     //
     // gcCheckExtension
     //
     this.gcCheckExtension.Caption = "Utl";
     this.gcCheckExtension.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gcCheckExtension.FieldName = "UtlCheck";
     this.gcCheckExtension.Name = "gcCheckExtension";
     this.gcCheckExtension.OptionsColumn.ShowCaption = false;
     this.gcCheckExtension.Visible = true;
     this.gcCheckExtension.VisibleIndex = 0;
     this.gcCheckExtension.Width = 22;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gcExtensionID
     //
     this.gcExtensionID.Caption = "extensionID";
     this.gcExtensionID.FieldName = "nExtensionID";
     this.gcExtensionID.Name = "gcExtensionID";
     this.gcExtensionID.OptionsColumn.AllowEdit = false;
     //
     // gcCreateDate
     //
     this.gcCreateDate.Caption = "Request Date";
     this.gcCreateDate.FieldName = "dtCreateDate";
     this.gcCreateDate.Name = "gcCreateDate";
     this.gcCreateDate.OptionsColumn.AllowEdit = false;
     this.gcCreateDate.Visible = true;
     this.gcCreateDate.VisibleIndex = 1;
     this.gcCreateDate.Width = 76;
     //
     // gcMemberID
     //
     this.gcMemberID.Caption = "Membership ID";
     this.gcMemberID.FieldName = "strMembershipID";
     this.gcMemberID.Name = "gcMemberID";
     this.gcMemberID.OptionsColumn.AllowEdit = false;
     this.gcMemberID.Visible = true;
     this.gcMemberID.VisibleIndex = 2;
     //
     // gcPackageCode
     //
     this.gcPackageCode.Caption = "Package Code";
     this.gcPackageCode.FieldName = "strPackageCode";
     this.gcPackageCode.Name = "gcPackageCode";
     this.gcPackageCode.OptionsColumn.AllowEdit = false;
     this.gcPackageCode.Visible = true;
     this.gcPackageCode.VisibleIndex = 3;
     this.gcPackageCode.Width = 148;
     //
     // gReason
     //
     this.gReason.Caption = "Reason";
     this.gReason.FieldName = "strDescription";
     this.gReason.Name = "gReason";
     this.gReason.OptionsColumn.AllowEdit = false;
     this.gReason.Visible = true;
     this.gReason.VisibleIndex = 4;
     this.gReason.Width = 140;
     //
     // gcDayExtend
     //
     this.gcDayExtend.Caption = "Days Extend";
     this.gcDayExtend.FieldName = "nDaysExtended";
     this.gcDayExtend.Name = "gcDayExtend";
     this.gcDayExtend.OptionsColumn.AllowEdit = false;
     this.gcDayExtend.Visible = true;
     this.gcDayExtend.VisibleIndex = 7;
     //
     // gcStartDate
     //
     this.gcStartDate.Caption = "Start Date";
     this.gcStartDate.FieldName = "dtStartDate";
     this.gcStartDate.Name = "gcStartDate";
     this.gcStartDate.Visible = true;
     this.gcStartDate.VisibleIndex = 5;
     //
     // gcEndDate
     //
     this.gcEndDate.Caption = "End Date";
     this.gcEndDate.FieldName = "dtEndDate";
     this.gcEndDate.Name = "gcEndDate";
     this.gcEndDate.Visible = true;
     this.gcEndDate.VisibleIndex = 6;
     //
     // gcNewExpiryDate
     //
     this.gcNewExpiryDate.Caption = "New Expiry Date";
     this.gcNewExpiryDate.Name = "gcNewExpiryDate";
     this.gcNewExpiryDate.OptionsColumn.AllowEdit = false;
     this.gcNewExpiryDate.Visible = true;
     this.gcNewExpiryDate.VisibleIndex = 8;
     //
     // repositoryItemImageComboBox3
     //
     this.repositoryItemImageComboBox3.AutoHeight = false;
     this.repositoryItemImageComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox3.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox3.Name = "repositoryItemImageComboBox3";
     //
     // repositoryItemImageComboBox4
     //
     this.repositoryItemImageComboBox4.AutoHeight = false;
     this.repositoryItemImageComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox4.Name = "repositoryItemImageComboBox4";
     //
     // repositoryItemImageEdit2
     //
     this.repositoryItemImageEdit2.AutoHeight = false;
     this.repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit2.Name = "repositoryItemImageEdit2";
     this.repositoryItemImageEdit2.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // frmMemberCardPhoto
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(912, 525);
     this.ControlBox = false;
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmMemberCardPhoto";
     this.Text = "frmMemberCardPhoto";
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTab)).EndInit();
     this.xtraTab.ResumeLayout(false);
     this.xtraTabMemberCardPhoto.ResumeLayout(false);
     this.xtraTabMemberCardPhoto.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckSelection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     this.xtraTabPackageExtension.ResumeLayout(false);
     this.xtraTabPackageExtension.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPackageExtension)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackageExtension)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl1               = new DevExpress.XtraGrid.GridControl();
     this.gridView1                  = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.columnID                   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.columnName                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.columnColor                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1    = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.columnImage                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location             = new System.Drawing.Point(0, 23);
     this.gridControl1.LookAndFeel.SkinName = "The Asphalt World";
     this.gridControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemPictureEdit1,
         this.repositoryItemComboBox1
     });
     this.gridControl1.Size     = new System.Drawing.Size(527, 286);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.columnID,
         this.columnName,
         this.columnColor,
         this.columnImage
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.RowHeight = 33;
     this.gridView1.CustomUnboundColumnData += new DevExpress.XtraGrid.Views.Base.CustomColumnDataEventHandler(this.gridView1_CustomUnboundColumnData);
     //
     // columnID
     //
     this.columnID.Caption   = "ID";
     this.columnID.FieldName = "ID";
     this.columnID.Name      = "columnID";
     this.columnID.OptionsColumn.ReadOnly = true;
     this.columnID.Visible      = true;
     this.columnID.VisibleIndex = 0;
     this.columnID.Width        = 81;
     //
     // columnName
     //
     this.columnName.Caption      = "Name";
     this.columnName.FieldName    = "Name";
     this.columnName.Name         = "columnName";
     this.columnName.Visible      = true;
     this.columnName.VisibleIndex = 1;
     this.columnName.Width        = 132;
     //
     // columnColor
     //
     this.columnColor.Caption      = "Color";
     this.columnColor.ColumnEdit   = this.repositoryItemComboBox1;
     this.columnColor.FieldName    = "Color";
     this.columnColor.Name         = "columnColor";
     this.columnColor.Visible      = true;
     this.columnColor.VisibleIndex = 2;
     this.columnColor.Width        = 152;
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
         "Black",
         "Blue",
         "Green",
         "Magenta",
         "Orange",
         "Pink",
         "Red",
         "White",
         "Yellow"
     });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // columnImage
     //
     this.columnImage.Caption    = "Image (unbound)";
     this.columnImage.ColumnEdit = this.repositoryItemPictureEdit1;
     this.columnImage.FieldName  = "Image";
     this.columnImage.Name       = "columnImage";
     this.columnImage.OptionsColumn.AllowEdit = false;
     this.columnImage.UnboundType             = DevExpress.Data.UnboundColumnType.Object;
     this.columnImage.Visible      = true;
     this.columnImage.VisibleIndex = 3;
     this.columnImage.Width        = 118;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // label1
     //
     this.label1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(527, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "What\'s your favorite color?";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(527, 309);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.label1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MachineManagement));
     this.tabMachineList = new System.Windows.Forms.TabControl();
     this.LiveAttendance = new System.Windows.Forms.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dtpToDate = new DevExpress.XtraEditors.DateEdit();
     this.lblTodate = new System.Windows.Forms.Label();
     this.dtpFromDate = new DevExpress.XtraEditors.DateEdit();
     this.lblFromDate = new System.Windows.Forms.Label();
     this.ckbLoadAll = new System.Windows.Forms.CheckBox();
     this.ckbClearAllLogAfterLoadSuccessfully = new System.Windows.Forms.CheckBox();
     this.btnDownloadAttLog = new System.Windows.Forms.Button();
     this.txtLogTime = new DevExpress.XtraEditors.TextEdit();
     this.txtFullName = new DevExpress.XtraEditors.TextEdit();
     this.lblLogTime = new System.Windows.Forms.Label();
     this.txtNameOnMachine = new DevExpress.XtraEditors.TextEdit();
     this.lblFullName = new System.Windows.Forms.Label();
     this.txtAcNo = new DevExpress.XtraEditors.TextEdit();
     this.lblNameOnMachine = new System.Windows.Forms.Label();
     this.lblACNo = new System.Windows.Forms.Label();
     this.txtEmployeeID = new DevExpress.XtraEditors.TextEdit();
     this.lblEmployeeID = new System.Windows.Forms.Label();
     this.imgEmployeeImage = new DevExpress.XtraEditors.PictureEdit();
     this.grdLogRecord = new DevExpress.XtraGrid.GridControl();
     this.grvLogRecord = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMachineName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNameOnMachine = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLogTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rpeDateTimeFormat = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colVerifyMode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rpeVerifyMode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colFullName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.UserManagement = new System.Windows.Forms.TabPage();
     this.ckbCheckAll = new System.Windows.Forms.CheckBox();
     this.grbUploadUserInfo = new System.Windows.Forms.GroupBox();
     this.ckbUploadFingerPrint = new System.Windows.Forms.CheckBox();
     this.ckbUpdateCardNo = new System.Windows.Forms.CheckBox();
     this.btnUploadUserInfo = new System.Windows.Forms.Button();
     this.grbSetDeviceTime = new System.Windows.Forms.GroupBox();
     this.btnPowerOffDevice = new System.Windows.Forms.Button();
     this.btnDeleteAllData = new System.Windows.Forms.Button();
     this.btnRestartDevice = new System.Windows.Forms.Button();
     this.cbSecond = new System.Windows.Forms.ComboBox();
     this.cbMonth = new System.Windows.Forms.ComboBox();
     this.cbMinute = new System.Windows.Forms.ComboBox();
     this.btnSetDeviceTime2 = new System.Windows.Forms.Button();
     this.cbDay = new System.Windows.Forms.ComboBox();
     this.cbHour = new System.Windows.Forms.ComboBox();
     this.cbYear = new System.Windows.Forms.ComboBox();
     this.btnGetDeviceTime = new System.Windows.Forms.Button();
     this.txtGetDeviceTime = new System.Windows.Forms.TextBox();
     this.btnSynDeviceTime = new System.Windows.Forms.Button();
     this.grbDownloadUserInfo = new System.Windows.Forms.GroupBox();
     this.btnDownloadUserInfo = new System.Windows.Forms.Button();
     this.ckbOnlyDownNewEmp = new System.Windows.Forms.CheckBox();
     this.grbEditUser = new System.Windows.Forms.GroupBox();
     this.ckbDeleteOnSystem = new System.Windows.Forms.CheckBox();
     this.btnClearAdministrators = new System.Windows.Forms.Button();
     this.btnClearDataTmps = new System.Windows.Forms.Button();
     this.btnDelAllUserOnDatabase = new System.Windows.Forms.Button();
     this.btnClearDataUserInfo = new System.Windows.Forms.Button();
     this.btnDeleteEnrollData = new System.Windows.Forms.Button();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.lblSearch = new System.Windows.Forms.Label();
     this.grdUserList = new DevExpress.XtraGrid.GridControl();
     this.grvUserList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEmployeeID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmpFullName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colACNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTemplateCount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCardNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.PASSWORD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ImportDataFromUSBFileData = new System.Windows.Forms.TabPage();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabUserUSB_BW = new System.Windows.Forms.TabPage();
     this.lblUserUSB_BW_Note = new System.Windows.Forms.Label();
     this.btnUserRead = new System.Windows.Forms.Button();
     this.lvUser = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
     this.tabAttLogsUSB_BW = new System.Windows.Forms.TabPage();
     this.lblAttLogsUSB_BW_note = new System.Windows.Forms.Label();
     this.btnAttLogExtRead = new System.Windows.Forms.Button();
     this.lvAttLog = new System.Windows.Forms.ListView();
     this.columnHeader25 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader26 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader27 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader28 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader29 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader30 = new System.Windows.Forms.ColumnHeader();
     this.tabTmp9USB_BW = new System.Windows.Forms.TabPage();
     this.lblTmp9USB_BW_Note = new System.Windows.Forms.Label();
     this.btnTmpRead = new System.Windows.Forms.Button();
     this.lvTmp = new System.Windows.Forms.ListView();
     this.columnHeader17 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader18 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader19 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader20 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader21 = new System.Windows.Forms.ColumnHeader();
     this.ImportDataFromUSBFileData_TFT = new System.Windows.Forms.TabPage();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabUser_TFT = new System.Windows.Forms.TabPage();
     this.label2 = new System.Windows.Forms.Label();
     this.btnSSR_UserRead = new System.Windows.Forms.Button();
     this.lvSSRUser = new System.Windows.Forms.ListView();
     this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader15 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader16 = new System.Windows.Forms.ColumnHeader();
     this.tabAttLogs_TFT = new System.Windows.Forms.TabPage();
     this.label4 = new System.Windows.Forms.Label();
     this.lvSSRAttLog = new System.Windows.Forms.ListView();
     this.columnHeader22 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader23 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader24 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader31 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader32 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader33 = new System.Windows.Forms.ColumnHeader();
     this.btnSSRAttLogRead = new System.Windows.Forms.Button();
     this.tabtmp9_TFT = new System.Windows.Forms.TabPage();
     this.label5 = new System.Windows.Forms.Label();
     this.btnTemp9_TFT = new System.Windows.Forms.Button();
     this.lvTmp9 = new System.Windows.Forms.ListView();
     this.columnHeader34 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader35 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader36 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader37 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader38 = new System.Windows.Forms.ColumnHeader();
     this.tabTmp10_TFT = new System.Windows.Forms.TabPage();
     this.label6 = new System.Windows.Forms.Label();
     this.lvTmp10 = new System.Windows.Forms.ListView();
     this.columnHeader42 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader43 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader44 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader45 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader46 = new System.Windows.Forms.ColumnHeader();
     this.btnTmp10Read = new System.Windows.Forms.Button();
     this.grdMachineList = new DevExpress.XtraGrid.GridControl();
     this.grvMachineList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colImageIcon = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.colMachineAlias = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMachineNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMachineKind = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIP = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPort = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLogCount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmanagercount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colusercount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfingercount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSecretCount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCDKey = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnConnect = new DevExpress.XtraEditors.SimpleButton();
     this.btnDisconnect = new DevExpress.XtraEditors.SimpleButton();
     this.lableInfor = new System.Windows.Forms.Label();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.pnlFWCommand.SuspendLayout();
     this.pnlFWClose.SuspendLayout();
     this.tabMachineList.SuspendLayout();
     this.LiveAttendance.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtpToDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpToDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFromDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFromDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFullName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNameOnMachine.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAcNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgEmployeeImage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdLogRecord)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvLogRecord)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpeDateTimeFormat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpeVerifyMode)).BeginInit();
     this.UserManagement.SuspendLayout();
     this.grbUploadUserInfo.SuspendLayout();
     this.grbSetDeviceTime.SuspendLayout();
     this.grbDownloadUserInfo.SuspendLayout();
     this.grbEditUser.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdUserList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvUserList)).BeginInit();
     this.ImportDataFromUSBFileData.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabUserUSB_BW.SuspendLayout();
     this.tabAttLogsUSB_BW.SuspendLayout();
     this.tabTmp9USB_BW.SuspendLayout();
     this.ImportDataFromUSBFileData_TFT.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabUser_TFT.SuspendLayout();
     this.tabAttLogs_TFT.SuspendLayout();
     this.tabtmp9_TFT.SuspendLayout();
     this.tabTmp10_TFT.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdMachineList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvMachineList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // pnlFWCommand
     //
     this.pnlFWCommand.Controls.Add(this.btnConnect);
     this.pnlFWCommand.Controls.Add(this.btnDisconnect);
     this.pnlFWCommand.Location = new System.Drawing.Point(0, 684);
     this.pnlFWCommand.Size = new System.Drawing.Size(1018, 38);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnFWSave, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnFWDelete, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnFWReset, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnDisconnect, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnFWAdd, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnConnect, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.pnlFWClose, 0);
     this.pnlFWCommand.Controls.SetChildIndex(this.btnExport, 0);
     //
     // btnFWDelete
     //
     this.btnFWDelete.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWDelete.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWDelete.Appearance.Options.UseFont = true;
     this.btnFWDelete.Appearance.Options.UseForeColor = true;
     this.btnFWDelete.Location = new System.Drawing.Point(357, 1);
     this.btnFWDelete.LookAndFeel.SkinName = "Blue";
     this.btnFWDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnFWDelete.Visible = false;
     //
     // btnFWSave
     //
     this.btnFWSave.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWSave.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWSave.Appearance.Options.UseFont = true;
     this.btnFWSave.Appearance.Options.UseForeColor = true;
     this.btnFWSave.Location = new System.Drawing.Point(221, 4);
     this.btnFWSave.LookAndFeel.SkinName = "Blue";
     this.btnFWSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnFWSave.Visible = false;
     //
     // btnFWAdd
     //
     this.btnFWAdd.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWAdd.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWAdd.Appearance.Options.UseFont = true;
     this.btnFWAdd.Appearance.Options.UseForeColor = true;
     this.btnFWAdd.Location = new System.Drawing.Point(357, 8);
     this.btnFWAdd.LookAndFeel.SkinName = "Blue";
     this.btnFWAdd.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnFWAdd.Visible = false;
     //
     // pnlFWClose
     //
     this.pnlFWClose.Location = new System.Drawing.Point(867, 0);
     //
     // btnFWClose
     //
     this.btnFWClose.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWClose.Appearance.ForeColor = System.Drawing.SystemColors.MenuText;
     this.btnFWClose.Appearance.Options.UseFont = true;
     this.btnFWClose.Appearance.Options.UseForeColor = true;
     this.btnFWClose.LookAndFeel.SkinName = "Blue";
     this.btnFWClose.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // lblFWDecorateingLine
     //
     this.lblFWDecorateingLine.Location = new System.Drawing.Point(0, 682);
     this.lblFWDecorateingLine.Size = new System.Drawing.Size(1018, 2);
     //
     // btnFWReset
     //
     this.btnFWReset.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWReset.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWReset.Appearance.Options.UseFont = true;
     this.btnFWReset.Appearance.Options.UseForeColor = true;
     this.btnFWReset.Location = new System.Drawing.Point(357, 11);
     this.btnFWReset.LookAndFeel.SkinName = "Blue";
     this.btnFWReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnFWReset.Visible = false;
     //
     // btnExport
     //
     this.btnExport.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnExport.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnExport.Appearance.Options.UseFont = true;
     this.btnExport.Appearance.Options.UseForeColor = true;
     this.btnExport.Image = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
     this.btnExport.LookAndFeel.SkinName = "Blue";
     this.btnExport.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnExport.Visible = false;
     //
     // tabMachineList
     //
     this.tabMachineList.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.tabMachineList.Controls.Add(this.LiveAttendance);
     this.tabMachineList.Controls.Add(this.UserManagement);
     this.tabMachineList.Controls.Add(this.ImportDataFromUSBFileData);
     this.tabMachineList.Controls.Add(this.ImportDataFromUSBFileData_TFT);
     this.tabMachineList.Location = new System.Drawing.Point(0, 181);
     this.tabMachineList.Name = "tabMachineList";
     this.tabMachineList.SelectedIndex = 0;
     this.tabMachineList.Size = new System.Drawing.Size(1018, 541);
     this.tabMachineList.TabIndex = 54;
     this.tabMachineList.SelectedIndexChanged += new System.EventHandler(this.tabMachineList_SelectedIndexChanged);
     //
     // LiveAttendance
     //
     this.LiveAttendance.Controls.Add(this.groupBox1);
     this.LiveAttendance.Controls.Add(this.txtLogTime);
     this.LiveAttendance.Controls.Add(this.txtFullName);
     this.LiveAttendance.Controls.Add(this.lblLogTime);
     this.LiveAttendance.Controls.Add(this.txtNameOnMachine);
     this.LiveAttendance.Controls.Add(this.lblFullName);
     this.LiveAttendance.Controls.Add(this.txtAcNo);
     this.LiveAttendance.Controls.Add(this.lblNameOnMachine);
     this.LiveAttendance.Controls.Add(this.lblACNo);
     this.LiveAttendance.Controls.Add(this.txtEmployeeID);
     this.LiveAttendance.Controls.Add(this.lblEmployeeID);
     this.LiveAttendance.Controls.Add(this.imgEmployeeImage);
     this.LiveAttendance.Controls.Add(this.grdLogRecord);
     this.LiveAttendance.Location = new System.Drawing.Point(4, 22);
     this.LiveAttendance.Name = "LiveAttendance";
     this.LiveAttendance.Padding = new System.Windows.Forms.Padding(3);
     this.LiveAttendance.Size = new System.Drawing.Size(1010, 515);
     this.LiveAttendance.TabIndex = 0;
     this.LiveAttendance.Text = "Live Attendance";
     this.LiveAttendance.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.dtpToDate);
     this.groupBox1.Controls.Add(this.lblTodate);
     this.groupBox1.Controls.Add(this.dtpFromDate);
     this.groupBox1.Controls.Add(this.lblFromDate);
     this.groupBox1.Controls.Add(this.ckbLoadAll);
     this.groupBox1.Controls.Add(this.ckbClearAllLogAfterLoadSuccessfully);
     this.groupBox1.Controls.Add(this.btnDownloadAttLog);
     this.groupBox1.Location = new System.Drawing.Point(557, 315);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(450, 160);
     this.groupBox1.TabIndex = 65;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "groupBox1";
     //
     // dtpToDate
     //
     this.dtpToDate.EditValue = null;
     this.dtpToDate.Location = new System.Drawing.Point(254, 42);
     this.dtpToDate.Name = "dtpToDate";
     this.dtpToDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtpToDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtpToDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dtpToDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtpToDate.Size = new System.Drawing.Size(104, 20);
     this.dtpToDate.TabIndex = 79;
     //
     // lblTodate
     //
     this.lblTodate.AutoSize = true;
     this.lblTodate.Location = new System.Drawing.Point(192, 45);
     this.lblTodate.Name = "lblTodate";
     this.lblTodate.Size = new System.Drawing.Size(57, 13);
     this.lblTodate.TabIndex = 81;
     this.lblTodate.Text = "From date:";
     //
     // dtpFromDate
     //
     this.dtpFromDate.EditValue = null;
     this.dtpFromDate.Location = new System.Drawing.Point(80, 42);
     this.dtpFromDate.Name = "dtpFromDate";
     this.dtpFromDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtpFromDate.Properties.LookAndFeel.SkinName = "Blue";
     this.dtpFromDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.dtpFromDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtpFromDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dtpFromDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtpFromDate.Size = new System.Drawing.Size(104, 20);
     this.dtpFromDate.TabIndex = 78;
     //
     // lblFromDate
     //
     this.lblFromDate.AutoSize = true;
     this.lblFromDate.Location = new System.Drawing.Point(6, 45);
     this.lblFromDate.Name = "lblFromDate";
     this.lblFromDate.Size = new System.Drawing.Size(57, 13);
     this.lblFromDate.TabIndex = 80;
     this.lblFromDate.Text = "From date:";
     //
     // ckbLoadAll
     //
     this.ckbLoadAll.AutoSize = true;
     this.ckbLoadAll.Location = new System.Drawing.Point(7, 19);
     this.ckbLoadAll.Name = "ckbLoadAll";
     this.ckbLoadAll.Size = new System.Drawing.Size(126, 17);
     this.ckbLoadAll.TabIndex = 77;
     this.ckbLoadAll.Text = "Xóa cả trên hệ thống";
     this.ckbLoadAll.UseVisualStyleBackColor = true;
     this.ckbLoadAll.CheckedChanged += new System.EventHandler(this.ckbLoadAll_CheckedChanged);
     //
     // ckbClearAllLogAfterLoadSuccessfully
     //
     this.ckbClearAllLogAfterLoadSuccessfully.AutoSize = true;
     this.ckbClearAllLogAfterLoadSuccessfully.Location = new System.Drawing.Point(130, 135);
     this.ckbClearAllLogAfterLoadSuccessfully.Name = "ckbClearAllLogAfterLoadSuccessfully";
     this.ckbClearAllLogAfterLoadSuccessfully.Size = new System.Drawing.Size(126, 17);
     this.ckbClearAllLogAfterLoadSuccessfully.TabIndex = 77;
     this.ckbClearAllLogAfterLoadSuccessfully.Text = "Xóa cả trên hệ thống";
     this.ckbClearAllLogAfterLoadSuccessfully.UseVisualStyleBackColor = true;
     //
     // btnDownloadAttLog
     //
     this.btnDownloadAttLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDownloadAttLog.Location = new System.Drawing.Point(6, 131);
     this.btnDownloadAttLog.Name = "btnDownloadAttLog";
     this.btnDownloadAttLog.Size = new System.Drawing.Size(118, 23);
     this.btnDownloadAttLog.TabIndex = 74;
     this.btnDownloadAttLog.Text = "UplodaUserInfo";
     this.btnDownloadAttLog.UseVisualStyleBackColor = true;
     this.btnDownloadAttLog.Click += new System.EventHandler(this.btnDownloadAttLog_Click);
     //
     // txtLogTime
     //
     this.txtLogTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.txtLogTime.Location = new System.Drawing.Point(730, 289);
     this.txtLogTime.Name = "txtLogTime";
     this.txtLogTime.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.txtLogTime.Properties.Appearance.Options.UseBackColor = true;
     this.txtLogTime.Properties.MaxLength = 20;
     this.txtLogTime.Size = new System.Drawing.Size(153, 20);
     this.txtLogTime.TabIndex = 59;
     //
     // txtFullName
     //
     this.txtFullName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.txtFullName.Location = new System.Drawing.Point(730, 263);
     this.txtFullName.Name = "txtFullName";
     this.txtFullName.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.txtFullName.Properties.Appearance.Options.UseBackColor = true;
     this.txtFullName.Properties.MaxLength = 20;
     this.txtFullName.Size = new System.Drawing.Size(153, 20);
     this.txtFullName.TabIndex = 59;
     //
     // lblLogTime
     //
     this.lblLogTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblLogTime.AutoSize = true;
     this.lblLogTime.Location = new System.Drawing.Point(620, 292);
     this.lblLogTime.Name = "lblLogTime";
     this.lblLogTime.Size = new System.Drawing.Size(70, 13);
     this.lblLogTime.TabIndex = 58;
     this.lblLogTime.Text = "Employee ID:";
     //
     // txtNameOnMachine
     //
     this.txtNameOnMachine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNameOnMachine.Location = new System.Drawing.Point(730, 237);
     this.txtNameOnMachine.Name = "txtNameOnMachine";
     this.txtNameOnMachine.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.txtNameOnMachine.Properties.Appearance.Options.UseBackColor = true;
     this.txtNameOnMachine.Properties.MaxLength = 20;
     this.txtNameOnMachine.Size = new System.Drawing.Size(153, 20);
     this.txtNameOnMachine.TabIndex = 59;
     //
     // lblFullName
     //
     this.lblFullName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblFullName.AutoSize = true;
     this.lblFullName.Location = new System.Drawing.Point(620, 266);
     this.lblFullName.Name = "lblFullName";
     this.lblFullName.Size = new System.Drawing.Size(70, 13);
     this.lblFullName.TabIndex = 58;
     this.lblFullName.Text = "Employee ID:";
     //
     // txtAcNo
     //
     this.txtAcNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.txtAcNo.Location = new System.Drawing.Point(730, 214);
     this.txtAcNo.Name = "txtAcNo";
     this.txtAcNo.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.txtAcNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtAcNo.Properties.MaxLength = 20;
     this.txtAcNo.Size = new System.Drawing.Size(153, 20);
     this.txtAcNo.TabIndex = 59;
     //
     // lblNameOnMachine
     //
     this.lblNameOnMachine.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblNameOnMachine.AutoSize = true;
     this.lblNameOnMachine.Location = new System.Drawing.Point(620, 240);
     this.lblNameOnMachine.Name = "lblNameOnMachine";
     this.lblNameOnMachine.Size = new System.Drawing.Size(70, 13);
     this.lblNameOnMachine.TabIndex = 58;
     this.lblNameOnMachine.Text = "Employee ID:";
     //
     // lblACNo
     //
     this.lblACNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblACNo.AutoSize = true;
     this.lblACNo.Location = new System.Drawing.Point(620, 217);
     this.lblACNo.Name = "lblACNo";
     this.lblACNo.Size = new System.Drawing.Size(70, 13);
     this.lblACNo.TabIndex = 58;
     this.lblACNo.Text = "Employee ID:";
     //
     // txtEmployeeID
     //
     this.txtEmployeeID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.txtEmployeeID.Location = new System.Drawing.Point(730, 188);
     this.txtEmployeeID.Name = "txtEmployeeID";
     this.txtEmployeeID.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.txtEmployeeID.Properties.Appearance.Options.UseBackColor = true;
     this.txtEmployeeID.Properties.MaxLength = 20;
     this.txtEmployeeID.Size = new System.Drawing.Size(153, 20);
     this.txtEmployeeID.TabIndex = 59;
     //
     // lblEmployeeID
     //
     this.lblEmployeeID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblEmployeeID.AutoSize = true;
     this.lblEmployeeID.Location = new System.Drawing.Point(620, 191);
     this.lblEmployeeID.Name = "lblEmployeeID";
     this.lblEmployeeID.Size = new System.Drawing.Size(70, 13);
     this.lblEmployeeID.TabIndex = 58;
     this.lblEmployeeID.Text = "Employee ID:";
     //
     // imgEmployeeImage
     //
     this.imgEmployeeImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.imgEmployeeImage.Location = new System.Drawing.Point(889, 152);
     this.imgEmployeeImage.Name = "imgEmployeeImage";
     this.imgEmployeeImage.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     this.imgEmployeeImage.Size = new System.Drawing.Size(118, 157);
     this.imgEmployeeImage.TabIndex = 57;
     //
     // grdLogRecord
     //
     this.grdLogRecord.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.grdLogRecord.EmbeddedNavigator.Name = "";
     this.grdLogRecord.FormsUseDefaultLookAndFeel = false;
     this.grdLogRecord.Location = new System.Drawing.Point(-4, 3);
     this.grdLogRecord.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grdLogRecord.MainView = this.grvLogRecord;
     this.grdLogRecord.Name = "grdLogRecord";
     this.grdLogRecord.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rpeVerifyMode,
     this.rpeDateTimeFormat});
     this.grdLogRecord.Size = new System.Drawing.Size(555, 476);
     this.grdLogRecord.TabIndex = 56;
     this.grdLogRecord.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grvLogRecord});
     //
     // grvLogRecord
     //
     this.grvLogRecord.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMachineName,
     this.colNameOnMachine,
     this.colLogTime,
     this.colVerifyMode,
     this.colFullName});
     this.grvLogRecord.GridControl = this.grdLogRecord;
     this.grvLogRecord.Name = "grvLogRecord";
     this.grvLogRecord.OptionsSelection.MultiSelect = true;
     this.grvLogRecord.OptionsView.ShowGroupPanel = false;
     //
     // colMachineName
     //
     this.colMachineName.Caption = "MachineAlias";
     this.colMachineName.FieldName = "MachineAlias";
     this.colMachineName.Name = "colMachineName";
     this.colMachineName.OptionsColumn.AllowEdit = false;
     this.colMachineName.Visible = true;
     this.colMachineName.VisibleIndex = 0;
     this.colMachineName.Width = 97;
     //
     // colNameOnMachine
     //
     this.colNameOnMachine.Caption = "NameOnMachine";
     this.colNameOnMachine.FieldName = "NameOnMachine";
     this.colNameOnMachine.Name = "colNameOnMachine";
     this.colNameOnMachine.OptionsColumn.AllowEdit = false;
     this.colNameOnMachine.Visible = true;
     this.colNameOnMachine.VisibleIndex = 1;
     this.colNameOnMachine.Width = 77;
     //
     // colLogTime
     //
     this.colLogTime.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colLogTime.AppearanceCell.Options.UseFont = true;
     this.colLogTime.Caption = "LogTime";
     this.colLogTime.ColumnEdit = this.rpeDateTimeFormat;
     this.colLogTime.FieldName = "LogTime";
     this.colLogTime.Name = "colLogTime";
     this.colLogTime.OptionsColumn.AllowEdit = false;
     this.colLogTime.Visible = true;
     this.colLogTime.VisibleIndex = 3;
     this.colLogTime.Width = 141;
     //
     // rpeDateTimeFormat
     //
     this.rpeDateTimeFormat.AutoHeight = false;
     this.rpeDateTimeFormat.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.rpeDateTimeFormat.Mask.EditMask = "dd/MM/yyyy HH:mm:ss";
     this.rpeDateTimeFormat.Mask.UseMaskAsDisplayFormat = true;
     this.rpeDateTimeFormat.Name = "rpeDateTimeFormat";
     //
     // colVerifyMode
     //
     this.colVerifyMode.Caption = "VerifyMode";
     this.colVerifyMode.ColumnEdit = this.rpeVerifyMode;
     this.colVerifyMode.FieldName = "VerifyMode";
     this.colVerifyMode.Name = "colVerifyMode";
     this.colVerifyMode.OptionsColumn.AllowEdit = false;
     this.colVerifyMode.Visible = true;
     this.colVerifyMode.VisibleIndex = 4;
     this.colVerifyMode.Width = 109;
     //
     // rpeVerifyMode
     //
     this.rpeVerifyMode.AutoHeight = false;
     this.rpeVerifyMode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rpeVerifyMode.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("VerifyMode", "VerifyMode", 20, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.rpeVerifyMode.DisplayMember = "VerifyMode";
     this.rpeVerifyMode.Name = "rpeVerifyMode";
     this.rpeVerifyMode.ValueMember = "VerifyModeID";
     //
     // colFullName
     //
     this.colFullName.Caption = "FullName";
     this.colFullName.FieldName = "FullName";
     this.colFullName.Name = "colFullName";
     this.colFullName.OptionsColumn.AllowEdit = false;
     this.colFullName.Visible = true;
     this.colFullName.VisibleIndex = 2;
     this.colFullName.Width = 132;
     //
     // UserManagement
     //
     this.UserManagement.Controls.Add(this.ckbCheckAll);
     this.UserManagement.Controls.Add(this.grbUploadUserInfo);
     this.UserManagement.Controls.Add(this.grbSetDeviceTime);
     this.UserManagement.Controls.Add(this.grbDownloadUserInfo);
     this.UserManagement.Controls.Add(this.grbEditUser);
     this.UserManagement.Controls.Add(this.txtSearch);
     this.UserManagement.Controls.Add(this.lblSearch);
     this.UserManagement.Controls.Add(this.grdUserList);
     this.UserManagement.Location = new System.Drawing.Point(4, 22);
     this.UserManagement.Name = "UserManagement";
     this.UserManagement.Padding = new System.Windows.Forms.Padding(3);
     this.UserManagement.Size = new System.Drawing.Size(1010, 515);
     this.UserManagement.TabIndex = 1;
     this.UserManagement.Text = "User management";
     this.UserManagement.UseVisualStyleBackColor = true;
     //
     // ckbCheckAll
     //
     this.ckbCheckAll.AutoSize = true;
     this.ckbCheckAll.Location = new System.Drawing.Point(469, 9);
     this.ckbCheckAll.Name = "ckbCheckAll";
     this.ckbCheckAll.Size = new System.Drawing.Size(70, 17);
     this.ckbCheckAll.TabIndex = 77;
     this.ckbCheckAll.Text = "Check all";
     this.ckbCheckAll.UseVisualStyleBackColor = true;
     this.ckbCheckAll.CheckedChanged += new System.EventHandler(this.ckbCheckAll_CheckedChanged);
     //
     // grbUploadUserInfo
     //
     this.grbUploadUserInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.grbUploadUserInfo.Controls.Add(this.ckbUploadFingerPrint);
     this.grbUploadUserInfo.Controls.Add(this.ckbUpdateCardNo);
     this.grbUploadUserInfo.Controls.Add(this.btnUploadUserInfo);
     this.grbUploadUserInfo.Location = new System.Drawing.Point(532, 292);
     this.grbUploadUserInfo.Name = "grbUploadUserInfo";
     this.grbUploadUserInfo.Size = new System.Drawing.Size(470, 56);
     this.grbUploadUserInfo.TabIndex = 64;
     this.grbUploadUserInfo.TabStop = false;
     this.grbUploadUserInfo.Text = "groupBox1";
     //
     // ckbUploadFingerPrint
     //
     this.ckbUploadFingerPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ckbUploadFingerPrint.AutoSize = true;
     this.ckbUploadFingerPrint.Location = new System.Drawing.Point(273, 31);
     this.ckbUploadFingerPrint.Name = "ckbUploadFingerPrint";
     this.ckbUploadFingerPrint.Size = new System.Drawing.Size(174, 17);
     this.ckbUploadFingerPrint.TabIndex = 76;
     this.ckbUploadFingerPrint.Text = "Tải vân tay lên máy chấm công";
     this.ckbUploadFingerPrint.UseVisualStyleBackColor = true;
     //
     // ckbUpdateCardNo
     //
     this.ckbUpdateCardNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ckbUpdateCardNo.AutoSize = true;
     this.ckbUpdateCardNo.Checked = true;
     this.ckbUpdateCardNo.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ckbUpdateCardNo.Location = new System.Drawing.Point(105, 31);
     this.ckbUpdateCardNo.Name = "ckbUpdateCardNo";
     this.ckbUpdateCardNo.Size = new System.Drawing.Size(76, 17);
     this.ckbUpdateCardNo.TabIndex = 76;
     this.ckbUpdateCardNo.Text = "Tải thẻ lên";
     this.ckbUpdateCardNo.UseVisualStyleBackColor = true;
     //
     // btnUploadUserInfo
     //
     this.btnUploadUserInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnUploadUserInfo.Location = new System.Drawing.Point(6, 27);
     this.btnUploadUserInfo.Name = "btnUploadUserInfo";
     this.btnUploadUserInfo.Size = new System.Drawing.Size(93, 23);
     this.btnUploadUserInfo.TabIndex = 74;
     this.btnUploadUserInfo.Text = "UplodaUserInfo";
     this.btnUploadUserInfo.UseVisualStyleBackColor = true;
     this.btnUploadUserInfo.Click += new System.EventHandler(this.btnUploadUserInfo_Click);
     //
     // grbSetDeviceTime
     //
     this.grbSetDeviceTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.grbSetDeviceTime.Controls.Add(this.btnPowerOffDevice);
     this.grbSetDeviceTime.Controls.Add(this.btnDeleteAllData);
     this.grbSetDeviceTime.Controls.Add(this.btnRestartDevice);
     this.grbSetDeviceTime.Controls.Add(this.cbSecond);
     this.grbSetDeviceTime.Controls.Add(this.cbMonth);
     this.grbSetDeviceTime.Controls.Add(this.cbMinute);
     this.grbSetDeviceTime.Controls.Add(this.btnSetDeviceTime2);
     this.grbSetDeviceTime.Controls.Add(this.cbDay);
     this.grbSetDeviceTime.Controls.Add(this.cbHour);
     this.grbSetDeviceTime.Controls.Add(this.cbYear);
     this.grbSetDeviceTime.Controls.Add(this.btnGetDeviceTime);
     this.grbSetDeviceTime.Controls.Add(this.txtGetDeviceTime);
     this.grbSetDeviceTime.Controls.Add(this.btnSynDeviceTime);
     this.grbSetDeviceTime.Location = new System.Drawing.Point(532, 108);
     this.grbSetDeviceTime.Name = "grbSetDeviceTime";
     this.grbSetDeviceTime.Size = new System.Drawing.Size(470, 119);
     this.grbSetDeviceTime.TabIndex = 64;
     this.grbSetDeviceTime.TabStop = false;
     this.grbSetDeviceTime.Text = "SetDeviceTime";
     //
     // btnPowerOffDevice
     //
     this.btnPowerOffDevice.Location = new System.Drawing.Point(331, 83);
     this.btnPowerOffDevice.Name = "btnPowerOffDevice";
     this.btnPowerOffDevice.Size = new System.Drawing.Size(132, 23);
     this.btnPowerOffDevice.TabIndex = 18;
     this.btnPowerOffDevice.Text = "PowerOffDevice";
     this.btnPowerOffDevice.UseVisualStyleBackColor = true;
     this.btnPowerOffDevice.Click += new System.EventHandler(this.btnPowerOffDevice_Click);
     //
     // btnDeleteAllData
     //
     this.btnDeleteAllData.BackColor = System.Drawing.Color.LightCoral;
     this.btnDeleteAllData.Location = new System.Drawing.Point(6, 83);
     this.btnDeleteAllData.Name = "btnDeleteAllData";
     this.btnDeleteAllData.Size = new System.Drawing.Size(137, 23);
     this.btnDeleteAllData.TabIndex = 17;
     this.btnDeleteAllData.Text = "RestartDevice";
     this.btnDeleteAllData.UseVisualStyleBackColor = false;
     this.btnDeleteAllData.Click += new System.EventHandler(this.btnDeleteAllData_Click);
     //
     // btnRestartDevice
     //
     this.btnRestartDevice.Location = new System.Drawing.Point(179, 83);
     this.btnRestartDevice.Name = "btnRestartDevice";
     this.btnRestartDevice.Size = new System.Drawing.Size(132, 23);
     this.btnRestartDevice.TabIndex = 17;
     this.btnRestartDevice.Text = "RestartDevice";
     this.btnRestartDevice.UseVisualStyleBackColor = true;
     this.btnRestartDevice.Click += new System.EventHandler(this.btnRestartDevice_Click);
     //
     // cbSecond
     //
     this.cbSecond.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbSecond.FormattingEnabled = true;
     this.cbSecond.Items.AddRange(new object[] {
     "1",
     "..",
     "59"});
     this.cbSecond.Location = new System.Drawing.Point(270, 20);
     this.cbSecond.Name = "cbSecond";
     this.cbSecond.Size = new System.Drawing.Size(41, 21);
     this.cbSecond.TabIndex = 15;
     this.cbSecond.Text = "8";
     //
     // cbMonth
     //
     this.cbMonth.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbMonth.DisplayMember = "Month";
     this.cbMonth.FormattingEnabled = true;
     this.cbMonth.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12"});
     this.cbMonth.Location = new System.Drawing.Point(74, 19);
     this.cbMonth.Name = "cbMonth";
     this.cbMonth.Size = new System.Drawing.Size(41, 21);
     this.cbMonth.TabIndex = 11;
     this.cbMonth.Text = "12";
     //
     // cbMinute
     //
     this.cbMinute.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbMinute.FormattingEnabled = true;
     this.cbMinute.Items.AddRange(new object[] {
     "1",
     "..",
     "59"});
     this.cbMinute.Location = new System.Drawing.Point(221, 20);
     this.cbMinute.Name = "cbMinute";
     this.cbMinute.Size = new System.Drawing.Size(41, 21);
     this.cbMinute.TabIndex = 14;
     this.cbMinute.Text = "8";
     //
     // btnSetDeviceTime2
     //
     this.btnSetDeviceTime2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSetDeviceTime2.Location = new System.Drawing.Point(331, 17);
     this.btnSetDeviceTime2.Name = "btnSetDeviceTime2";
     this.btnSetDeviceTime2.Size = new System.Drawing.Size(132, 23);
     this.btnSetDeviceTime2.TabIndex = 16;
     this.btnSetDeviceTime2.Text = "SetDeviceTime2";
     this.btnSetDeviceTime2.UseVisualStyleBackColor = true;
     this.btnSetDeviceTime2.Click += new System.EventHandler(this.btnSetDeviceTime2_Click);
     //
     // cbDay
     //
     this.cbDay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbDay.FormattingEnabled = true;
     this.cbDay.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "..",
     "30"});
     this.cbDay.Location = new System.Drawing.Point(123, 19);
     this.cbDay.Name = "cbDay";
     this.cbDay.Size = new System.Drawing.Size(41, 21);
     this.cbDay.TabIndex = 12;
     this.cbDay.Text = "31";
     //
     // cbHour
     //
     this.cbHour.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbHour.FormattingEnabled = true;
     this.cbHour.Items.AddRange(new object[] {
     "1",
     "..",
     "59"});
     this.cbHour.Location = new System.Drawing.Point(172, 20);
     this.cbHour.Name = "cbHour";
     this.cbHour.Size = new System.Drawing.Size(41, 21);
     this.cbHour.TabIndex = 13;
     this.cbHour.Text = "8";
     //
     // cbYear
     //
     this.cbYear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbYear.FormattingEnabled = true;
     this.cbYear.Items.AddRange(new object[] {
     "2009",
     "2010",
     "2011",
     "2012"});
     this.cbYear.Location = new System.Drawing.Point(6, 19);
     this.cbYear.Name = "cbYear";
     this.cbYear.Size = new System.Drawing.Size(60, 21);
     this.cbYear.TabIndex = 10;
     this.cbYear.Text = "2009";
     //
     // btnGetDeviceTime
     //
     this.btnGetDeviceTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnGetDeviceTime.Location = new System.Drawing.Point(6, 50);
     this.btnGetDeviceTime.Name = "btnGetDeviceTime";
     this.btnGetDeviceTime.Size = new System.Drawing.Size(137, 23);
     this.btnGetDeviceTime.TabIndex = 4;
     this.btnGetDeviceTime.Text = "GetDeviceTime";
     this.btnGetDeviceTime.UseVisualStyleBackColor = true;
     this.btnGetDeviceTime.Click += new System.EventHandler(this.btnGetDeviceTime_Click);
     //
     // txtGetDeviceTime
     //
     this.txtGetDeviceTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtGetDeviceTime.Location = new System.Drawing.Point(160, 52);
     this.txtGetDeviceTime.Name = "txtGetDeviceTime";
     this.txtGetDeviceTime.ReadOnly = true;
     this.txtGetDeviceTime.Size = new System.Drawing.Size(151, 20);
     this.txtGetDeviceTime.TabIndex = 5;
     //
     // btnSynDeviceTime
     //
     this.btnSynDeviceTime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSynDeviceTime.Location = new System.Drawing.Point(331, 50);
     this.btnSynDeviceTime.Name = "btnSynDeviceTime";
     this.btnSynDeviceTime.Size = new System.Drawing.Size(132, 23);
     this.btnSynDeviceTime.TabIndex = 3;
     this.btnSynDeviceTime.Text = "DownloadFPTmp";
     this.btnSynDeviceTime.UseVisualStyleBackColor = true;
     this.btnSynDeviceTime.Click += new System.EventHandler(this.btnSynDeviceTime_Click);
     //
     // grbDownloadUserInfo
     //
     this.grbDownloadUserInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.grbDownloadUserInfo.Controls.Add(this.btnDownloadUserInfo);
     this.grbDownloadUserInfo.Controls.Add(this.ckbOnlyDownNewEmp);
     this.grbDownloadUserInfo.Location = new System.Drawing.Point(532, 235);
     this.grbDownloadUserInfo.Name = "grbDownloadUserInfo";
     this.grbDownloadUserInfo.Size = new System.Drawing.Size(470, 51);
     this.grbDownloadUserInfo.TabIndex = 64;
     this.grbDownloadUserInfo.TabStop = false;
     this.grbDownloadUserInfo.Text = "groupBox1";
     //
     // btnDownloadUserInfo
     //
     this.btnDownloadUserInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDownloadUserInfo.Location = new System.Drawing.Point(331, 22);
     this.btnDownloadUserInfo.Name = "btnDownloadUserInfo";
     this.btnDownloadUserInfo.Size = new System.Drawing.Size(132, 23);
     this.btnDownloadUserInfo.TabIndex = 3;
     this.btnDownloadUserInfo.Text = "DownloadFPTmp";
     this.btnDownloadUserInfo.UseVisualStyleBackColor = true;
     this.btnDownloadUserInfo.Click += new System.EventHandler(this.btnDownloadUserInfo_Click);
     //
     // ckbOnlyDownNewEmp
     //
     this.ckbOnlyDownNewEmp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.ckbOnlyDownNewEmp.AutoSize = true;
     this.ckbOnlyDownNewEmp.Checked = true;
     this.ckbOnlyDownNewEmp.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ckbOnlyDownNewEmp.Location = new System.Drawing.Point(6, 26);
     this.ckbOnlyDownNewEmp.Name = "ckbOnlyDownNewEmp";
     this.ckbOnlyDownNewEmp.Size = new System.Drawing.Size(76, 17);
     this.ckbOnlyDownNewEmp.TabIndex = 76;
     this.ckbOnlyDownNewEmp.Text = "Tải thẻ lên";
     this.ckbOnlyDownNewEmp.UseVisualStyleBackColor = true;
     //
     // grbEditUser
     //
     this.grbEditUser.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.grbEditUser.Controls.Add(this.ckbDeleteOnSystem);
     this.grbEditUser.Controls.Add(this.btnClearAdministrators);
     this.grbEditUser.Controls.Add(this.btnClearDataTmps);
     this.grbEditUser.Controls.Add(this.btnDelAllUserOnDatabase);
     this.grbEditUser.Controls.Add(this.btnClearDataUserInfo);
     this.grbEditUser.Controls.Add(this.btnDeleteEnrollData);
     this.grbEditUser.Location = new System.Drawing.Point(532, 354);
     this.grbEditUser.Name = "grbEditUser";
     this.grbEditUser.Size = new System.Drawing.Size(470, 121);
     this.grbEditUser.TabIndex = 63;
     this.grbEditUser.TabStop = false;
     this.grbEditUser.Text = "groupBox1";
     //
     // ckbDeleteOnSystem
     //
     this.ckbDeleteOnSystem.AutoSize = true;
     this.ckbDeleteOnSystem.Location = new System.Drawing.Point(99, 23);
     this.ckbDeleteOnSystem.Name = "ckbDeleteOnSystem";
     this.ckbDeleteOnSystem.Size = new System.Drawing.Size(126, 17);
     this.ckbDeleteOnSystem.TabIndex = 76;
     this.ckbDeleteOnSystem.Text = "Xóa cả trên hệ thống";
     this.ckbDeleteOnSystem.UseVisualStyleBackColor = true;
     //
     // btnClearAdministrators
     //
     this.btnClearAdministrators.Location = new System.Drawing.Point(322, 54);
     this.btnClearAdministrators.Name = "btnClearAdministrators";
     this.btnClearAdministrators.Size = new System.Drawing.Size(141, 23);
     this.btnClearAdministrators.TabIndex = 75;
     this.btnClearAdministrators.Text = "ClearAdministrators";
     this.btnClearAdministrators.UseVisualStyleBackColor = true;
     this.btnClearAdministrators.Click += new System.EventHandler(this.btnClearAdministrators_Click);
     //
     // btnClearDataTmps
     //
     this.btnClearDataTmps.BackColor = System.Drawing.Color.LightCoral;
     this.btnClearDataTmps.Location = new System.Drawing.Point(6, 54);
     this.btnClearDataTmps.Name = "btnClearDataTmps";
     this.btnClearDataTmps.Size = new System.Drawing.Size(141, 23);
     this.btnClearDataTmps.TabIndex = 74;
     this.btnClearDataTmps.Text = "ClearTmpsData";
     this.btnClearDataTmps.UseVisualStyleBackColor = false;
     this.btnClearDataTmps.Visible = false;
     this.btnClearDataTmps.Click += new System.EventHandler(this.btnClearDataTmps_Click);
     //
     // btnDelAllUserOnDatabase
     //
     this.btnDelAllUserOnDatabase.BackColor = System.Drawing.Color.LightCoral;
     this.btnDelAllUserOnDatabase.Location = new System.Drawing.Point(322, 17);
     this.btnDelAllUserOnDatabase.Name = "btnDelAllUserOnDatabase";
     this.btnDelAllUserOnDatabase.Size = new System.Drawing.Size(141, 23);
     this.btnDelAllUserOnDatabase.TabIndex = 73;
     this.btnDelAllUserOnDatabase.Text = "Xóa hết NV trên hệ thống";
     this.btnDelAllUserOnDatabase.UseVisualStyleBackColor = false;
     this.btnDelAllUserOnDatabase.Click += new System.EventHandler(this.btnDelAllUserOnDatabase_Click);
     //
     // btnClearDataUserInfo
     //
     this.btnClearDataUserInfo.BackColor = System.Drawing.Color.LightCoral;
     this.btnClearDataUserInfo.Location = new System.Drawing.Point(175, 54);
     this.btnClearDataUserInfo.Name = "btnClearDataUserInfo";
     this.btnClearDataUserInfo.Size = new System.Drawing.Size(141, 23);
     this.btnClearDataUserInfo.TabIndex = 73;
     this.btnClearDataUserInfo.Text = "ClearUserInfoData";
     this.btnClearDataUserInfo.UseVisualStyleBackColor = false;
     this.btnClearDataUserInfo.Visible = false;
     this.btnClearDataUserInfo.Click += new System.EventHandler(this.btnClearDataUserInfo_Click);
     //
     // btnDeleteEnrollData
     //
     this.btnDeleteEnrollData.BackColor = System.Drawing.Color.LightCoral;
     this.btnDeleteEnrollData.Location = new System.Drawing.Point(6, 19);
     this.btnDeleteEnrollData.Name = "btnDeleteEnrollData";
     this.btnDeleteEnrollData.Size = new System.Drawing.Size(87, 23);
     this.btnDeleteEnrollData.TabIndex = 62;
     this.btnDeleteEnrollData.Text = "Delete User";
     this.btnDeleteEnrollData.UseVisualStyleBackColor = false;
     this.btnDeleteEnrollData.Click += new System.EventHandler(this.btnDeleteEnrollData_Click);
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(110, 6);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.txtSearch.Properties.Appearance.Options.UseBackColor = true;
     this.txtSearch.Properties.MaxLength = 20;
     this.txtSearch.Size = new System.Drawing.Size(294, 20);
     this.txtSearch.TabIndex = 61;
     this.txtSearch.EditValueChanged += new System.EventHandler(this.txtSearch_EditValueChanged);
     //
     // lblSearch
     //
     this.lblSearch.AutoSize = true;
     this.lblSearch.Location = new System.Drawing.Point(0, 9);
     this.lblSearch.Name = "lblSearch";
     this.lblSearch.Size = new System.Drawing.Size(70, 13);
     this.lblSearch.TabIndex = 60;
     this.lblSearch.Text = "Employee ID:";
     //
     // grdUserList
     //
     this.grdUserList.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.grdUserList.EmbeddedNavigator.Name = "";
     this.grdUserList.FormsUseDefaultLookAndFeel = false;
     this.grdUserList.Location = new System.Drawing.Point(3, 32);
     this.grdUserList.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grdUserList.MainView = this.grvUserList;
     this.grdUserList.Name = "grdUserList";
     this.grdUserList.Size = new System.Drawing.Size(523, 447);
     this.grdUserList.TabIndex = 57;
     this.grdUserList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grvUserList});
     //
     // grvUserList
     //
     this.grvUserList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEmployeeID,
     this.colEmpFullName,
     this.colACNo,
     this.colName,
     this.colTemplateCount,
     this.colCheck,
     this.colCardNo,
     this.PASSWORD});
     this.grvUserList.GridControl = this.grdUserList;
     this.grvUserList.Name = "grvUserList";
     this.grvUserList.OptionsSelection.MultiSelect = true;
     this.grvUserList.OptionsView.ShowFooter = true;
     this.grvUserList.OptionsView.ShowGroupPanel = false;
     this.grvUserList.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grvUserList_CellValueChanged);
     //
     // colEmployeeID
     //
     this.colEmployeeID.Caption = "EmployeeID";
     this.colEmployeeID.FieldName = "EmployeeID";
     this.colEmployeeID.Name = "colEmployeeID";
     this.colEmployeeID.OptionsColumn.AllowEdit = false;
     this.colEmployeeID.Visible = true;
     this.colEmployeeID.VisibleIndex = 0;
     this.colEmployeeID.Width = 61;
     //
     // colEmpFullName
     //
     this.colEmpFullName.Caption = "FullName";
     this.colEmpFullName.FieldName = "FullName";
     this.colEmpFullName.Name = "colEmpFullName";
     this.colEmpFullName.OptionsColumn.AllowEdit = false;
     this.colEmpFullName.Visible = true;
     this.colEmpFullName.VisibleIndex = 1;
     this.colEmpFullName.Width = 186;
     //
     // colACNo
     //
     this.colACNo.Caption = "Badgenumber";
     this.colACNo.FieldName = "Badgenumber";
     this.colACNo.Name = "colACNo";
     this.colACNo.OptionsColumn.AllowEdit = false;
     this.colACNo.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colACNo.Visible = true;
     this.colACNo.VisibleIndex = 2;
     this.colACNo.Width = 43;
     //
     // colName
     //
     this.colName.Caption = "Name";
     this.colName.FieldName = "NAME";
     this.colName.Name = "colName";
     this.colName.Visible = true;
     this.colName.VisibleIndex = 3;
     this.colName.Width = 77;
     //
     // colTemplateCount
     //
     this.colTemplateCount.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colTemplateCount.AppearanceCell.Options.UseFont = true;
     this.colTemplateCount.Caption = "FingerCount";
     this.colTemplateCount.FieldName = "FingerCount";
     this.colTemplateCount.Name = "colTemplateCount";
     this.colTemplateCount.OptionsColumn.AllowEdit = false;
     this.colTemplateCount.Visible = true;
     this.colTemplateCount.VisibleIndex = 4;
     this.colTemplateCount.Width = 62;
     //
     // colCheck
     //
     this.colCheck.Caption = "Check";
     this.colCheck.FieldName = "Check";
     this.colCheck.Name = "colCheck";
     this.colCheck.Visible = true;
     this.colCheck.VisibleIndex = 5;
     this.colCheck.Width = 58;
     //
     // colCardNo
     //
     this.colCardNo.Caption = "CardNo";
     this.colCardNo.FieldName = "CardNo";
     this.colCardNo.Name = "colCardNo";
     this.colCardNo.Visible = true;
     this.colCardNo.VisibleIndex = 6;
     this.colCardNo.Width = 51;
     //
     // PASSWORD
     //
     this.PASSWORD.Caption = "PASSWORD";
     this.PASSWORD.FieldName = "PASSWORD";
     this.PASSWORD.Name = "PASSWORD";
     this.PASSWORD.Visible = true;
     this.PASSWORD.VisibleIndex = 7;
     this.PASSWORD.Width = 59;
     //
     // ImportDataFromUSBFileData
     //
     this.ImportDataFromUSBFileData.Controls.Add(this.tabControl1);
     this.ImportDataFromUSBFileData.Location = new System.Drawing.Point(4, 22);
     this.ImportDataFromUSBFileData.Name = "ImportDataFromUSBFileData";
     this.ImportDataFromUSBFileData.Size = new System.Drawing.Size(1010, 515);
     this.ImportDataFromUSBFileData.TabIndex = 2;
     this.ImportDataFromUSBFileData.Text = "tabPage1";
     this.ImportDataFromUSBFileData.UseVisualStyleBackColor = true;
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabUserUSB_BW);
     this.tabControl1.Controls.Add(this.tabAttLogsUSB_BW);
     this.tabControl1.Controls.Add(this.tabTmp9USB_BW);
     this.tabControl1.Location = new System.Drawing.Point(3, 3);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(1008, 472);
     this.tabControl1.TabIndex = 5;
     //
     // tabUserUSB_BW
     //
     this.tabUserUSB_BW.Controls.Add(this.lblUserUSB_BW_Note);
     this.tabUserUSB_BW.Controls.Add(this.btnUserRead);
     this.tabUserUSB_BW.Controls.Add(this.lvUser);
     this.tabUserUSB_BW.Location = new System.Drawing.Point(4, 22);
     this.tabUserUSB_BW.Name = "tabUserUSB_BW";
     this.tabUserUSB_BW.Padding = new System.Windows.Forms.Padding(3);
     this.tabUserUSB_BW.Size = new System.Drawing.Size(1000, 446);
     this.tabUserUSB_BW.TabIndex = 0;
     this.tabUserUSB_BW.Text = "User(B&W)";
     this.tabUserUSB_BW.UseVisualStyleBackColor = true;
     //
     // lblUserUSB_BW_Note
     //
     this.lblUserUSB_BW_Note.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblUserUSB_BW_Note.AutoSize = true;
     this.lblUserUSB_BW_Note.ForeColor = System.Drawing.Color.Red;
     this.lblUserUSB_BW_Note.Location = new System.Drawing.Point(237, 375);
     this.lblUserUSB_BW_Note.Name = "lblUserUSB_BW_Note";
     this.lblUserUSB_BW_Note.Size = new System.Drawing.Size(403, 13);
     this.lblUserUSB_BW_Note.TabIndex = 10;
     this.lblUserUSB_BW_Note.Text = "It is for user information management(user.dat).(For Black&&White screen device o" +
         "nly)";
     //
     // btnUserRead
     //
     this.btnUserRead.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnUserRead.Location = new System.Drawing.Point(295, 402);
     this.btnUserRead.Name = "btnUserRead";
     this.btnUserRead.Size = new System.Drawing.Size(159, 23);
     this.btnUserRead.TabIndex = 8;
     this.btnUserRead.Text = "ReadDataToPC";
     this.btnUserRead.UseVisualStyleBackColor = true;
     this.btnUserRead.Click += new System.EventHandler(this.btnUserRead_Click);
     //
     // lvUser
     //
     this.lvUser.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.lvUser.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5,
     this.columnHeader6,
     this.columnHeader7,
     this.columnHeader8});
     this.lvUser.ForeColor = System.Drawing.SystemColors.MenuHighlight;
     this.lvUser.GridLines = true;
     this.lvUser.Location = new System.Drawing.Point(6, 6);
     this.lvUser.Name = "lvUser";
     this.lvUser.Size = new System.Drawing.Size(989, 357);
     this.lvUser.TabIndex = 0;
     this.lvUser.UseCompatibleStateImageBehavior = false;
     this.lvUser.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "PIN2";
     this.columnHeader1.Width = 53;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Name";
     this.columnHeader2.Width = 47;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Card";
     this.columnHeader3.Width = 55;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Privilege";
     this.columnHeader4.Width = 77;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Password";
     this.columnHeader5.Width = 77;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Group";
     this.columnHeader6.Width = 69;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "TimeZones";
     this.columnHeader7.Width = 74;
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "PIN";
     this.columnHeader8.Width = 68;
     //
     // tabAttLogsUSB_BW
     //
     this.tabAttLogsUSB_BW.Controls.Add(this.lblAttLogsUSB_BW_note);
     this.tabAttLogsUSB_BW.Controls.Add(this.btnAttLogExtRead);
     this.tabAttLogsUSB_BW.Controls.Add(this.lvAttLog);
     this.tabAttLogsUSB_BW.Location = new System.Drawing.Point(4, 22);
     this.tabAttLogsUSB_BW.Name = "tabAttLogsUSB_BW";
     this.tabAttLogsUSB_BW.Size = new System.Drawing.Size(1000, 446);
     this.tabAttLogsUSB_BW.TabIndex = 3;
     this.tabAttLogsUSB_BW.Text = "Attlogs(B&W)";
     this.tabAttLogsUSB_BW.UseVisualStyleBackColor = true;
     //
     // lblAttLogsUSB_BW_note
     //
     this.lblAttLogsUSB_BW_note.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblAttLogsUSB_BW_note.AutoSize = true;
     this.lblAttLogsUSB_BW_note.ForeColor = System.Drawing.Color.Red;
     this.lblAttLogsUSB_BW_note.Location = new System.Drawing.Point(183, 378);
     this.lblAttLogsUSB_BW_note.Name = "lblAttLogsUSB_BW_note";
     this.lblAttLogsUSB_BW_note.Size = new System.Drawing.Size(249, 13);
     this.lblAttLogsUSB_BW_note.TabIndex = 25;
     this.lblAttLogsUSB_BW_note.Text = "It is for the extended attendence logs management.";
     //
     // btnAttLogExtRead
     //
     this.btnAttLogExtRead.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAttLogExtRead.Location = new System.Drawing.Point(210, 405);
     this.btnAttLogExtRead.Name = "btnAttLogExtRead";
     this.btnAttLogExtRead.Size = new System.Drawing.Size(175, 23);
     this.btnAttLogExtRead.TabIndex = 20;
     this.btnAttLogExtRead.Text = "ReadDataToPC";
     this.btnAttLogExtRead.UseVisualStyleBackColor = true;
     this.btnAttLogExtRead.Click += new System.EventHandler(this.btnAttLogExtRead_Click);
     //
     // lvAttLog
     //
     this.lvAttLog.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.lvAttLog.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader25,
     this.columnHeader26,
     this.columnHeader27,
     this.columnHeader28,
     this.columnHeader29,
     this.columnHeader30});
     this.lvAttLog.GridLines = true;
     this.lvAttLog.Location = new System.Drawing.Point(6, 6);
     this.lvAttLog.Name = "lvAttLog";
     this.lvAttLog.Size = new System.Drawing.Size(989, 354);
     this.lvAttLog.TabIndex = 1;
     this.lvAttLog.UseCompatibleStateImageBehavior = false;
     this.lvAttLog.View = System.Windows.Forms.View.Details;
     //
     // columnHeader25
     //
     this.columnHeader25.Text = "PIN";
     this.columnHeader25.Width = 129;
     //
     // columnHeader26
     //
     this.columnHeader26.Text = "Time";
     this.columnHeader26.Width = 182;
     //
     // columnHeader27
     //
     this.columnHeader27.Text = "DeviceID";
     this.columnHeader27.Width = 68;
     //
     // columnHeader28
     //
     this.columnHeader28.Text = "Status";
     this.columnHeader28.Width = 54;
     //
     // columnHeader29
     //
     this.columnHeader29.Text = "Verified";
     this.columnHeader29.Width = 65;
     //
     // columnHeader30
     //
     this.columnHeader30.Text = "Workcode";
     this.columnHeader30.Width = 69;
     //
     // tabTmp9USB_BW
     //
     this.tabTmp9USB_BW.Controls.Add(this.lblTmp9USB_BW_Note);
     this.tabTmp9USB_BW.Controls.Add(this.btnTmpRead);
     this.tabTmp9USB_BW.Controls.Add(this.lvTmp);
     this.tabTmp9USB_BW.Location = new System.Drawing.Point(4, 22);
     this.tabTmp9USB_BW.Name = "tabTmp9USB_BW";
     this.tabTmp9USB_BW.Size = new System.Drawing.Size(1000, 446);
     this.tabTmp9USB_BW.TabIndex = 2;
     this.tabTmp9USB_BW.Text = "Tmp9.0";
     this.tabTmp9USB_BW.UseVisualStyleBackColor = true;
     //
     // lblTmp9USB_BW_Note
     //
     this.lblTmp9USB_BW_Note.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblTmp9USB_BW_Note.AutoSize = true;
     this.lblTmp9USB_BW_Note.ForeColor = System.Drawing.Color.Red;
     this.lblTmp9USB_BW_Note.Location = new System.Drawing.Point(125, 383);
     this.lblTmp9USB_BW_Note.Name = "lblTmp9USB_BW_Note";
     this.lblTmp9USB_BW_Note.Size = new System.Drawing.Size(368, 13);
     this.lblTmp9USB_BW_Note.TabIndex = 27;
     this.lblTmp9USB_BW_Note.Text = "It is for fingerprint templates management.(For device with 9.0 arithmetic only)";
     //
     // btnTmpRead
     //
     this.btnTmpRead.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnTmpRead.Location = new System.Drawing.Point(210, 411);
     this.btnTmpRead.Name = "btnTmpRead";
     this.btnTmpRead.Size = new System.Drawing.Size(153, 23);
     this.btnTmpRead.TabIndex = 14;
     this.btnTmpRead.Text = "ReadDataToPC";
     this.btnTmpRead.UseVisualStyleBackColor = true;
     this.btnTmpRead.Click += new System.EventHandler(this.btnTmpRead_Click);
     //
     // lvTmp
     //
     this.lvTmp.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.lvTmp.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader17,
     this.columnHeader18,
     this.columnHeader19,
     this.columnHeader20,
     this.columnHeader21});
     this.lvTmp.GridLines = true;
     this.lvTmp.Location = new System.Drawing.Point(6, 6);
     this.lvTmp.Name = "lvTmp";
     this.lvTmp.Size = new System.Drawing.Size(989, 357);
     this.lvTmp.TabIndex = 1;
     this.lvTmp.UseCompatibleStateImageBehavior = false;
     this.lvTmp.View = System.Windows.Forms.View.Details;
     //
     // columnHeader17
     //
     this.columnHeader17.Text = "Size";
     this.columnHeader17.Width = 53;
     //
     // columnHeader18
     //
     this.columnHeader18.Text = "PIN";
     this.columnHeader18.Width = 45;
     //
     // columnHeader19
     //
     this.columnHeader19.Text = "FingerID";
     this.columnHeader19.Width = 72;
     //
     // columnHeader20
     //
     this.columnHeader20.Text = "Valid";
     this.columnHeader20.Width = 87;
     //
     // columnHeader21
     //
     this.columnHeader21.Text = "Template";
     this.columnHeader21.Width = 111;
     //
     // ImportDataFromUSBFileData_TFT
     //
     this.ImportDataFromUSBFileData_TFT.Controls.Add(this.tabControl2);
     this.ImportDataFromUSBFileData_TFT.Location = new System.Drawing.Point(4, 22);
     this.ImportDataFromUSBFileData_TFT.Name = "ImportDataFromUSBFileData_TFT";
     this.ImportDataFromUSBFileData_TFT.Size = new System.Drawing.Size(1010, 515);
     this.ImportDataFromUSBFileData_TFT.TabIndex = 3;
     this.ImportDataFromUSBFileData_TFT.Text = "ImportDataFromUSBFileData_TFT";
     this.ImportDataFromUSBFileData_TFT.UseVisualStyleBackColor = true;
     //
     // tabControl2
     //
     this.tabControl2.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.tabControl2.Controls.Add(this.tabUser_TFT);
     this.tabControl2.Controls.Add(this.tabAttLogs_TFT);
     this.tabControl2.Controls.Add(this.tabtmp9_TFT);
     this.tabControl2.Controls.Add(this.tabTmp10_TFT);
     this.tabControl2.Location = new System.Drawing.Point(3, 3);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(1004, 472);
     this.tabControl2.TabIndex = 5;
     //
     // tabUser_TFT
     //
     this.tabUser_TFT.Controls.Add(this.label2);
     this.tabUser_TFT.Controls.Add(this.btnSSR_UserRead);
     this.tabUser_TFT.Controls.Add(this.lvSSRUser);
     this.tabUser_TFT.Location = new System.Drawing.Point(4, 22);
     this.tabUser_TFT.Name = "tabUser_TFT";
     this.tabUser_TFT.Padding = new System.Windows.Forms.Padding(3);
     this.tabUser_TFT.Size = new System.Drawing.Size(996, 446);
     this.tabUser_TFT.TabIndex = 1;
     this.tabUser_TFT.Text = "SSR_User(TFT)";
     this.tabUser_TFT.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.Color.Red;
     this.label2.Location = new System.Drawing.Point(194, 379);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(226, 13);
     this.label2.TabIndex = 13;
     this.label2.Text = "It is for user information management(user.dat).";
     //
     // btnSSR_UserRead
     //
     this.btnSSR_UserRead.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSSR_UserRead.Location = new System.Drawing.Point(210, 405);
     this.btnSSR_UserRead.Name = "btnSSR_UserRead";
     this.btnSSR_UserRead.Size = new System.Drawing.Size(158, 23);
     this.btnSSR_UserRead.TabIndex = 11;
     this.btnSSR_UserRead.Text = "ReadDataToPC";
     this.btnSSR_UserRead.UseVisualStyleBackColor = true;
     this.btnSSR_UserRead.Click += new System.EventHandler(this.btnSSR_UserRead_Click);
     //
     // lvSSRUser
     //
     this.lvSSRUser.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.lvSSRUser.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader9,
     this.columnHeader10,
     this.columnHeader11,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader15,
     this.columnHeader16});
     this.lvSSRUser.GridLines = true;
     this.lvSSRUser.Location = new System.Drawing.Point(6, 6);
     this.lvSSRUser.Name = "lvSSRUser";
     this.lvSSRUser.Size = new System.Drawing.Size(984, 357);
     this.lvSSRUser.TabIndex = 1;
     this.lvSSRUser.UseCompatibleStateImageBehavior = false;
     this.lvSSRUser.View = System.Windows.Forms.View.Details;
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "PIN2";
     this.columnHeader9.Width = 53;
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Name";
     this.columnHeader10.Width = 47;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Card";
     this.columnHeader11.Width = 55;
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Privilege";
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Password";
     this.columnHeader13.Width = 77;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "Group";
     this.columnHeader14.Width = 69;
     //
     // columnHeader15
     //
     this.columnHeader15.Text = "TimeZones";
     this.columnHeader15.Width = 74;
     //
     // columnHeader16
     //
     this.columnHeader16.Text = "PIN";
     this.columnHeader16.Width = 68;
     //
     // tabAttLogs_TFT
     //
     this.tabAttLogs_TFT.Controls.Add(this.label4);
     this.tabAttLogs_TFT.Controls.Add(this.lvSSRAttLog);
     this.tabAttLogs_TFT.Controls.Add(this.btnSSRAttLogRead);
     this.tabAttLogs_TFT.Location = new System.Drawing.Point(4, 22);
     this.tabAttLogs_TFT.Name = "tabAttLogs_TFT";
     this.tabAttLogs_TFT.Size = new System.Drawing.Size(996, 446);
     this.tabAttLogs_TFT.TabIndex = 4;
     this.tabAttLogs_TFT.Text = "AttLogs(TFT)";
     this.tabAttLogs_TFT.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Red;
     this.label4.Location = new System.Drawing.Point(186, 381);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(184, 13);
     this.label4.TabIndex = 26;
     this.label4.Text = "It is for attendance logs management.";
     //
     // lvSSRAttLog
     //
     this.lvSSRAttLog.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.lvSSRAttLog.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader22,
     this.columnHeader23,
     this.columnHeader24,
     this.columnHeader31,
     this.columnHeader32,
     this.columnHeader33});
     this.lvSSRAttLog.GridLines = true;
     this.lvSSRAttLog.Location = new System.Drawing.Point(6, 6);
     this.lvSSRAttLog.Name = "lvSSRAttLog";
     this.lvSSRAttLog.Size = new System.Drawing.Size(987, 355);
     this.lvSSRAttLog.TabIndex = 24;
     this.lvSSRAttLog.UseCompatibleStateImageBehavior = false;
     this.lvSSRAttLog.View = System.Windows.Forms.View.Details;
     //
     // columnHeader22
     //
     this.columnHeader22.Text = "PIN";
     this.columnHeader22.Width = 129;
     //
     // columnHeader23
     //
     this.columnHeader23.Text = "Time";
     this.columnHeader23.Width = 182;
     //
     // columnHeader24
     //
     this.columnHeader24.Text = "DeviceID";
     this.columnHeader24.Width = 68;
     //
     // columnHeader31
     //
     this.columnHeader31.Text = "Status";
     this.columnHeader31.Width = 54;
     //
     // columnHeader32
     //
     this.columnHeader32.Text = "Verified";
     this.columnHeader32.Width = 65;
     //
     // columnHeader33
     //
     this.columnHeader33.Text = "Workcode";
     this.columnHeader33.Width = 69;
     //
     // btnSSRAttLogRead
     //
     this.btnSSRAttLogRead.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSSRAttLogRead.Location = new System.Drawing.Point(210, 407);
     this.btnSSRAttLogRead.Name = "btnSSRAttLogRead";
     this.btnSSRAttLogRead.Size = new System.Drawing.Size(160, 23);
     this.btnSSRAttLogRead.TabIndex = 21;
     this.btnSSRAttLogRead.Text = "ReadDataToPC";
     this.btnSSRAttLogRead.UseVisualStyleBackColor = true;
     this.btnSSRAttLogRead.Click += new System.EventHandler(this.btnSSRAttLogRead_Click);
     //
     // tabtmp9_TFT
     //
     this.tabtmp9_TFT.Controls.Add(this.label5);
     this.tabtmp9_TFT.Controls.Add(this.btnTemp9_TFT);
     this.tabtmp9_TFT.Controls.Add(this.lvTmp9);
     this.tabtmp9_TFT.Location = new System.Drawing.Point(4, 22);
     this.tabtmp9_TFT.Name = "tabtmp9_TFT";
     this.tabtmp9_TFT.Size = new System.Drawing.Size(996, 446);
     this.tabtmp9_TFT.TabIndex = 2;
     this.tabtmp9_TFT.Text = "Tmp9.0";
     this.tabtmp9_TFT.UseVisualStyleBackColor = true;
     //
     // label5
     //
     this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label5.AutoSize = true;
     this.label5.ForeColor = System.Drawing.Color.Red;
     this.label5.Location = new System.Drawing.Point(98, 379);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(373, 13);
     this.label5.TabIndex = 27;
     this.label5.Text = "It is for fingerprint templates management.(For devices with 9.0 arithmetic only)" +
         "";
     //
     // btnTemp9_TFT
     //
     this.btnTemp9_TFT.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnTemp9_TFT.Location = new System.Drawing.Point(210, 407);
     this.btnTemp9_TFT.Name = "btnTemp9_TFT";
     this.btnTemp9_TFT.Size = new System.Drawing.Size(173, 23);
     this.btnTemp9_TFT.TabIndex = 14;
     this.btnTemp9_TFT.Text = "ReadDataToPC";
     this.btnTemp9_TFT.UseVisualStyleBackColor = true;
     this.btnTemp9_TFT.Click += new System.EventHandler(this.btnTemp9_TFT_Click);
     //
     // lvTmp9
     //
     this.lvTmp9.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.lvTmp9.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader34,
     this.columnHeader35,
     this.columnHeader36,
     this.columnHeader37,
     this.columnHeader38});
     this.lvTmp9.GridLines = true;
     this.lvTmp9.Location = new System.Drawing.Point(6, 6);
     this.lvTmp9.Name = "lvTmp9";
     this.lvTmp9.Size = new System.Drawing.Size(987, 356);
     this.lvTmp9.TabIndex = 1;
     this.lvTmp9.UseCompatibleStateImageBehavior = false;
     this.lvTmp9.View = System.Windows.Forms.View.Details;
     //
     // columnHeader34
     //
     this.columnHeader34.Text = "Size";
     this.columnHeader34.Width = 53;
     //
     // columnHeader35
     //
     this.columnHeader35.Text = "PIN";
     this.columnHeader35.Width = 45;
     //
     // columnHeader36
     //
     this.columnHeader36.Text = "FingerID";
     this.columnHeader36.Width = 72;
     //
     // columnHeader37
     //
     this.columnHeader37.Text = "Valid";
     this.columnHeader37.Width = 87;
     //
     // columnHeader38
     //
     this.columnHeader38.Text = "Template";
     this.columnHeader38.Width = 111;
     //
     // tabTmp10_TFT
     //
     this.tabTmp10_TFT.Controls.Add(this.label6);
     this.tabTmp10_TFT.Controls.Add(this.lvTmp10);
     this.tabTmp10_TFT.Controls.Add(this.btnTmp10Read);
     this.tabTmp10_TFT.Location = new System.Drawing.Point(4, 22);
     this.tabTmp10_TFT.Name = "tabTmp10_TFT";
     this.tabTmp10_TFT.Size = new System.Drawing.Size(996, 446);
     this.tabTmp10_TFT.TabIndex = 6;
     this.tabTmp10_TFT.Text = "Tmp10.0";
     this.tabTmp10_TFT.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.Color.Red;
     this.label6.Location = new System.Drawing.Point(95, 379);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(379, 13);
     this.label6.TabIndex = 27;
     this.label6.Text = "It is for fingerprint templates management.(For devices with 10.0 arithmetic only" +
         ")";
     //
     // lvTmp10
     //
     this.lvTmp10.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.lvTmp10.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader42,
     this.columnHeader43,
     this.columnHeader44,
     this.columnHeader45,
     this.columnHeader46});
     this.lvTmp10.GridLines = true;
     this.lvTmp10.Location = new System.Drawing.Point(6, 6);
     this.lvTmp10.Name = "lvTmp10";
     this.lvTmp10.Size = new System.Drawing.Size(987, 358);
     this.lvTmp10.TabIndex = 13;
     this.lvTmp10.UseCompatibleStateImageBehavior = false;
     this.lvTmp10.View = System.Windows.Forms.View.Details;
     //
     // columnHeader42
     //
     this.columnHeader42.Text = "Size";
     this.columnHeader42.Width = 53;
     //
     // columnHeader43
     //
     this.columnHeader43.Text = "PIN";
     this.columnHeader43.Width = 45;
     //
     // columnHeader44
     //
     this.columnHeader44.Text = "FingerID";
     this.columnHeader44.Width = 72;
     //
     // columnHeader45
     //
     this.columnHeader45.Text = "Flag";
     this.columnHeader45.Width = 87;
     //
     // columnHeader46
     //
     this.columnHeader46.Text = "Template";
     this.columnHeader46.Width = 320;
     //
     // btnTmp10Read
     //
     this.btnTmp10Read.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnTmp10Read.Location = new System.Drawing.Point(210, 404);
     this.btnTmp10Read.Name = "btnTmp10Read";
     this.btnTmp10Read.Size = new System.Drawing.Size(185, 23);
     this.btnTmp10Read.TabIndex = 11;
     this.btnTmp10Read.Text = "ReadDataToPC";
     this.btnTmp10Read.UseVisualStyleBackColor = true;
     this.btnTmp10Read.Click += new System.EventHandler(this.btnTmp10Read_Click);
     //
     // grdMachineList
     //
     this.grdMachineList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.grdMachineList.EmbeddedNavigator.Name = "";
     this.grdMachineList.FormsUseDefaultLookAndFeel = false;
     this.grdMachineList.Location = new System.Drawing.Point(-1, 1);
     this.grdMachineList.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grdMachineList.MainView = this.grvMachineList;
     this.grdMachineList.Name = "grdMachineList";
     this.grdMachineList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemPictureEdit1});
     this.grdMachineList.Size = new System.Drawing.Size(1015, 174);
     this.grdMachineList.TabIndex = 56;
     this.grdMachineList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grvMachineList});
     //
     // grvMachineList
     //
     this.grvMachineList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colImageIcon,
     this.colMachineAlias,
     this.colStatus,
     this.colMachineNumber,
     this.colMachineKind,
     this.colIP,
     this.colPort,
     this.colLogCount,
     this.colmanagercount,
     this.colusercount,
     this.colfingercount,
     this.colSecretCount,
     this.colsn,
     this.colCDKey});
     this.grvMachineList.GridControl = this.grdMachineList;
     this.grvMachineList.GroupFormat = "[#image]{1} {2}";
     this.grvMachineList.Name = "grvMachineList";
     this.grvMachineList.OptionsSelection.MultiSelect = true;
     this.grvMachineList.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.grvMachineList.OptionsView.ColumnAutoWidth = false;
     this.grvMachineList.OptionsView.ShowGroupPanel = false;
     this.grvMachineList.OptionsView.ShowIndicator = false;
     //
     // colImageIcon
     //
     this.colImageIcon.Caption = "ImageIcon";
     this.colImageIcon.ColumnEdit = this.repositoryItemPictureEdit1;
     this.colImageIcon.FieldName = "ImageIcon";
     this.colImageIcon.Name = "colImageIcon";
     this.colImageIcon.OptionsColumn.AllowSize = false;
     this.colImageIcon.Visible = true;
     this.colImageIcon.VisibleIndex = 0;
     this.colImageIcon.Width = 37;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // colMachineAlias
     //
     this.colMachineAlias.Caption = "MachineAlias";
     this.colMachineAlias.FieldName = "MachineAlias";
     this.colMachineAlias.Name = "colMachineAlias";
     this.colMachineAlias.OptionsColumn.AllowEdit = false;
     this.colMachineAlias.Visible = true;
     this.colMachineAlias.VisibleIndex = 1;
     this.colMachineAlias.Width = 128;
     //
     // colStatus
     //
     this.colStatus.Caption = "Status";
     this.colStatus.FieldName = "Status";
     this.colStatus.Name = "colStatus";
     this.colStatus.OptionsColumn.AllowEdit = false;
     this.colStatus.Visible = true;
     this.colStatus.VisibleIndex = 2;
     this.colStatus.Width = 99;
     //
     // colMachineNumber
     //
     this.colMachineNumber.Caption = "MachineNumber";
     this.colMachineNumber.FieldName = "MachineNumber";
     this.colMachineNumber.Name = "colMachineNumber";
     this.colMachineNumber.OptionsColumn.AllowEdit = false;
     this.colMachineNumber.Visible = true;
     this.colMachineNumber.VisibleIndex = 3;
     this.colMachineNumber.Width = 94;
     //
     // colMachineKind
     //
     this.colMachineKind.Caption = "MachineKind";
     this.colMachineKind.FieldName = "MachineKind";
     this.colMachineKind.Name = "colMachineKind";
     this.colMachineKind.OptionsColumn.AllowEdit = false;
     //
     // colIP
     //
     this.colIP.Caption = "IP";
     this.colIP.FieldName = "IP";
     this.colIP.Name = "colIP";
     this.colIP.OptionsColumn.AllowEdit = false;
     this.colIP.Visible = true;
     this.colIP.VisibleIndex = 4;
     this.colIP.Width = 102;
     //
     // colPort
     //
     this.colPort.Caption = "Port";
     this.colPort.FieldName = "Port";
     this.colPort.Name = "colPort";
     this.colPort.OptionsColumn.AllowEdit = false;
     this.colPort.Visible = true;
     this.colPort.VisibleIndex = 5;
     this.colPort.Width = 72;
     //
     // colLogCount
     //
     this.colLogCount.Caption = "LogCount";
     this.colLogCount.FieldName = "LogCount";
     this.colLogCount.Name = "colLogCount";
     this.colLogCount.OptionsColumn.AllowEdit = false;
     this.colLogCount.Visible = true;
     this.colLogCount.VisibleIndex = 10;
     //
     // colmanagercount
     //
     this.colmanagercount.Caption = "managercount";
     this.colmanagercount.FieldName = "managercount";
     this.colmanagercount.Name = "colmanagercount";
     this.colmanagercount.OptionsColumn.AllowEdit = false;
     this.colmanagercount.Visible = true;
     this.colmanagercount.VisibleIndex = 6;
     this.colmanagercount.Width = 86;
     //
     // colusercount
     //
     this.colusercount.Caption = "usercount";
     this.colusercount.FieldName = "usercount";
     this.colusercount.Name = "colusercount";
     this.colusercount.OptionsColumn.AllowEdit = false;
     this.colusercount.Visible = true;
     this.colusercount.VisibleIndex = 7;
     this.colusercount.Width = 81;
     //
     // colfingercount
     //
     this.colfingercount.Caption = "fingercount";
     this.colfingercount.FieldName = "fingercount";
     this.colfingercount.Name = "colfingercount";
     this.colfingercount.OptionsColumn.AllowEdit = false;
     this.colfingercount.Visible = true;
     this.colfingercount.VisibleIndex = 8;
     this.colfingercount.Width = 73;
     //
     // colSecretCount
     //
     this.colSecretCount.Caption = "SecretCount";
     this.colSecretCount.FieldName = "SecretCount";
     this.colSecretCount.Name = "colSecretCount";
     this.colSecretCount.OptionsColumn.AllowEdit = false;
     this.colSecretCount.Visible = true;
     this.colSecretCount.VisibleIndex = 9;
     this.colSecretCount.Width = 64;
     //
     // colsn
     //
     this.colsn.Caption = "sn";
     this.colsn.FieldName = "sn";
     this.colsn.Name = "colsn";
     this.colsn.OptionsColumn.AllowEdit = false;
     this.colsn.Visible = true;
     this.colsn.VisibleIndex = 11;
     this.colsn.Width = 100;
     //
     // colCDKey
     //
     this.colCDKey.Caption = "CDKey";
     this.colCDKey.FieldName = "CDKey";
     this.colCDKey.Name = "colCDKey";
     this.colCDKey.OptionsColumn.AllowEdit = false;
     this.colCDKey.Visible = true;
     this.colCDKey.VisibleIndex = 12;
     //
     // btnConnect
     //
     this.btnConnect.Location = new System.Drawing.Point(7, 4);
     this.btnConnect.Name = "btnConnect";
     this.btnConnect.Size = new System.Drawing.Size(101, 30);
     this.btnConnect.TabIndex = 57;
     this.btnConnect.Text = "Connect";
     this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
     //
     // btnDisconnect
     //
     this.btnDisconnect.Location = new System.Drawing.Point(114, 3);
     this.btnDisconnect.Name = "btnDisconnect";
     this.btnDisconnect.Size = new System.Drawing.Size(101, 30);
     this.btnDisconnect.TabIndex = 57;
     this.btnDisconnect.Text = "Disconnect";
     this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
     //
     // lableInfor
     //
     this.lableInfor.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.lableInfor.BackColor = System.Drawing.SystemColors.Info;
     this.lableInfor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lableInfor.Font = new System.Drawing.Font("Verdana", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lableInfor.Location = new System.Drawing.Point(338, 154);
     this.lableInfor.Name = "lableInfor";
     this.lableInfor.Size = new System.Drawing.Size(341, 49);
     this.lableInfor.TabIndex = 58;
     this.lableInfor.Text = "Employee ID:";
     this.lableInfor.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lableInfor.Visible = false;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // MachineManagement
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1018, 722);
     this.Controls.Add(this.lableInfor);
     this.Controls.Add(this.tabMachineList);
     this.Controls.Add(this.grdMachineList);
     this.Name = "MachineManagement";
     this.Text = "MachineManagement";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MachineManagement_FormClosing);
     this.Controls.SetChildIndex(this.grdMachineList, 0);
     this.Controls.SetChildIndex(this.tabMachineList, 0);
     this.Controls.SetChildIndex(this.pnlFWCommand, 0);
     this.Controls.SetChildIndex(this.lblFWDecorateingLine, 0);
     this.Controls.SetChildIndex(this.lableInfor, 0);
     this.pnlFWCommand.ResumeLayout(false);
     this.pnlFWClose.ResumeLayout(false);
     this.tabMachineList.ResumeLayout(false);
     this.LiveAttendance.ResumeLayout(false);
     this.LiveAttendance.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtpToDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpToDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFromDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtpFromDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLogTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFullName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNameOnMachine.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtAcNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgEmployeeImage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdLogRecord)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvLogRecord)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpeDateTimeFormat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpeVerifyMode)).EndInit();
     this.UserManagement.ResumeLayout(false);
     this.UserManagement.PerformLayout();
     this.grbUploadUserInfo.ResumeLayout(false);
     this.grbUploadUserInfo.PerformLayout();
     this.grbSetDeviceTime.ResumeLayout(false);
     this.grbSetDeviceTime.PerformLayout();
     this.grbDownloadUserInfo.ResumeLayout(false);
     this.grbDownloadUserInfo.PerformLayout();
     this.grbEditUser.ResumeLayout(false);
     this.grbEditUser.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdUserList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvUserList)).EndInit();
     this.ImportDataFromUSBFileData.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabUserUSB_BW.ResumeLayout(false);
     this.tabUserUSB_BW.PerformLayout();
     this.tabAttLogsUSB_BW.ResumeLayout(false);
     this.tabAttLogsUSB_BW.PerformLayout();
     this.tabTmp9USB_BW.ResumeLayout(false);
     this.tabTmp9USB_BW.PerformLayout();
     this.ImportDataFromUSBFileData_TFT.ResumeLayout(false);
     this.tabControl2.ResumeLayout(false);
     this.tabUser_TFT.ResumeLayout(false);
     this.tabUser_TFT.PerformLayout();
     this.tabAttLogs_TFT.ResumeLayout(false);
     this.tabAttLogs_TFT.PerformLayout();
     this.tabtmp9_TFT.ResumeLayout(false);
     this.tabtmp9_TFT.PerformLayout();
     this.tabTmp10_TFT.ResumeLayout(false);
     this.tabTmp10_TFT.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdMachineList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvMachineList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GridMemberCard = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCard = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn225 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn234 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn235 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.mcard_lblNStatusID = new System.Windows.Forms.Label();
     this.cmbMemberCard = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnMemberCard_Reprint = new DevExpress.XtraEditors.SimpleButton();
     this.btnMemberCard_Print = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.chkNoPhoto = new System.Windows.Forms.CheckBox();
     this.btnCancelCard = new DevExpress.XtraEditors.SimpleButton();
     this.grpMemberCardBelow = new DevExpress.XtraEditors.GroupControl();
     this.gcTransferMember = new DevExpress.XtraGrid.GridControl();
     this.gvTransferMember = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.txtMemberName = new DevExpress.XtraEditors.TextEdit();
     this.txtMemberID = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).BeginInit();
     this.grpMemberCardBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridMemberCard
     //
     this.GridMemberCard.Location = new System.Drawing.Point(19, 74);
     this.GridMemberCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridMemberCard.MainView = this.gridViewMemberCard;
     this.GridMemberCard.Name = "GridMemberCard";
     this.GridMemberCard.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemImageComboBox1,
     this.repositoryItemImageComboBox2,
     this.repositoryItemImageEdit1,
     this.repositoryItemPictureEdit1});
     this.GridMemberCard.Size = new System.Drawing.Size(960, 240);
     this.GridMemberCard.TabIndex = 8;
     this.GridMemberCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberCard});
     //
     // gridViewMemberCard
     //
     this.gridViewMemberCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn3,
     this.GridColumn225,
     this.GridColumn234,
     this.GridColumn235,
     this.gridColumn25,
     this.gridColumn1});
     this.gridViewMemberCard.GridControl = this.GridMemberCard;
     this.gridViewMemberCard.Name = "gridViewMemberCard";
     this.gridViewMemberCard.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewMemberCard.OptionsCustomization.AllowFilter = false;
     this.gridViewMemberCard.OptionsSelection.MultiSelect = true;
     this.gridViewMemberCard.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberCard.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCard_FocusedRowChanged);
     this.gridViewMemberCard.LostFocus += new System.EventHandler(this.gridViewMemberCard_LostFocus);
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Request ID";
     this.gridColumn2.FieldName = "nRequestID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Date";
     this.gridColumn3.FieldName = "dtLastEditDate";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // GridColumn225
     //
     this.GridColumn225.Caption = "Membership ID";
     this.GridColumn225.FieldName = "strMembershipID";
     this.GridColumn225.Name = "GridColumn225";
     this.GridColumn225.OptionsColumn.AllowEdit = false;
     this.GridColumn225.Visible = true;
     this.GridColumn225.VisibleIndex = 2;
     this.GridColumn225.Width = 117;
     //
     // GridColumn234
     //
     this.GridColumn234.Caption = "Member Name";
     this.GridColumn234.FieldName = "strMemberName";
     this.GridColumn234.Name = "GridColumn234";
     this.GridColumn234.OptionsColumn.AllowEdit = false;
     this.GridColumn234.Visible = true;
     this.GridColumn234.VisibleIndex = 3;
     this.GridColumn234.Width = 161;
     //
     // GridColumn235
     //
     this.GridColumn235.Caption = "Source Branch";
     this.GridColumn235.FieldName = "BranchFrom";
     this.GridColumn235.Name = "GridColumn235";
     this.GridColumn235.OptionsColumn.AllowEdit = false;
     this.GridColumn235.Width = 190;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Collection Branch";
     this.gridColumn25.FieldName = "strBranchCode";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 162;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Status";
     this.gridColumn1.ColumnEdit = this.repositoryItemImageComboBox1;
     this.gridColumn1.FieldName = "nStatusID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 5;
     this.gridColumn1.Width = 189;
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Transfer Request", 7, -1)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // repositoryItemImageComboBox2
     //
     this.repositoryItemImageComboBox2.AutoHeight = false;
     this.repositoryItemImageComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox2.Name = "repositoryItemImageComboBox2";
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     this.repositoryItemImageEdit1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // mcard_lblNStatusID
     //
     this.mcard_lblNStatusID.BackColor = System.Drawing.Color.Transparent;
     this.mcard_lblNStatusID.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mcard_lblNStatusID.Location = new System.Drawing.Point(19, 46);
     this.mcard_lblNStatusID.Name = "mcard_lblNStatusID";
     this.mcard_lblNStatusID.Size = new System.Drawing.Size(67, 19);
     this.mcard_lblNStatusID.TabIndex = 122;
     this.mcard_lblNStatusID.Text = "Status";
     //
     // cmbMemberCard
     //
     this.cmbMemberCard.Location = new System.Drawing.Point(86, 37);
     this.cmbMemberCard.Name = "cmbMemberCard";
     this.cmbMemberCard.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbMemberCard.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Show All", null, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Request Print", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Print in Progress", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("In Transit", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Received", 4, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Card Issued", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Cancelled", 6, -1)});
     this.cmbMemberCard.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.cmbMemberCard.Size = new System.Drawing.Size(192, 22);
     this.cmbMemberCard.TabIndex = 120;
     this.cmbMemberCard.SelectedIndexChanged += new System.EventHandler(this.cmbMemberCard_SelectedIndexChanged);
     //
     // btnMemberCard_Reprint
     //
     this.btnMemberCard_Reprint.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnMemberCard_Reprint.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMemberCard_Reprint.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnMemberCard_Reprint.Appearance.Options.UseBackColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseFont = true;
     this.btnMemberCard_Reprint.Appearance.Options.UseForeColor = true;
     this.btnMemberCard_Reprint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Reprint.Enabled = false;
     this.btnMemberCard_Reprint.Location = new System.Drawing.Point(461, 37);
     this.btnMemberCard_Reprint.Name = "btnMemberCard_Reprint";
     this.btnMemberCard_Reprint.Size = new System.Drawing.Size(168, 23);
     this.btnMemberCard_Reprint.TabIndex = 119;
     this.btnMemberCard_Reprint.Text = "Reprint Member Card";
     this.btnMemberCard_Reprint.Click += new System.EventHandler(this.btnMemberCard_Reprint_Click);
     //
     // btnMemberCard_Print
     //
     this.btnMemberCard_Print.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnMemberCard_Print.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMemberCard_Print.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnMemberCard_Print.Appearance.Options.UseBackColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseBorderColor = true;
     this.btnMemberCard_Print.Appearance.Options.UseFont = true;
     this.btnMemberCard_Print.Appearance.Options.UseForeColor = true;
     this.btnMemberCard_Print.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnMemberCard_Print.Enabled = false;
     this.btnMemberCard_Print.Location = new System.Drawing.Point(298, 37);
     this.btnMemberCard_Print.Name = "btnMemberCard_Print";
     this.btnMemberCard_Print.Size = new System.Drawing.Size(153, 23);
     this.btnMemberCard_Print.TabIndex = 118;
     this.btnMemberCard_Print.Text = "Print Member Card";
     this.btnMemberCard_Print.Click += new System.EventHandler(this.btnMemberCard_Print_Click);
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.chkNoPhoto);
     this.groupControl1.Controls.Add(this.btnCancelCard);
     this.groupControl1.Controls.Add(this.grpMemberCardBelow);
     this.groupControl1.Controls.Add(this.btnMemberCard_Reprint);
     this.groupControl1.Controls.Add(this.mcard_lblNStatusID);
     this.groupControl1.Controls.Add(this.cmbMemberCard);
     this.groupControl1.Controls.Add(this.btnMemberCard_Print);
     this.groupControl1.Controls.Add(this.GridMemberCard);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(984, 541);
     this.groupControl1.TabIndex = 123;
     this.groupControl1.Text = "Member Card";
     //
     // chkNoPhoto
     //
     this.chkNoPhoto.AutoSize = true;
     this.chkNoPhoto.Location = new System.Drawing.Point(754, 37);
     this.chkNoPhoto.Name = "chkNoPhoto";
     this.chkNoPhoto.Size = new System.Drawing.Size(201, 21);
     this.chkNoPhoto.TabIndex = 125;
     this.chkNoPhoto.Text = "Included No Photo Member";
     this.chkNoPhoto.UseVisualStyleBackColor = true;
     this.chkNoPhoto.CheckedChanged += new System.EventHandler(this.chkNoPhoto_CheckedChanged);
     //
     // btnCancelCard
     //
     this.btnCancelCard.Appearance.BackColor = System.Drawing.Color.LightGray;
     this.btnCancelCard.Appearance.BorderColor = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancelCard.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnCancelCard.Appearance.Options.UseBackColor = true;
     this.btnCancelCard.Appearance.Options.UseBorderColor = true;
     this.btnCancelCard.Appearance.Options.UseFont = true;
     this.btnCancelCard.Appearance.Options.UseForeColor = true;
     this.btnCancelCard.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnCancelCard.Location = new System.Drawing.Point(653, 37);
     this.btnCancelCard.Name = "btnCancelCard";
     this.btnCancelCard.Size = new System.Drawing.Size(86, 23);
     this.btnCancelCard.TabIndex = 124;
     this.btnCancelCard.Text = "Cancel";
     this.btnCancelCard.Click += new System.EventHandler(this.btnCancelCard_Click);
     //
     // grpMemberCardBelow
     //
     this.grpMemberCardBelow.Appearance.BackColor = System.Drawing.Color.White;
     this.grpMemberCardBelow.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.grpMemberCardBelow.Appearance.Options.UseBackColor = true;
     this.grpMemberCardBelow.Controls.Add(this.gcTransferMember);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberName);
     this.grpMemberCardBelow.Controls.Add(this.txtMemberID);
     this.grpMemberCardBelow.Controls.Add(this.label2);
     this.grpMemberCardBelow.Controls.Add(this.label1);
     this.grpMemberCardBelow.Location = new System.Drawing.Point(19, 332);
     this.grpMemberCardBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMemberCardBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMemberCardBelow.Name = "grpMemberCardBelow";
     this.grpMemberCardBelow.Size = new System.Drawing.Size(1123, 259);
     this.grpMemberCardBelow.TabIndex = 123;
     this.grpMemberCardBelow.Text = "In Transit Member Card";
     //
     // gcTransferMember
     //
     this.gcTransferMember.Dock = System.Windows.Forms.DockStyle.Left;
     this.gcTransferMember.Location = new System.Drawing.Point(2, 21);
     this.gcTransferMember.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.gcTransferMember.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gcTransferMember.MainView = this.gvTransferMember;
     this.gcTransferMember.Name = "gcTransferMember";
     this.gcTransferMember.Size = new System.Drawing.Size(478, 236);
     this.gcTransferMember.TabIndex = 6;
     this.gcTransferMember.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvTransferMember});
     //
     // gvTransferMember
     //
     this.gvTransferMember.GridControl = this.gcTransferMember;
     this.gvTransferMember.Name = "gvTransferMember";
     this.gvTransferMember.OptionsBehavior.Editable = false;
     this.gvTransferMember.OptionsCustomization.AllowColumnMoving = false;
     this.gvTransferMember.OptionsCustomization.AllowFilter = false;
     this.gvTransferMember.OptionsCustomization.AllowSort = false;
     this.gvTransferMember.OptionsView.ShowGroupPanel = false;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Enabled = false;
     this.txtMemberName.Location = new System.Drawing.Point(643, 166);
     this.txtMemberName.Name = "txtMemberName";
     this.txtMemberName.Size = new System.Drawing.Size(269, 22);
     this.txtMemberName.TabIndex = 5;
     //
     // txtMemberID
     //
     this.txtMemberID.EditValue = "";
     this.txtMemberID.Enabled = false;
     this.txtMemberID.Location = new System.Drawing.Point(643, 111);
     this.txtMemberID.Name = "txtMemberID";
     this.txtMemberID.Properties.Appearance.BackColor = System.Drawing.Color.LightBlue;
     this.txtMemberID.Properties.Appearance.Options.UseBackColor = true;
     this.txtMemberID.Size = new System.Drawing.Size(211, 22);
     this.txtMemberID.TabIndex = 4;
     this.txtMemberID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMemberID_KeyPress);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(518, 166);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 27);
     this.label2.TabIndex = 3;
     this.label2.Text = "Member Name";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(518, 111);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 26);
     this.label1.TabIndex = 2;
     this.label1.Text = "Member ID";
     //
     // frmMemberCard
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(984, 541);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmMemberCard";
     this.Text = "Member Card";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmMemberCard_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbMemberCard.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMemberCardBelow)).EndInit();
     this.grpMemberCardBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTransferMember)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberID.Properties)).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.qry09BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteWarasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonNameR = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonNID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.LSMSTBLDofatSarf = new DevExpress.Data.Linq.LinqServerModeSource();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.LUETBLDofatSarf = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarf1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.qry09TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.Qry09TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.qry09BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).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.qry09BindingSource;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     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});
     //
     // qry09BindingSource
     //
     this.qry09BindingSource.DataMember = "Qry09";
     this.qry09BindingSource.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.colpersonName,
     this.colMMashatName,
     this.colSyndicateWarasa,
     this.colSubCommitteWarasa,
     this.colSyndicateM,
     this.colSubCommitteM,
     this.colpersonNameR,
     this.colpersonNID,
     this.colsarfnumber,
     this.colyasref,
     this.coldatein,
     this.colRealName,
     this.colPersonId,
     this.colMMashatId});
     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;
     //
     // 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 = 0;
     //
     // 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 = 4;
     //
     // colSyndicateWarasa
     //
     this.colSyndicateWarasa.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateWarasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateWarasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateWarasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateWarasa.Caption = "فرعية الوريث";
     this.colSyndicateWarasa.FieldName = "SyndicateW";
     this.colSyndicateWarasa.Name = "colSyndicateWarasa";
     this.colSyndicateWarasa.Visible = true;
     this.colSyndicateWarasa.VisibleIndex = 2;
     this.colSyndicateWarasa.Width = 77;
     //
     // colSubCommitteWarasa
     //
     this.colSubCommitteWarasa.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteWarasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteWarasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteWarasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteWarasa.Caption = "لجنة الوريث";
     this.colSubCommitteWarasa.FieldName = "SubCommitteW";
     this.colSubCommitteWarasa.Name = "colSubCommitteWarasa";
     this.colSubCommitteWarasa.Visible = true;
     this.colSubCommitteWarasa.VisibleIndex = 3;
     //
     // colSyndicateM
     //
     this.colSyndicateM.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateM.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateM.Caption = "فرعية العضو";
     this.colSyndicateM.FieldName = "SyndicateM";
     this.colSyndicateM.Name = "colSyndicateM";
     this.colSyndicateM.Visible = true;
     this.colSyndicateM.VisibleIndex = 5;
     //
     // colSubCommitteM
     //
     this.colSubCommitteM.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteM.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteM.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteM.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteM.Caption = "لجنة العضو";
     this.colSubCommitteM.FieldName = "SubCommitteM";
     this.colSubCommitteM.Name = "colSubCommitteM";
     this.colSubCommitteM.Visible = true;
     this.colSubCommitteM.VisibleIndex = 6;
     //
     // colpersonNameR
     //
     this.colpersonNameR.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonNameR.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNameR.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonNameR.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNameR.Caption = "اسم المسئول";
     this.colpersonNameR.FieldName = "personNameR";
     this.colpersonNameR.Name = "colpersonNameR";
     this.colpersonNameR.Visible = true;
     this.colpersonNameR.VisibleIndex = 1;
     this.colpersonNameR.Width = 92;
     //
     // colpersonNID
     //
     this.colpersonNID.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonNID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNID.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonNID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonNID.Caption = "الرقم القومي";
     this.colpersonNID.FieldName = "personNID";
     this.colpersonNID.Name = "colpersonNID";
     this.colpersonNID.Visible = true;
     this.colpersonNID.VisibleIndex = 9;
     this.colpersonNID.Width = 80;
     //
     // 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 = 7;
     //
     // colyasref
     //
     this.colyasref.AppearanceCell.Options.UseTextOptions = true;
     this.colyasref.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.AppearanceHeader.Options.UseTextOptions = true;
     this.colyasref.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.Caption = "يصرف";
     this.colyasref.FieldName = "yasref";
     this.colyasref.Name = "colyasref";
     this.colyasref.Visible = true;
     this.colyasref.VisibleIndex = 8;
     this.colyasref.Width = 46;
     //
     // 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.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 11;
     //
     // colRealName
     //
     this.colRealName.AppearanceCell.Options.UseTextOptions = true;
     this.colRealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colRealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.Caption = "مدخل البيان";
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 10;
     //
     // 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 = 12;
     //
     // 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 = 13;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // 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()});
     //
     // LSMSTBLDofatSarf
     //
     this.LSMSTBLDofatSarf.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSTBLDofatSarf.KeyExpression = "[DofatSarfId]";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.LUETBLDofatSarf);
     this.panelControl1.Controls.Add(this.labelControl1);
     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.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.panelControl1.Size = new System.Drawing.Size(734, 47);
     this.panelControl1.TabIndex = 3;
     //
     // LUETBLDofatSarf
     //
     this.LUETBLDofatSarf.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.LUETBLDofatSarf.Location = new System.Drawing.Point(426, 15);
     this.LUETBLDofatSarf.Name = "LUETBLDofatSarf";
     this.LUETBLDofatSarf.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.LUETBLDofatSarf.Properties.Appearance.Options.UseFont = true;
     this.LUETBLDofatSarf.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUETBLDofatSarf.Properties.DataSource = this.LSMSTBLDofatSarf;
     this.LUETBLDofatSarf.Properties.DisplayMember = "DofatSarf";
     this.LUETBLDofatSarf.Properties.NullText = "";
     this.LUETBLDofatSarf.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.LUETBLDofatSarf.Properties.ValueMember = "DofatSarfId";
     this.LUETBLDofatSarf.Properties.View = this.gridLookUpEdit1View;
     this.LUETBLDofatSarf.Size = new System.Drawing.Size(249, 22);
     this.LUETBLDofatSarf.TabIndex = 3;
     this.LUETBLDofatSarf.EditValueChanged += new System.EventHandler(this.LUETBLDofatSarf_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarf1});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colDofatSarf1
     //
     this.colDofatSarf1.Caption = "الدفعة";
     this.colDofatSarf1.FieldName = "DofatSarf";
     this.colDofatSarf1.Name = "colDofatSarf1";
     this.colDofatSarf1.Visible = true;
     this.colDofatSarf1.VisibleIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.labelControl1.Location = new System.Drawing.Point(681, 20);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(41, 13);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "الدفعــــة";
     //
     // 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(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 1;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "الدفعـــــــة";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 0;
     //
     // qry09TableAdapter
     //
     this.qry09TableAdapter.ClearBeforeFill = true;
     //
     // Qry09Frm
     //
     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 = "Qry09Frm";
     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.qry09BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUETBLDofatSarf.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDivideRoom));
     this.gridRoom = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoom = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRoomStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.checkRoomStatus = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.gridBillProduct = new DevExpress.XtraGrid.GridControl();
     this.gridViewBillProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colIDChitietHDXuat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBillNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTransfer = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colBillReduce = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colGo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit9 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.deleteChitietHD = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridTransferedProductControlNew = new DevExpress.XtraGrid.GridControl();
     this.gridViewTransferedProductNew = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTransferUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colGoUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit10 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gcOldRoomproduct = new DevExpress.XtraEditors.GroupControl();
     this.gcNewRoomProduct = new DevExpress.XtraEditors.GroupControl();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.gridRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkRoomStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBillProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBillProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deleteChitietHD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTransferedProductControlNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTransferedProductNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcOldRoomproduct)).BeginInit();
     this.gcOldRoomproduct.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcNewRoomProduct)).BeginInit();
     this.gcNewRoomProduct.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     this.SuspendLayout();
     //
     // gridRoom
     //
     this.gridRoom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridRoom.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
     this.gridRoom.EmbeddedNavigator.Name = "";
     this.gridRoom.Font = new System.Drawing.Font("Tahoma", 12F);
     this.gridRoom.FormsUseDefaultLookAndFeel = false;
     this.gridRoom.Location = new System.Drawing.Point(2, 20);
     this.gridRoom.MainView = this.gridViewRoom;
     this.gridRoom.Margin = new System.Windows.Forms.Padding(4);
     this.gridRoom.Name = "gridRoom";
     this.gridRoom.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemImageEdit1,
     this.checkRoomStatus,
     this.repositoryItemImageEdit2,
     this.repositoryItemPictureEdit1});
     this.gridRoom.Size = new System.Drawing.Size(266, 544);
     this.gridRoom.TabIndex = 4;
     this.gridRoom.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewRoom});
     //
     // gridViewRoom
     //
     this.gridViewRoom.Appearance.FocusedCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.FocusedCell.Options.UseFont = true;
     this.gridViewRoom.Appearance.FocusedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewRoom.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewRoom.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewRoom.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewRoom.Appearance.GroupFooter.Font = new System.Drawing.Font("Tahoma", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Green;
     this.gridViewRoom.Appearance.GroupFooter.Image = ((System.Drawing.Image)(resources.GetObject("gridViewRoom.Appearance.GroupFooter.Image")));
     this.gridViewRoom.Appearance.GroupFooter.Options.UseFont = true;
     this.gridViewRoom.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gridViewRoom.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gridViewRoom.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewRoom.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridViewRoom.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridViewRoom.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridViewRoom.Appearance.SelectedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewRoom.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewRoom.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridViewRoom.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTT,
     this.gridColumn22,
     this.gridColumn3,
     this.colRoomStatus,
     this.gridColumn6,
     this.gridColumn23});
     this.gridViewRoom.GridControl = this.gridRoom;
     this.gridViewRoom.GroupCount = 1;
     this.gridViewRoom.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridViewRoom.GroupFormat = "{0} [#image]{1} {2} ";
     this.gridViewRoom.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TT", this.colRoomStatus, "")});
     this.gridViewRoom.Name = "gridViewRoom";
     this.gridViewRoom.NewItemRowText = "Click vào đây để thêm mới";
     this.gridViewRoom.OptionsMenu.EnableFooterMenu = false;
     this.gridViewRoom.OptionsView.ShowGroupPanel = false;
     this.gridViewRoom.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn22, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewRoom.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewRoom_FocusedRowChanged);
     //
     // colTT
     //
     this.colTT.Caption = "TT";
     this.colTT.FieldName = "TT";
     this.colTT.Name = "colTT";
     //
     // gridColumn22
     //
     this.gridColumn22.FieldName = "TenLoaiPhong";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn3.AppearanceCell.Options.UseFont = true;
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.Caption = "IDPhong";
     this.gridColumn3.FieldName = "IDPhong";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     //
     // colRoomStatus
     //
     this.colRoomStatus.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.colRoomStatus.AppearanceCell.Options.UseFont = true;
     this.colRoomStatus.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.colRoomStatus.AppearanceHeader.Options.UseFont = true;
     this.colRoomStatus.Caption = "Trạng Thái";
     this.colRoomStatus.ColumnEdit = this.checkRoomStatus;
     this.colRoomStatus.FieldName = "Trangthai";
     this.colRoomStatus.Name = "colRoomStatus";
     this.colRoomStatus.OptionsColumn.AllowEdit = false;
     this.colRoomStatus.OptionsColumn.AllowMove = false;
     this.colRoomStatus.OptionsColumn.AllowSize = false;
     this.colRoomStatus.OptionsColumn.FixedWidth = true;
     this.colRoomStatus.OptionsColumn.ReadOnly = true;
     this.colRoomStatus.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colRoomStatus.Visible = true;
     this.colRoomStatus.VisibleIndex = 1;
     this.colRoomStatus.Width = 86;
     //
     // checkRoomStatus
     //
     this.checkRoomStatus.AllowFocused = false;
     this.checkRoomStatus.AutoHeight = false;
     this.checkRoomStatus.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.checkRoomStatus.FullFocusRect = true;
     this.checkRoomStatus.Name = "checkRoomStatus";
     this.checkRoomStatus.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Inactive;
     this.checkRoomStatus.PictureChecked = global::Karaoke.Properties.Resources.Status_user_busy_icon1;
     this.checkRoomStatus.PictureGrayed = global::Karaoke.Properties.Resources.user1;
     this.checkRoomStatus.PictureUnchecked = global::Karaoke.Properties.Resources.blank;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn6.AppearanceCell.Options.UseFont = true;
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.Caption = "Phòng";
     this.gridColumn6.FieldName = "TenPhong";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.FixedWidth = true;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 89;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "IDLoaiPhong";
     this.gridColumn23.FieldName = "IDLoaiPhong";
     this.gridColumn23.Name = "gridColumn23";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit1.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit1.PictureUnchecked = global::Karaoke.Properties.Resources._1325149282_button_ok;
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     //
     // repositoryItemImageEdit2
     //
     this.repositoryItemImageEdit2.AutoHeight = false;
     this.repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit2.Name = "repositoryItemImageEdit2";
     this.repositoryItemImageEdit2.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Appearance.Image = global::Karaoke.Properties.Resources.user;
     this.repositoryItemPictureEdit1.Appearance.Options.UseImage = true;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // gridBillProduct
     //
     this.gridBillProduct.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridBillProduct.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
     this.gridBillProduct.EmbeddedNavigator.Name = "";
     this.gridBillProduct.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridBillProduct.FormsUseDefaultLookAndFeel = false;
     this.gridBillProduct.Location = new System.Drawing.Point(2, 20);
     this.gridBillProduct.MainView = this.gridViewBillProduct;
     this.gridBillProduct.Margin = new System.Windows.Forms.Padding(4);
     this.gridBillProduct.Name = "gridBillProduct";
     this.gridBillProduct.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit4,
     this.deleteChitietHD,
     this.repositoryItemSpinEdit1,
     this.repositoryItemSpinEdit2,
     this.repositoryItemCheckEdit2,
     this.repositoryItemCheckEdit3,
     this.repositoryItemCheckEdit9,
     this.repositoryItemSpinEdit5});
     this.gridBillProduct.Size = new System.Drawing.Size(401, 204);
     this.gridBillProduct.TabIndex = 45;
     this.gridBillProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBillProduct});
     //
     // gridViewBillProduct
     //
     this.gridViewBillProduct.Appearance.FocusedCell.BackColor = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedCell.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewBillProduct.Appearance.FocusedCell.ForeColor = System.Drawing.Color.White;
     this.gridViewBillProduct.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridViewBillProduct.Appearance.FocusedCell.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gridViewBillProduct.Appearance.FocusedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.gridViewBillProduct.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewBillProduct.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewBillProduct.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewBillProduct.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewBillProduct.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewBillProduct.Appearance.Row.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.SelectedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewBillProduct.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewBillProduct.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewBillProduct.Appearance.SelectedRow.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridViewBillProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colIDChitietHDXuat,
     this.gridColumn1,
     this.gridColumn2,
     this.colBillNum,
     this.gridColumn19,
     this.colTransfer,
     this.colBillReduce,
     this.colGo});
     this.gridViewBillProduct.GridControl = this.gridBillProduct;
     this.gridViewBillProduct.Name = "gridViewBillProduct";
     this.gridViewBillProduct.NewItemRowText = "Click vào đây để thêm mới";
     this.gridViewBillProduct.OptionsView.ShowGroupPanel = false;
     this.gridViewBillProduct.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewBillProduct_CellValueChanging);
     //
     // colIDChitietHDXuat
     //
     this.colIDChitietHDXuat.Caption = "gridColumn21";
     this.colIDChitietHDXuat.FieldName = "IDChitietHDxuat";
     this.colIDChitietHDXuat.Name = "colIDChitietHDXuat";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn1.AppearanceCell.Options.UseFont = true;
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.Caption = "IDSanpham";
     this.gridColumn1.FieldName = "IDSanpham";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn2.AppearanceCell.Options.UseFont = true;
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.Caption = "Sản phẩm";
     this.gridColumn2.FieldName = "TenSanPham";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 90;
     //
     // colBillNum
     //
     this.colBillNum.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.colBillNum.AppearanceCell.Options.UseFont = true;
     this.colBillNum.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.colBillNum.AppearanceHeader.Options.UseFont = true;
     this.colBillNum.Caption = "Số lượng";
     this.colBillNum.ColumnEdit = this.repositoryItemSpinEdit1;
     this.colBillNum.FieldName = "Soluong";
     this.colBillNum.Name = "colBillNum";
     this.colBillNum.OptionsColumn.ReadOnly = true;
     this.colBillNum.Visible = true;
     this.colBillNum.VisibleIndex = 1;
     this.colBillNum.Width = 82;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "IDGiaXuatSP";
     this.gridColumn19.FieldName = "IDGiaXuatSP";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.ReadOnly = true;
     //
     // colTransfer
     //
     this.colTransfer.Caption = "Chuyển";
     this.colTransfer.ColumnEdit = this.repositoryItemSpinEdit5;
     this.colTransfer.FieldName = "Transfer";
     this.colTransfer.Name = "colTransfer";
     this.colTransfer.Visible = true;
     this.colTransfer.VisibleIndex = 2;
     //
     // repositoryItemSpinEdit5
     //
     this.repositoryItemSpinEdit5.AutoHeight = false;
     this.repositoryItemSpinEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit5.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit5.Name = "repositoryItemSpinEdit5";
     //
     // colBillReduce
     //
     this.colBillReduce.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.colBillReduce.AppearanceCell.Options.UseFont = true;
     this.colBillReduce.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.colBillReduce.AppearanceHeader.Options.UseFont = true;
     this.colBillReduce.Caption = "Giảm";
     this.colBillReduce.ColumnEdit = this.repositoryItemSpinEdit2;
     this.colBillReduce.DisplayFormat.FormatString = "###,###,###";
     this.colBillReduce.FieldName = "Giam";
     this.colBillReduce.Name = "colBillReduce";
     this.colBillReduce.Width = 63;
     //
     // repositoryItemSpinEdit2
     //
     this.repositoryItemSpinEdit2.AutoHeight = false;
     this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit2.DisplayFormat.FormatString = "###,###";
     this.repositoryItemSpinEdit2.Increment = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit2.IsFloatValue = false;
     this.repositoryItemSpinEdit2.Mask.EditMask = "N00";
     this.repositoryItemSpinEdit2.MaxValue = new decimal(new int[] {
     100000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
     //
     // colGo
     //
     this.colGo.ColumnEdit = this.repositoryItemCheckEdit9;
     this.colGo.FieldName = "Go";
     this.colGo.Name = "colGo";
     this.colGo.Visible = true;
     this.colGo.VisibleIndex = 3;
     //
     // repositoryItemCheckEdit9
     //
     this.repositoryItemCheckEdit9.AutoHeight = false;
     this.repositoryItemCheckEdit9.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit9.Name = "repositoryItemCheckEdit9";
     this.repositoryItemCheckEdit9.PictureChecked = global::Karaoke.Properties.Resources.Actions_arrow_down_double_icon_small;
     this.repositoryItemCheckEdit9.PictureGrayed = global::Karaoke.Properties.Resources.Actions_arrow_down_double_icon_small;
     this.repositoryItemCheckEdit9.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_arrow_down_double_icon_small;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     this.repositoryItemCheckEdit4.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit4.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit4.PictureUnchecked = global::Karaoke.Properties.Resources._1325149282_button_ok;
     //
     // deleteChitietHD
     //
     this.deleteChitietHD.AutoHeight = false;
     this.deleteChitietHD.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.deleteChitietHD.Name = "deleteChitietHD";
     this.deleteChitietHD.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.deleteChitietHD.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.deleteChitietHD.PictureUnchecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.PictureChecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit3.PictureGrayed = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit3.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     //
     // gridTransferedProductControlNew
     //
     this.gridTransferedProductControlNew.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridTransferedProductControlNew.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
     this.gridTransferedProductControlNew.EmbeddedNavigator.Name = "";
     this.gridTransferedProductControlNew.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridTransferedProductControlNew.FormsUseDefaultLookAndFeel = false;
     this.gridTransferedProductControlNew.Location = new System.Drawing.Point(2, 20);
     this.gridTransferedProductControlNew.MainView = this.gridViewTransferedProductNew;
     this.gridTransferedProductControlNew.Margin = new System.Windows.Forms.Padding(4);
     this.gridTransferedProductControlNew.Name = "gridTransferedProductControlNew";
     this.gridTransferedProductControlNew.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit5,
     this.repositoryItemCheckEdit6,
     this.repositoryItemSpinEdit3,
     this.repositoryItemSpinEdit4,
     this.repositoryItemCheckEdit7,
     this.repositoryItemCheckEdit8,
     this.repositoryItemCheckEdit10,
     this.repositoryItemSpinEdit6});
     this.gridTransferedProductControlNew.Size = new System.Drawing.Size(401, 296);
     this.gridTransferedProductControlNew.TabIndex = 46;
     this.gridTransferedProductControlNew.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewTransferedProductNew});
     //
     // gridViewTransferedProductNew
     //
     this.gridViewTransferedProductNew.Appearance.FocusedCell.BackColor = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewTransferedProductNew.Appearance.FocusedCell.ForeColor = System.Drawing.Color.White;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.gridViewTransferedProductNew.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewTransferedProductNew.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridViewTransferedProductNew.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewTransferedProductNew.Appearance.Row.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewTransferedProductNew.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridViewTransferedProductNew.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.colTransferUp,
     this.gridColumn11,
     this.colGoUp});
     this.gridViewTransferedProductNew.GridControl = this.gridTransferedProductControlNew;
     this.gridViewTransferedProductNew.Name = "gridViewTransferedProductNew";
     this.gridViewTransferedProductNew.NewItemRowText = "Click vào đây để thêm mới";
     this.gridViewTransferedProductNew.OptionsView.ShowGroupPanel = false;
     this.gridViewTransferedProductNew.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewTransferedProductNew_CellValueChanging);
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "gridColumn21";
     this.gridColumn4.FieldName = "IDChitietHDXuat";
     this.gridColumn4.Name = "gridColumn4";
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn5.AppearanceCell.Options.UseFont = true;
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.Caption = "IDSanpham";
     this.gridColumn5.FieldName = "IDSanpham";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn7.AppearanceCell.Options.UseFont = true;
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.Caption = "Sản phẩm";
     this.gridColumn7.FieldName = "TenSanPham";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     this.gridColumn7.Width = 90;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn8.AppearanceCell.Options.UseFont = true;
     this.gridColumn8.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn8.AppearanceHeader.Options.UseFont = true;
     this.gridColumn8.Caption = "Số lượng";
     this.gridColumn8.ColumnEdit = this.repositoryItemSpinEdit3;
     this.gridColumn8.FieldName = "Soluong";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     this.gridColumn8.Width = 82;
     //
     // repositoryItemSpinEdit3
     //
     this.repositoryItemSpinEdit3.AutoHeight = false;
     this.repositoryItemSpinEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit3.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit3.Name = "repositoryItemSpinEdit3";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "IDGiaXuatSP";
     this.gridColumn9.FieldName = "IDGiaXuatSP";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     //
     // colTransferUp
     //
     this.colTransferUp.Caption = "Chuyển";
     this.colTransferUp.ColumnEdit = this.repositoryItemSpinEdit6;
     this.colTransferUp.FieldName = "Transfer";
     this.colTransferUp.Name = "colTransferUp";
     this.colTransferUp.Visible = true;
     this.colTransferUp.VisibleIndex = 2;
     //
     // repositoryItemSpinEdit6
     //
     this.repositoryItemSpinEdit6.AutoHeight = false;
     this.repositoryItemSpinEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit6.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit6.Name = "repositoryItemSpinEdit6";
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn11.AppearanceCell.Options.UseFont = true;
     this.gridColumn11.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn11.AppearanceHeader.Options.UseFont = true;
     this.gridColumn11.Caption = "Giảm";
     this.gridColumn11.ColumnEdit = this.repositoryItemSpinEdit4;
     this.gridColumn11.DisplayFormat.FormatString = "###,###,###";
     this.gridColumn11.FieldName = "Giam";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Width = 63;
     //
     // repositoryItemSpinEdit4
     //
     this.repositoryItemSpinEdit4.AutoHeight = false;
     this.repositoryItemSpinEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit4.DisplayFormat.FormatString = "###,###";
     this.repositoryItemSpinEdit4.Increment = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit4.IsFloatValue = false;
     this.repositoryItemSpinEdit4.Mask.EditMask = "N00";
     this.repositoryItemSpinEdit4.MaxValue = new decimal(new int[] {
     100000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit4.Name = "repositoryItemSpinEdit4";
     //
     // colGoUp
     //
     this.colGoUp.ColumnEdit = this.repositoryItemCheckEdit10;
     this.colGoUp.FieldName = "Go";
     this.colGoUp.Name = "colGoUp";
     this.colGoUp.Visible = true;
     this.colGoUp.VisibleIndex = 3;
     //
     // repositoryItemCheckEdit10
     //
     this.repositoryItemCheckEdit10.AutoHeight = false;
     this.repositoryItemCheckEdit10.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit10.Name = "repositoryItemCheckEdit10";
     this.repositoryItemCheckEdit10.PictureChecked = global::Karaoke.Properties.Resources.Actions_arrow_up_double_icon_small;
     this.repositoryItemCheckEdit10.PictureGrayed = global::Karaoke.Properties.Resources.Actions_arrow_up_double_icon_small;
     this.repositoryItemCheckEdit10.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_arrow_up_double_icon_small;
     //
     // repositoryItemCheckEdit5
     //
     this.repositoryItemCheckEdit5.AutoHeight = false;
     this.repositoryItemCheckEdit5.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
     this.repositoryItemCheckEdit5.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit5.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit5.PictureUnchecked = global::Karaoke.Properties.Resources._1325149282_button_ok;
     //
     // repositoryItemCheckEdit6
     //
     this.repositoryItemCheckEdit6.AutoHeight = false;
     this.repositoryItemCheckEdit6.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
     this.repositoryItemCheckEdit6.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit6.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit6.PictureUnchecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     //
     // repositoryItemCheckEdit7
     //
     this.repositoryItemCheckEdit7.AutoHeight = false;
     this.repositoryItemCheckEdit7.Name = "repositoryItemCheckEdit7";
     //
     // repositoryItemCheckEdit8
     //
     this.repositoryItemCheckEdit8.AutoHeight = false;
     this.repositoryItemCheckEdit8.Name = "repositoryItemCheckEdit8";
     this.repositoryItemCheckEdit8.PictureChecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit8.PictureGrayed = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit8.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     //
     // btnRefresh
     //
     this.btnRefresh.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnRefresh.Appearance.Options.UseFont = true;
     this.btnRefresh.Location = new System.Drawing.Point(73, 24);
     this.btnRefresh.Margin = new System.Windows.Forms.Padding(4);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(100, 30);
     this.btnRefresh.TabIndex = 64;
     this.btnRefresh.Text = "Phục hồi";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnUpdate
     //
     this.btnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnUpdate.Appearance.Options.UseFont = true;
     this.btnUpdate.Location = new System.Drawing.Point(329, 24);
     this.btnUpdate.Margin = new System.Windows.Forms.Padding(4);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(100, 30);
     this.btnUpdate.TabIndex = 65;
     this.btnUpdate.Text = "Đồng ý";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // btnExit
     //
     this.btnExit.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnExit.Appearance.Options.UseFont = true;
     this.btnExit.Location = new System.Drawing.Point(461, 24);
     this.btnExit.Margin = new System.Windows.Forms.Padding(4);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(100, 30);
     this.btnExit.TabIndex = 66;
     this.btnExit.Text = "Thoát";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // groupControl1
     //
     this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl1.Controls.Add(this.groupControl3);
     this.groupControl1.Controls.Add(this.groupControl2);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(683, 588);
     this.groupControl1.TabIndex = 67;
     this.groupControl1.Text = "Bảng chuyển đổi";
     //
     // groupControl2
     //
     this.groupControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl2.Controls.Add(this.gridRoom);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupControl2.Location = new System.Drawing.Point(2, 20);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(270, 566);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text = "Chọn phòng";
     //
     // groupControl3
     //
     this.groupControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl3.Controls.Add(this.gcNewRoomProduct);
     this.groupControl3.Controls.Add(this.gcOldRoomproduct);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl3.Location = new System.Drawing.Point(272, 20);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(409, 566);
     this.groupControl3.TabIndex = 1;
     this.groupControl3.Text = "Chuyển sản phẩm";
     //
     // gcOldRoomproduct
     //
     this.gcOldRoomproduct.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.gcOldRoomproduct.Controls.Add(this.gridBillProduct);
     this.gcOldRoomproduct.Dock = System.Windows.Forms.DockStyle.Top;
     this.gcOldRoomproduct.Location = new System.Drawing.Point(2, 20);
     this.gcOldRoomproduct.Name = "gcOldRoomproduct";
     this.gcOldRoomproduct.Size = new System.Drawing.Size(405, 226);
     this.gcOldRoomproduct.TabIndex = 0;
     this.gcOldRoomproduct.Text = "Sản phẩm phòng cũ";
     //
     // gcNewRoomProduct
     //
     this.gcNewRoomProduct.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.gcNewRoomProduct.Controls.Add(this.gridTransferedProductControlNew);
     this.gcNewRoomProduct.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcNewRoomProduct.Location = new System.Drawing.Point(2, 246);
     this.gcNewRoomProduct.Name = "gcNewRoomProduct";
     this.gcNewRoomProduct.Size = new System.Drawing.Size(405, 318);
     this.gcNewRoomProduct.TabIndex = 1;
     this.gcNewRoomProduct.Text = "Sản phẩm phòng mới";
     //
     // groupControl6
     //
     this.groupControl6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl6.Controls.Add(this.btnRefresh);
     this.groupControl6.Controls.Add(this.btnUpdate);
     this.groupControl6.Controls.Add(this.btnExit);
     this.groupControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl6.Location = new System.Drawing.Point(0, 508);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(683, 80);
     this.groupControl6.TabIndex = 68;
     //
     // frmDivideRoom
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(683, 588);
     this.ControlBox = false;
     this.Controls.Add(this.groupControl6);
     this.Controls.Add(this.groupControl1);
     this.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDivideRoom";
     this.Text = "Chọn phòng và sản phẩm cho tách phòng/hợp phòng";
     this.Load += new System.EventHandler(this.frmDivideRoom_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkRoomStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBillProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBillProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deleteChitietHD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTransferedProductControlNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTransferedProductNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcOldRoomproduct)).EndInit();
     this.gcOldRoomproduct.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcNewRoomProduct)).EndInit();
     this.gcNewRoomProduct.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.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()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode4 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode5 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridViewCDserviceType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridControlCode = new DevExpress.XtraGrid.GridControl();
     this.gridViewCDReply = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDSyndicate = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemPictureEditslogo = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDSubCommitte = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDAttatech = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditserviceTypeId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDEdara = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn106 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn116 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn117 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemGridLookUpEditEmpID = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView12 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditBigTxt = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridColumn88 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn74 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn89 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn90 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn84 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDserviceType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDReply)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditslogo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDAttatech)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditserviceTypeId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDEdara)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEmpID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditBigTxt)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewCDserviceType
     //
     this.gridViewCDserviceType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn3,
     this.gridColumn4});
     this.gridViewCDserviceType.GridControl = this.gridControlCode;
     this.gridViewCDserviceType.Name = "gridViewCDserviceType";
     this.gridViewCDserviceType.OptionsView.ColumnAutoWidth = 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 = "servicesType";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 172;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // 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.Tag = "save";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     this.repositoryItemButtonEditSave.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     //
     // 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.Tag = "delete";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     this.repositoryItemButtonEditDel.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridControlCode
     //
     this.gridControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlCode.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.Remove.Visible = false;
     gridLevelNode1.LevelTemplate = this.gridViewCDserviceType;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.gridViewCDReply;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.gridViewCDSyndicate;
     gridLevelNode3.RelationName = "Level3";
     gridLevelNode4.LevelTemplate = this.gridViewCDSubCommitte;
     gridLevelNode4.RelationName = "Level4";
     gridLevelNode5.LevelTemplate = this.gridViewCDAttatech;
     gridLevelNode5.RelationName = "Level5";
     this.gridControlCode.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3,
     gridLevelNode4,
     gridLevelNode5});
     this.gridControlCode.Location = new System.Drawing.Point(0, 0);
     this.gridControlCode.MainView = this.gridViewCDEdara;
     this.gridControlCode.Name = "gridControlCode";
     this.gridControlCode.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditn0,
     this.repositoryItemGridLookUpEditEmpID,
     this.repositoryItemMemoExEditBigTxt,
     this.repositoryItemPictureEditslogo,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemGridLookUpEditserviceTypeId});
     this.gridControlCode.Size = new System.Drawing.Size(534, 362);
     this.gridControlCode.TabIndex = 0;
     this.gridControlCode.UseEmbeddedNavigator = true;
     this.gridControlCode.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewCDReply,
     this.gridViewCDSyndicate,
     this.gridViewCDSubCommitte,
     this.gridViewCDAttatech,
     this.gridViewCDEdara,
     this.gridViewCDserviceType});
     this.gridControlCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridViewCDReply
     //
     this.gridViewCDReply.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn5,
     this.gridColumn6});
     this.gridViewCDReply.GridControl = this.gridControlCode;
     this.gridViewCDReply.Name = "gridViewCDReply";
     this.gridViewCDReply.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "Reply";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 207;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn6.Caption = "حذف";
     this.gridColumn6.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 2;
     //
     // gridViewCDSyndicate
     //
     this.gridViewCDSyndicate.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16});
     this.gridViewCDSyndicate.GridControl = this.gridControlCode;
     this.gridViewCDSyndicate.Name = "gridViewCDSyndicate";
     this.gridViewCDSyndicate.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "النقابة الفرعية";
     this.gridColumn7.FieldName = "Syndicate";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn8.Caption = "العنوان";
     this.gridColumn8.FieldName = "saddress";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "تليفون1";
     this.gridColumn9.FieldName = "sphone1";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 2;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.Caption = "تليفون2";
     this.gridColumn10.FieldName = "sphone2";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 3;
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn11.Caption = "موبيل";
     this.gridColumn11.FieldName = "smobil";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 4;
     //
     // gridColumn12
     //
     this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn12.Caption = "فاكس";
     this.gridColumn12.FieldName = "sfax";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 5;
     //
     // gridColumn13
     //
     this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn13.Caption = "بريد اليكتروني";
     this.gridColumn13.FieldName = "smail";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 6;
     //
     // gridColumn14
     //
     this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn14.Caption = "الشعار";
     this.gridColumn14.ColumnEdit = this.repositoryItemPictureEditslogo;
     this.gridColumn14.FieldName = "slogo";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 7;
     //
     // repositoryItemPictureEditslogo
     //
     this.repositoryItemPictureEditslogo.Name = "repositoryItemPictureEditslogo";
     //
     // gridColumn15
     //
     this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn15.Caption = "حفظ";
     this.gridColumn15.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 8;
     //
     // gridColumn16
     //
     this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn16.Caption = "حذف";
     this.gridColumn16.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 9;
     //
     // gridViewCDSubCommitte
     //
     this.gridViewCDSubCommitte.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27});
     this.gridViewCDSubCommitte.GridControl = this.gridControlCode;
     this.gridViewCDSubCommitte.Name = "gridViewCDSubCommitte";
     this.gridViewCDSubCommitte.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn17
     //
     this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.Caption = "اللجنة النقابية";
     this.gridColumn17.FieldName = "SubCommitte";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     //
     // gridColumn18
     //
     this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn18.Caption = "النقابة الفرعية";
     this.gridColumn18.ColumnEdit = this.repositoryItemGridLookUpEditSyndicateId;
     this.gridColumn18.FieldName = "SyndicateId";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 1;
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     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.gridColumn28});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn28
     //
     this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn28.Caption = "النقابة الفرعية";
     this.gridColumn28.FieldName = "Syndicate";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 0;
     //
     // gridColumn19
     //
     this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn19.Caption = "العنوان";
     this.gridColumn19.FieldName = "saddress";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 2;
     //
     // gridColumn20
     //
     this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn20.Caption = "تليفون1";
     this.gridColumn20.FieldName = "sphone1";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 3;
     //
     // gridColumn21
     //
     this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn21.Caption = "تليفون2";
     this.gridColumn21.FieldName = "sphone2";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 4;
     //
     // gridColumn22
     //
     this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn22.Caption = "موبيل";
     this.gridColumn22.FieldName = "smobil";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 5;
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn23.Caption = "فاكس";
     this.gridColumn23.FieldName = "sfax";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 6;
     //
     // gridColumn24
     //
     this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn24.Caption = "بريد اليكتروني";
     this.gridColumn24.FieldName = "smail";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 7;
     //
     // gridColumn25
     //
     this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn25.Caption = "الشعار";
     this.gridColumn25.ColumnEdit = this.repositoryItemPictureEditslogo;
     this.gridColumn25.FieldName = "slogo";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 8;
     //
     // gridColumn26
     //
     this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn26.Caption = "حفظ";
     this.gridColumn26.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 9;
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn27.Caption = "حذف";
     this.gridColumn27.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 10;
     //
     // gridViewCDAttatech
     //
     this.gridViewCDAttatech.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn29,
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn32});
     this.gridViewCDAttatech.GridControl = this.gridControlCode;
     this.gridViewCDAttatech.Name = "gridViewCDAttatech";
     this.gridViewCDAttatech.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn29
     //
     this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn29.Caption = "المرفق";
     this.gridColumn29.FieldName = "Attatech";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 0;
     this.gridColumn29.Width = 137;
     //
     // gridColumn30
     //
     this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn30.Caption = "الخدمة";
     this.gridColumn30.ColumnEdit = this.repositoryItemGridLookUpEditserviceTypeId;
     this.gridColumn30.FieldName = "serviceTypeId";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     this.gridColumn30.Width = 111;
     //
     // repositoryItemGridLookUpEditserviceTypeId
     //
     this.repositoryItemGridLookUpEditserviceTypeId.AutoHeight = false;
     this.repositoryItemGridLookUpEditserviceTypeId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditserviceTypeId.DisplayMember = "servicesType";
     this.repositoryItemGridLookUpEditserviceTypeId.Name = "repositoryItemGridLookUpEditserviceTypeId";
     this.repositoryItemGridLookUpEditserviceTypeId.NullText = "";
     this.repositoryItemGridLookUpEditserviceTypeId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditserviceTypeId.ValueMember = "serviceTypeId";
     this.repositoryItemGridLookUpEditserviceTypeId.View = this.gridView1;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn33
     //
     this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn33.Caption = "اسم الخدمة";
     this.gridColumn33.FieldName = "servicesType";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     //
     // gridColumn31
     //
     this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn31.Caption = "حفظ";
     this.gridColumn31.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 2;
     //
     // gridColumn32
     //
     this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn32.Caption = "حذف";
     this.gridColumn32.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 3;
     //
     // gridViewCDEdara
     //
     this.gridViewCDEdara.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn106,
     this.gridColumn116,
     this.gridColumn117});
     this.gridViewCDEdara.GridControl = this.gridControlCode;
     this.gridViewCDEdara.Name = "gridViewCDEdara";
     this.gridViewCDEdara.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn106
     //
     this.gridColumn106.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn106.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn106.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn106.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn106.Caption = "اسم الادارة";
     this.gridColumn106.FieldName = "Edara";
     this.gridColumn106.Name = "gridColumn106";
     this.gridColumn106.Visible = true;
     this.gridColumn106.VisibleIndex = 0;
     this.gridColumn106.Width = 143;
     //
     // gridColumn116
     //
     this.gridColumn116.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn116.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn116.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn116.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn116.Caption = "حفظ";
     this.gridColumn116.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn116.Name = "gridColumn116";
     this.gridColumn116.Visible = true;
     this.gridColumn116.VisibleIndex = 1;
     this.gridColumn116.Width = 133;
     //
     // gridColumn117
     //
     this.gridColumn117.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn117.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn117.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn117.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn117.Caption = "حذف";
     this.gridColumn117.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn117.Name = "gridColumn117";
     this.gridColumn117.Visible = true;
     this.gridColumn117.VisibleIndex = 2;
     this.gridColumn117.Width = 133;
     //
     // 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";
     //
     // repositoryItemGridLookUpEditEmpID
     //
     this.repositoryItemGridLookUpEditEmpID.AutoHeight = false;
     this.repositoryItemGridLookUpEditEmpID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditEmpID.DisplayMember = "emp_name";
     this.repositoryItemGridLookUpEditEmpID.Name = "repositoryItemGridLookUpEditEmpID";
     this.repositoryItemGridLookUpEditEmpID.NullText = "";
     this.repositoryItemGridLookUpEditEmpID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEmpID.ValueMember = "EmpID";
     this.repositoryItemGridLookUpEditEmpID.View = this.gridView12;
     //
     // gridView12
     //
     this.gridView12.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn75});
     this.gridView12.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView12.Name = "gridView12";
     this.gridView12.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView12.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn75
     //
     this.gridColumn75.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn75.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn75.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn75.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn75.Caption = "الاسم";
     this.gridColumn75.FieldName = "emp_name";
     this.gridColumn75.Name = "gridColumn75";
     this.gridColumn75.Visible = true;
     this.gridColumn75.VisibleIndex = 0;
     //
     // repositoryItemMemoExEditBigTxt
     //
     this.repositoryItemMemoExEditBigTxt.AutoHeight = false;
     this.repositoryItemMemoExEditBigTxt.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditBigTxt.Name = "repositoryItemMemoExEditBigTxt";
     //
     // gridColumn88
     //
     this.gridColumn88.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn88.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn88.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn88.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn88.Caption = "المدرس";
     this.gridColumn88.ColumnEdit = this.repositoryItemGridLookUpEditEmpID;
     this.gridColumn88.FieldName = "EmpID";
     this.gridColumn88.Name = "gridColumn88";
     this.gridColumn88.Visible = true;
     this.gridColumn88.VisibleIndex = 0;
     this.gridColumn88.Width = 239;
     //
     // gridColumn34
     //
     this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn34.Caption = "النصاب الفعلي";
     this.gridColumn34.ColumnEdit = this.repositoryItemCalcEditn0;
     this.gridColumn34.FieldName = "nesabfealy";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 79;
     //
     // gridColumn35
     //
     this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn35.Caption = "الاحتياطي";
     this.gridColumn35.ColumnEdit = this.repositoryItemCalcEditn0;
     this.gridColumn35.FieldName = "nesabedafy";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 2;
     this.gridColumn35.Width = 82;
     //
     // gridColumn74
     //
     this.gridColumn74.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn74.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn74.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn74.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn74.Caption = "ملاحظات";
     this.gridColumn74.ColumnEdit = this.repositoryItemMemoExEditBigTxt;
     this.gridColumn74.FieldName = "rem";
     this.gridColumn74.Name = "gridColumn74";
     this.gridColumn74.Visible = true;
     this.gridColumn74.VisibleIndex = 3;
     //
     // gridColumn89
     //
     this.gridColumn89.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn89.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn89.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn89.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn89.Caption = "حفظ";
     this.gridColumn89.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn89.Name = "gridColumn89";
     this.gridColumn89.Visible = true;
     this.gridColumn89.VisibleIndex = 4;
     //
     // gridColumn90
     //
     this.gridColumn90.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn90.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn90.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn90.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn90.Caption = "حذف";
     this.gridColumn90.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn90.Name = "gridColumn90";
     this.gridColumn90.Visible = true;
     this.gridColumn90.VisibleIndex = 5;
     //
     // gridColumn57
     //
     this.gridColumn57.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn57.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn57.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn57.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn57.Caption = "الاسم بالعربيه";
     this.gridColumn57.FieldName = "alsofof_name";
     this.gridColumn57.Name = "gridColumn57";
     this.gridColumn57.Visible = true;
     this.gridColumn57.VisibleIndex = 0;
     //
     // gridColumn84
     //
     this.gridColumn84.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn84.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn84.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn84.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn84.Caption = "الاسم بالانجليزيه";
     this.gridColumn84.FieldName = "alsofof_name_e";
     this.gridColumn84.Name = "gridColumn84";
     this.gridColumn84.Visible = true;
     this.gridColumn84.VisibleIndex = 1;
     //
     // CodeFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(534, 362);
     this.Controls.Add(this.gridControlCode);
     this.Name = "CodeFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "اكواد";
     this.Load += new System.EventHandler(this.CodeFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDserviceType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDReply)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditslogo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDAttatech)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditserviceTypeId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDEdara)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEmpID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditBigTxt)).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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSCDSyndicate = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSubCommitteId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSCDSubCommitte = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSubCommitteId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     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.LSMS;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEditSyndicateId,
     this.repositoryItemLookUpEditSubCommitteId});
     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});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vQry13);
     this.LSMS.KeyExpression = "MMashatId";
     //
     // 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.colSubCommitte,
     this.colsarfnumber});
     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.ColumnEdit = this.repositoryItemLookUpEditSyndicateId;
     this.colSyndicate.FieldName = "SyndicateId";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     this.colSyndicate.Width = 225;
     //
     // repositoryItemLookUpEditSyndicateId
     //
     this.repositoryItemLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSyndicateId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Syndicate", "الاسم")});
     this.repositoryItemLookUpEditSyndicateId.DataSource = this.LSMSCDSyndicate;
     this.repositoryItemLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemLookUpEditSyndicateId.Name = "repositoryItemLookUpEditSyndicateId";
     this.repositoryItemLookUpEditSyndicateId.NullText = "";
     this.repositoryItemLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditSyndicateId.ValueMember = "SyndicateId";
     //
     // LSMSCDSyndicate
     //
     this.LSMSCDSyndicate.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSyndicate);
     this.LSMSCDSyndicate.KeyExpression = "[SyndicateId]";
     //
     // 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.ColumnEdit = this.repositoryItemLookUpEditSubCommitteId;
     this.colSubCommitte.FieldName = "SubCommitteId";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 1;
     this.colSubCommitte.Width = 166;
     //
     // repositoryItemLookUpEditSubCommitteId
     //
     this.repositoryItemLookUpEditSubCommitteId.AutoHeight = false;
     this.repositoryItemLookUpEditSubCommitteId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSubCommitteId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SubCommitte", "اسم")});
     this.repositoryItemLookUpEditSubCommitteId.DataSource = this.LSMSCDSubCommitte;
     this.repositoryItemLookUpEditSubCommitteId.DisplayMember = "SubCommitte";
     this.repositoryItemLookUpEditSubCommitteId.Name = "repositoryItemLookUpEditSubCommitteId";
     this.repositoryItemLookUpEditSubCommitteId.NullText = "";
     this.repositoryItemLookUpEditSubCommitteId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditSubCommitteId.ValueMember = "SubCommitteId";
     //
     // LSMSCDSubCommitte
     //
     this.LSMSCDSubCommitte.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSubCommitte);
     this.LSMSCDSubCommitte.KeyExpression = "[SubCommitteId]";
     //
     // 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 = 2;
     this.colsarfnumber.Width = 154;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // 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";
     //
     // 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);
     //
     // Qry13Frm
     //
     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 = "Qry13Frm";
     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.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSubCommitteId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #27
0
        //绑定到GridView 数据源。
        private bool createGridView(DevExpress.XtraGrid.GridControl xtraGrid, object dataSource, Dictionary <string, MB.WinBase.Common.ColumnPropertyInfo> colPropertys,
                                    bool imageDockRow, Dictionary <string, MB.WinBase.Common.ColumnEditCfgInfo> editCols, MB.WinBase.Common.GridViewLayoutInfo gridViewLayoutInfo)
        {
            object pictureEdit;

            MB.XWinLib.XtraGrid.GridControlEx grdEx = xtraGrid as MB.XWinLib.XtraGrid.GridControlEx;
            if (grdEx != null)
            {
                grdEx.ShowOptionMenu = true;
                if (grdEx.ContextMenu == null)
                {
                    grdEx.ReSetContextMenu(XtraContextMenuType.SaveGridState | XtraContextMenuType.Export | XtraContextMenuType.ColumnsAllowSort | XtraContextMenuType.Copy | XtraContextMenuType.Chart);
                }
            }
            if (xtraGrid.RepositoryItems.Count > 0)
            {
                if (imageDockRow)
                {
                    pictureEdit = xtraGrid.RepositoryItems[0] as DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit;
                }
                else
                {
                    pictureEdit = xtraGrid.RepositoryItems[0] as DevExpress.XtraEditors.Repository.RepositoryItemImageEdit;
                }
            }
            else
            {
                if (imageDockRow)
                {
                    pictureEdit = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
                    (pictureEdit as DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit).SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
                }
                else
                {
                    pictureEdit = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
                }
                if (imageDockRow)
                {
                    xtraGrid.RepositoryItems.Add(pictureEdit as DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit);
                }
                else
                {
                    xtraGrid.RepositoryItems.Add(pictureEdit as DevExpress.XtraEditors.Repository.RepositoryItemImageEdit);
                }
            }
            DevExpress.XtraGrid.Views.Grid.GridView gridView = xtraGrid.MainView as DevExpress.XtraGrid.Views.Grid.GridView;

            XtraGridViewHelper.Instance.SetGridView(gridView, colPropertys);

            XtraGridViewHelper.Instance.CreateViewColumns(xtraGrid, dataSource, colPropertys, pictureEdit, editCols, gridViewLayoutInfo);


            //if (colPropertys != null) {
            //    XtraGridViewHelper.Instance.SetGroupSummary(gridView, colPropertys);
            //}

            //增加保存Grid UI 操作状态而增加的。
            XtraGridViewHelper.Instance.RestoreXtraGridState(xtraGrid);
            DataView dv = MB.Util.MyConvert.Instance.ToDataView(dataSource, null);

            if (dv != null)
            {
                xtraGrid.DataSource = dv;
            }
            else
            {
                xtraGrid.DataSource = dataSource;
            }
            return(true);
        }
Beispiel #28
0
 private void InitializeComponent()
 {
     this.btnSave                    = new DevExpress.XtraEditors.SimpleButton();
     this.txtStyleName               = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1              = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1              = new DevExpress.XtraEditors.PanelControl();
     this.hlSelectImg                = new DevExpress.XtraEditors.HyperLinkEdit();
     this.picThumbnail               = new DevExpress.XtraEditors.PictureEdit();
     this.labelControl2              = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2              = new DevExpress.XtraEditors.PanelControl();
     this.rgRenderType               = new DevExpress.XtraEditors.RadioGroup();
     this.labelControl3              = new DevExpress.XtraEditors.LabelControl();
     this.layoutViewCard1            = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
     this.layoutViewField3           = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewField1           = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewField2           = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewField4           = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewColumn4          = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.btnCancel                  = new DevExpress.XtraEditors.SimpleButton();
     this.repositoryItemPictureEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.layoutViewColumn3          = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewColumn1          = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutView1                = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.layoutViewColumn2          = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.gridRenderInfo             = new DevExpress.XtraGrid.GridControl();
     this.txtSelRenderInfo           = new DevExpress.XtraEditors.LookUpEdit();
     this.cbxHeightParam             = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl5              = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4              = new DevExpress.XtraEditors.LabelControl();
     this.panelControl3              = new DevExpress.XtraEditors.PanelControl();
     this.cbxHeightMode              = new DevExpress.XtraEditors.ComboBoxEdit();
     this.txtThick                   = new DevExpress.XtraEditors.SpinEdit();
     ((System.ComponentModel.ISupportInitialize)(this.txtStyleName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.hlSelectImg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picThumbnail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rgRenderType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRenderInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSelRenderInfo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxHeightParam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxHeightMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtThick.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(402, 272);
     this.btnSave.Name     = "btnSave";
     this.btnSave.Size     = new System.Drawing.Size(64, 22);
     this.btnSave.TabIndex = 28;
     this.btnSave.Text     = "创建";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // txtStyleName
     //
     this.txtStyleName.Location = new System.Drawing.Point(84, 9);
     this.txtStyleName.Name     = "txtStyleName";
     this.txtStyleName.Size     = new System.Drawing.Size(215, 22);
     this.txtStyleName.TabIndex = 1;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(16, 12);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "风格名称:";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.txtStyleName);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Location = new System.Drawing.Point(14, 9);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(315, 35);
     this.panelControl1.TabIndex = 26;
     //
     // hlSelectImg
     //
     this.hlSelectImg.EditValue = "选择";
     this.hlSelectImg.Location  = new System.Drawing.Point(47, 4);
     this.hlSelectImg.Name      = "hlSelectImg";
     this.hlSelectImg.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.hlSelectImg.Properties.Appearance.Options.UseBackColor = true;
     this.hlSelectImg.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.hlSelectImg.Size      = new System.Drawing.Size(36, 20);
     this.hlSelectImg.TabIndex  = 2;
     this.hlSelectImg.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.hlSelectImg_OpenLink);
     //
     // picThumbnail
     //
     this.picThumbnail.Location            = new System.Drawing.Point(8, 30);
     this.picThumbnail.Name                = "picThumbnail";
     this.picThumbnail.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
     this.picThumbnail.Size                = new System.Drawing.Size(220, 220);
     this.picThumbnail.TabIndex            = 1;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(5, 5);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(36, 14);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text     = "缩略图";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.hlSelectImg);
     this.panelControl2.Controls.Add(this.picThumbnail);
     this.panelControl2.Controls.Add(this.labelControl2);
     this.panelControl2.Location = new System.Drawing.Point(335, 9);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(236, 257);
     this.panelControl2.TabIndex = 27;
     //
     // rgRenderType
     //
     this.rgRenderType.EditValue             = 1;
     this.rgRenderType.Location              = new System.Drawing.Point(75, 39);
     this.rgRenderType.Name                  = "rgRenderType";
     this.rgRenderType.Size                  = new System.Drawing.Size(106, 24);
     this.rgRenderType.TabIndex              = 2;
     this.rgRenderType.SelectedIndexChanged += new System.EventHandler(this.rgRenderType_SelectedIndexChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(16, 44);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 1;
     this.labelControl3.Text     = "渲染方式:";
     //
     // layoutViewCard1
     //
     this.layoutViewCard1.CustomizationFormText       = "layoutViewTemplateCard";
     this.layoutViewCard1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.False;
     this.layoutViewCard1.ExpandButtonLocation        = DevExpress.Utils.GroupElementLocation.AfterText;
     this.layoutViewCard1.GroupBordersVisible         = false;
     this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutViewField3,
         this.layoutViewField1,
         this.layoutViewField2
     });
     this.layoutViewCard1.Name = "layoutViewCard1";
     this.layoutViewCard1.OptionsItemText.TextToControlDistance = 5;
     this.layoutViewCard1.Text = "TemplateCard";
     //
     // layoutViewField3
     //
     this.layoutViewField3.EditorPreferredWidth = 96;
     this.layoutViewField3.Location             = new System.Drawing.Point(0, 18);
     this.layoutViewField3.MaxSize               = new System.Drawing.Size(98, 108);
     this.layoutViewField3.MinSize               = new System.Drawing.Size(98, 108);
     this.layoutViewField3.Name                  = "layoutViewField3";
     this.layoutViewField3.Padding               = new DevExpress.XtraLayout.Utils.Padding(1, 1, 1, 1);
     this.layoutViewField3.Size                  = new System.Drawing.Size(98, 108);
     this.layoutViewField3.SizeConstraintsType   = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField3.TextSize              = new System.Drawing.Size(0, 0);
     this.layoutViewField3.TextToControlDistance = 0;
     this.layoutViewField3.TextVisible           = false;
     //
     // layoutViewField1
     //
     this.layoutViewField1.EditorPreferredWidth = 96;
     this.layoutViewField1.Location             = new System.Drawing.Point(0, 0);
     this.layoutViewField1.Name                  = "layoutViewField1";
     this.layoutViewField1.Padding               = new DevExpress.XtraLayout.Utils.Padding(1, 1, 1, 1);
     this.layoutViewField1.Size                  = new System.Drawing.Size(98, 18);
     this.layoutViewField1.TextLocation          = DevExpress.Utils.Locations.Top;
     this.layoutViewField1.TextSize              = new System.Drawing.Size(0, 0);
     this.layoutViewField1.TextToControlDistance = 0;
     this.layoutViewField1.TextVisible           = false;
     //
     // layoutViewField2
     //
     this.layoutViewField2.EditorPreferredWidth = 96;
     this.layoutViewField2.Location             = new System.Drawing.Point(0, 126);
     this.layoutViewField2.Name     = "layoutViewField2";
     this.layoutViewField2.Padding  = new DevExpress.XtraLayout.Utils.Padding(1, 1, 1, 1);
     this.layoutViewField2.Size     = new System.Drawing.Size(98, 18);
     this.layoutViewField2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutViewField2.TextToControlDistance = 0;
     this.layoutViewField2.TextVisible           = false;
     //
     // layoutViewField4
     //
     this.layoutViewField4.EditorPreferredWidth = 20;
     this.layoutViewField4.Location             = new System.Drawing.Point(0, 0);
     this.layoutViewField4.Name     = "layoutViewField4";
     this.layoutViewField4.Padding  = new DevExpress.XtraLayout.Utils.Padding(1, 1, 1, 1);
     this.layoutViewField4.Size     = new System.Drawing.Size(99, 126);
     this.layoutViewField4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutViewField4.TextToControlDistance = 0;
     this.layoutViewField4.TextVisible           = false;
     //
     // layoutViewColumn4
     //
     this.layoutViewColumn4.Caption         = "对象信息";
     this.layoutViewColumn4.FieldName       = "Info";
     this.layoutViewColumn4.LayoutViewField = this.layoutViewField4;
     this.layoutViewColumn4.Name            = "layoutViewColumn4";
     this.layoutViewColumn4.UnboundType     = DevExpress.Data.UnboundColumnType.String;
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location     = new System.Drawing.Point(499, 272);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(64, 22);
     this.btnCancel.TabIndex     = 29;
     this.btnCancel.Text         = "取消";
     this.btnCancel.Click       += new System.EventHandler(this.btnCancel_Click);
     //
     // repositoryItemPictureEdit3
     //
     this.repositoryItemPictureEdit3.Name     = "repositoryItemPictureEdit3";
     this.repositoryItemPictureEdit3.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
     //
     // layoutViewColumn3
     //
     this.layoutViewColumn3.Caption         = "缩略图";
     this.layoutViewColumn3.ColumnEdit      = this.repositoryItemPictureEdit3;
     this.layoutViewColumn3.FieldName       = "Thumbnail";
     this.layoutViewColumn3.LayoutViewField = this.layoutViewField3;
     this.layoutViewColumn3.Name            = "layoutViewColumn3";
     //
     // layoutViewColumn1
     //
     this.layoutViewColumn1.Caption         = "名称";
     this.layoutViewColumn1.FieldName       = "Name";
     this.layoutViewColumn1.LayoutViewField = this.layoutViewField1;
     this.layoutViewColumn1.Name            = "layoutViewColumn1";
     //
     // layoutView1
     //
     this.layoutView1.Appearance.CardCaption.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutView1.Appearance.CardCaption.Options.UseFont = true;
     this.layoutView1.CardMinSize      = new System.Drawing.Size(100, 124);
     this.layoutView1.CardVertInterval = 1;
     this.layoutView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
         this.layoutViewColumn1,
         this.layoutViewColumn3,
         this.layoutViewColumn2,
         this.layoutViewColumn4
     });
     this.layoutView1.GridControl = this.gridRenderInfo;
     this.layoutView1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutViewField4
     });
     this.layoutView1.Name = "layoutView1";
     this.layoutView1.OptionsBehavior.Editable                       = false;
     this.layoutView1.OptionsCustomization.AllowFilter               = false;
     this.layoutView1.OptionsCustomization.AllowSort                 = false;
     this.layoutView1.OptionsCustomization.ShowGroupLayout           = false;
     this.layoutView1.OptionsMultiRecordMode.StretchCardToViewHeight = true;
     this.layoutView1.OptionsMultiRecordMode.StretchCardToViewWidth  = true;
     this.layoutView1.OptionsView.ShowCardBorderIfCaptionHidden      = false;
     this.layoutView1.OptionsView.ShowCardCaption                    = false;
     this.layoutView1.OptionsView.ShowCardExpandButton               = false;
     this.layoutView1.OptionsView.ShowCardLines                      = false;
     this.layoutView1.OptionsView.ShowHeaderPanel                    = false;
     this.layoutView1.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.Row;
     this.layoutView1.TemplateCard         = this.layoutViewCard1;
     this.layoutView1.Click += new System.EventHandler(this.layoutView1_Click);
     //
     // layoutViewColumn2
     //
     this.layoutViewColumn2.Caption         = "备注";
     this.layoutViewColumn2.FieldName       = "Comment";
     this.layoutViewColumn2.LayoutViewField = this.layoutViewField2;
     this.layoutViewColumn2.Name            = "layoutViewColumn2";
     //
     // gridRenderInfo
     //
     this.gridRenderInfo.Cursor   = System.Windows.Forms.Cursors.Default;
     this.gridRenderInfo.Location = new System.Drawing.Point(8, 75);
     this.gridRenderInfo.MainView = this.layoutView1;
     this.gridRenderInfo.Name     = "gridRenderInfo";
     this.gridRenderInfo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemPictureEdit3
     });
     this.gridRenderInfo.ShowOnlyPredefinedDetails = true;
     this.gridRenderInfo.Size     = new System.Drawing.Size(300, 134);
     this.gridRenderInfo.TabIndex = 7;
     this.gridRenderInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.layoutView1
     });
     //
     // txtSelRenderInfo
     //
     this.txtSelRenderInfo.EditValue = "";
     this.txtSelRenderInfo.Location  = new System.Drawing.Point(75, 147);
     this.txtSelRenderInfo.Name      = "txtSelRenderInfo";
     this.txtSelRenderInfo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.txtSelRenderInfo.Properties.NullText      = "请选择颜色";
     this.txtSelRenderInfo.Properties.ShowHeader    = false;
     this.txtSelRenderInfo.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.txtSelRenderInfo.Size              = new System.Drawing.Size(80, 22);
     this.txtSelRenderInfo.TabIndex          = 26;
     this.txtSelRenderInfo.Visible           = false;
     this.txtSelRenderInfo.EditValueChanged += new System.EventHandler(this.txtSelRenderInfo_EditValueChanged);
     this.txtSelRenderInfo.Leave            += new System.EventHandler(this.txtSelRenderInfo_Leave);
     //
     // cbxHeightParam
     //
     this.cbxHeightParam.EditValue = "";
     this.cbxHeightParam.Location  = new System.Drawing.Point(75, 11);
     this.cbxHeightParam.Name      = "cbxHeightParam";
     this.cbxHeightParam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbxHeightParam.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbxHeightParam.Size     = new System.Drawing.Size(138, 22);
     this.cbxHeightParam.TabIndex = 12;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(16, 17);
     this.labelControl5.Name     = "labelControl5";
     this.labelControl5.Size     = new System.Drawing.Size(60, 14);
     this.labelControl5.TabIndex = 11;
     this.labelControl5.Text     = "高程选项:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(187, 44);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(52, 14);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text     = "管壁厚度:";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.txtSelRenderInfo);
     this.panelControl3.Controls.Add(this.cbxHeightParam);
     this.panelControl3.Controls.Add(this.labelControl5);
     this.panelControl3.Controls.Add(this.labelControl4);
     this.panelControl3.Controls.Add(this.gridRenderInfo);
     this.panelControl3.Controls.Add(this.rgRenderType);
     this.panelControl3.Controls.Add(this.labelControl3);
     this.panelControl3.Controls.Add(this.cbxHeightMode);
     this.panelControl3.Controls.Add(this.txtThick);
     this.panelControl3.Location = new System.Drawing.Point(14, 50);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(315, 216);
     this.panelControl3.TabIndex = 30;
     //
     // cbxHeightMode
     //
     this.cbxHeightMode.EditValue = "";
     this.cbxHeightMode.Location  = new System.Drawing.Point(219, 11);
     this.cbxHeightMode.Name      = "cbxHeightMode";
     this.cbxHeightMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbxHeightMode.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.cbxHeightMode.Size     = new System.Drawing.Size(80, 22);
     this.cbxHeightMode.TabIndex = 10;
     //
     // txtThick
     //
     this.txtThick.EditValue = new decimal(new int[] {
         1,
         0,
         0,
         131072
     });
     this.txtThick.Location = new System.Drawing.Point(245, 42);
     this.txtThick.Name     = "txtThick";
     this.txtThick.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.txtThick.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.txtThick.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.txtThick.Size     = new System.Drawing.Size(54, 22);
     this.txtThick.TabIndex = 5;
     //
     // FrmPipeLineStyle
     //
     this.AcceptButton = this.btnSave;
     this.CancelButton = this.btnCancel;
     this.ClientSize   = new System.Drawing.Size(583, 304);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.panelControl3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "FrmPipeLineStyle";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "创建—管线风格";
     this.Load           += new System.EventHandler(this.FrmPipeLineStyle_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtStyleName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.hlSelectImg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picThumbnail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rgRenderType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRenderInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSelRenderInfo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxHeightParam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxHeightMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtThick.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraScheduler.TimeRuler timeRuler1 = new DevExpress.XtraScheduler.TimeRuler();
     DevExpress.XtraScheduler.TimeRuler timeRuler2 = new DevExpress.XtraScheduler.TimeRuler();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMeetingQL));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = 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.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new System.Windows.Forms.PLLabel();
     this.Tuan = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.Ngay = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.Thang = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.labelControl5 = new System.Windows.Forms.PLLabel();
     this.Ngaythuchien = new DevExpress.XtraScheduler.DateNavigator();
     this.schedulerControl = new DevExpress.XtraScheduler.SchedulerControl();
     this.schedulerStorage = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChiTiet = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.ID = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotNgay = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotGioBD = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_2 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotGioKT = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_3 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotNoiDung = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.repNoiDung = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.layoutViewField_layoutViewColumn1_4 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotDiaDiemHop = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.repDiaDiemHop = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.layoutViewField_layoutViewColumn1_5 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
     this.item1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.item2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.repositoryItemButtonEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemButtonEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemMemoExEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.rep_mofile = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.rep_luu_file = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repDiaDiem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotThoiGianBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotThoiGianKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDiaDiem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotNguoiToChuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTinhChat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoaiMeeting = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotKetQua = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.rtxVanBan = new System.Windows.Forms.RichTextBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.cboNguoiToChuc = new ProtocolVN.Framework.Win.PLCombobox();
     this.txtDiaDiem = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.PLLabel();
     this.cboTinhChat = new ProtocolVN.Framework.Win.PLCombobox();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label2 = new System.Windows.Forms.PLLabel();
     this.cboLoai = new ProtocolVN.Framework.Win.PLCombobox();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new System.Windows.Forms.PLLabel();
     this.checkEdit1 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.checkEdit2 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.checkEdit3 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.imageList_layout = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Tuan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Thang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngaythuchien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageChiTiet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNoiDung)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiemHop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.item1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.item2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_mofile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_luu_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiem)).BeginInit();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaDiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tì&m kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemSearch.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điề&u kiện tìm kiếm";
     this.barCheckItemFilter.Checked = true;
     this.barCheckItemFilter.Id = 29;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     this.barButtonItemClose.Id = 28;
     this.barButtonItemClose.Name = "barButtonItemClose";
     this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(943, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 579);
     this.barDockControlBottom.Size = new System.Drawing.Size(943, 0);
     //
     // barDockControlLeft
     //
     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, 555);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(943, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 555);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("b41cff86-da37-41cb-9b0d-062fa10996a9");
     this.dockPanel1.Location = new System.Drawing.Point(0, 24);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanel1.Size = new System.Drawing.Size(200, 555);
     this.dockPanel1.Text = "Tùy chọn";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.panelControl2);
     this.dockPanel1_Container.Controls.Add(this.labelControl5);
     this.dockPanel1_Container.Controls.Add(this.Ngaythuchien);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(194, 527);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.labelControl2);
     this.panelControl2.Controls.Add(this.Tuan);
     this.panelControl2.Controls.Add(this.Ngay);
     this.panelControl2.Controls.Add(this.Thang);
     this.panelControl2.Location = new System.Drawing.Point(8, 196);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(178, 96);
     this.panelControl2.TabIndex = 99;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(5, 5);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(82, 13);
     this.labelControl2.TabIndex = 22;
     this.labelControl2.Text = "Tùy chọn hiển thị";
     this.labelControl2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // Tuan
     //
     this.Tuan.Location = new System.Drawing.Point(18, 49);
     this.Tuan.Name = "Tuan";
     this.Tuan.Properties.Caption = "Theo tuần";
     this.Tuan.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Tuan.Properties.RadioGroupIndex = 1;
     this.Tuan.Size = new System.Drawing.Size(83, 19);
     this.Tuan.TabIndex = 21;
     this.Tuan.TabStop = false;
     this.Tuan.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Tuan.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Tuan.CheckedChanged += new System.EventHandler(this.Tuan_CheckedChanged);
     //
     // Ngay
     //
     this.Ngay.Location = new System.Drawing.Point(18, 24);
     this.Ngay.Name = "Ngay";
     this.Ngay.Properties.Caption = "Theo ngày";
     this.Ngay.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Ngay.Properties.RadioGroupIndex = 1;
     this.Ngay.Size = new System.Drawing.Size(83, 19);
     this.Ngay.TabIndex = 17;
     this.Ngay.TabStop = false;
     this.Ngay.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Ngay.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Ngay.CheckedChanged += new System.EventHandler(this.Ngay_CheckedChanged);
     //
     // Thang
     //
     this.Thang.Location = new System.Drawing.Point(18, 74);
     this.Thang.Name = "Thang";
     this.Thang.Properties.Caption = "Theo tháng";
     this.Thang.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Thang.Properties.RadioGroupIndex = 1;
     this.Thang.Size = new System.Drawing.Size(83, 19);
     this.Thang.TabIndex = 18;
     this.Thang.TabStop = false;
     this.Thang.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Thang.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Thang.CheckedChanged += new System.EventHandler(this.Thang_CheckedChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(13, 3);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(43, 13);
     this.labelControl5.TabIndex = 84;
     this.labelControl5.Text = "Thời gian";
     this.labelControl5.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl5.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // Ngaythuchien
     //
     this.Ngaythuchien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ngaythuchien.HotDate = null;
     this.Ngaythuchien.Location = new System.Drawing.Point(8, 22);
     this.Ngaythuchien.Name = "Ngaythuchien";
     this.Ngaythuchien.SchedulerControl = this.schedulerControl;
     this.Ngaythuchien.Size = new System.Drawing.Size(178, 168);
     this.Ngaythuchien.TabIndex = 82;
     //
     // schedulerControl
     //
     this.schedulerControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.schedulerControl.Location = new System.Drawing.Point(0, 0);
     this.schedulerControl.MenuManager = this.barManager1;
     this.schedulerControl.Name = "schedulerControl";
     this.schedulerControl.OptionsCustomization.AllowAppointmentCopy = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentCreate = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDelete = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDrag = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDragBetweenResources = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentMultiSelect = false;
     this.schedulerControl.OptionsCustomization.AllowAppointmentResize = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowInplaceEditor = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsView.NavigationButtons.NextCaption = "Sự kiện tiếp theo";
     this.schedulerControl.OptionsView.NavigationButtons.PrevCaption = "Sự kiện trước";
     this.schedulerControl.OptionsView.NavigationButtons.Visibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl.Size = new System.Drawing.Size(743, 489);
     this.schedulerControl.Start = new System.DateTime(2009, 2, 14, 0, 0, 0, 0);
     this.schedulerControl.Storage = this.schedulerStorage;
     this.schedulerControl.TabIndex = 12;
     this.schedulerControl.Text = "schedulerControl1";
     this.schedulerControl.Views.DayView.AllDayAreaScrollBarVisible = true;
     this.schedulerControl.Views.DayView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.DayView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.DayView.TimeRulers.Add(timeRuler1);
     this.schedulerControl.Views.DayView.WorkTime.End = System.TimeSpan.Parse("17:00:00");
     this.schedulerControl.Views.DayView.WorkTime.Start = System.TimeSpan.Parse("08:00:00");
     this.schedulerControl.Views.MonthView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.MonthView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WeekView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WeekView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WorkWeekView.TimeRulers.Add(timeRuler2);
     this.schedulerControl.PreparePopupMenu += new DevExpress.XtraScheduler.PreparePopupMenuEventHandler(this.schedulerControl_PreparePopupMenu);
     this.schedulerControl.EditAppointmentFormShowing += new DevExpress.XtraScheduler.AppointmentFormEventHandler(this.schedulerControl_EditAppointmentFormShowing);
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rước";
     this.barButtonItem4.Id = 33;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Enabled = false;
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     this.barButtonItemDuyet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Enabled = false;
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     this.barButtonItemK_Duyet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 90);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.schedulerControl);
     this.splitContainerControl1.Panel1.MinSize = 200;
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.MinSize = 150;
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel1;
     this.splitContainerControl1.Size = new System.Drawing.Size(743, 489);
     this.splitContainerControl1.SplitterPosition = 240;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageChiTiet;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail,
     this.xtraTabPageChiTiet,
     this.xtraTabPage2});
     //
     // xtraTabPageChiTiet
     //
     this.xtraTabPageChiTiet.Controls.Add(this.gridControlDetail);
     this.xtraTabPageChiTiet.Name = "xtraTabPageChiTiet";
     this.xtraTabPageChiTiet.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageChiTiet.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit3,
     this.repositoryItemPictureEdit1,
     this.repositoryItemPictureEdit2,
     this.repositoryItemMemoEdit1,
     this.repDiaDiemHop,
     this.repositoryItemButtonEdit4,
     this.repositoryItemButtonEdit5,
     this.repositoryItemMemoExEdit2,
     this.rep_mofile,
     this.rep_luu_file,
     this.repNoiDung,
     this.repDiaDiem});
     this.gridControlDetail.Size = new System.Drawing.Size(0, 0);
     this.gridControlDetail.TabIndex = 191;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.CardCaptionFormat = "Ngày họp: {3}, từ: {4} - {5}";
     this.gridViewDetail.CardHorzInterval = 13;
     this.gridViewDetail.CardMinSize = new System.Drawing.Size(270, 151);
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
     this.ID,
     this.cotNgay,
     this.cotGioBD,
     this.cotGioKT,
     this.cotNoiDung,
     this.cotDiaDiemHop});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_layoutViewColumn1,
     this.layoutViewField_layoutViewColumn1_1,
     this.layoutViewField_layoutViewColumn1_2,
     this.layoutViewField_layoutViewColumn1_3});
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewDetail.OptionsBehavior.ScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Auto;
     this.gridViewDetail.OptionsCustomization.AllowFilter = false;
     this.gridViewDetail.OptionsCustomization.AllowSort = false;
     this.gridViewDetail.OptionsHeaderPanel.EnableCustomizeButton = false;
     this.gridViewDetail.OptionsItemText.AlignMode = DevExpress.XtraGrid.Views.Layout.FieldTextAlignMode.CustomSize;
     this.gridViewDetail.OptionsItemText.TextToControlDistance = 0;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsView.AllowHotTrackFields = false;
     this.gridViewDetail.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.MultiRow;
     this.gridViewDetail.TemplateCard = this.layoutViewCard1;
     //
     // ID
     //
     this.ID.Caption = "id";
     this.ID.LayoutViewField = this.layoutViewField_layoutViewColumn1;
     this.ID.Name = "ID";
     //
     // layoutViewField_layoutViewColumn1
     //
     this.layoutViewField_layoutViewColumn1.EditorPreferredWidth = 10;
     this.layoutViewField_layoutViewColumn1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1.Name = "layoutViewField_layoutViewColumn1";
     this.layoutViewField_layoutViewColumn1.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1.TextSize = new System.Drawing.Size(97, 13);
     this.layoutViewField_layoutViewColumn1.TextToControlDistance = 5;
     //
     // cotNgay
     //
     this.cotNgay.Caption = "Ngày họp";
     this.cotNgay.LayoutViewField = this.layoutViewField_layoutViewColumn1_1;
     this.cotNgay.Name = "cotNgay";
     this.cotNgay.OptionsColumn.AllowEdit = false;
     this.cotNgay.OptionsColumn.AllowFocus = false;
     this.cotNgay.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_1
     //
     this.layoutViewField_layoutViewColumn1_1.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_1.Name = "layoutViewField_layoutViewColumn1_1";
     this.layoutViewField_layoutViewColumn1_1.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_1.TextSize = new System.Drawing.Size(50, 13);
     this.layoutViewField_layoutViewColumn1_1.TextToControlDistance = 5;
     //
     // cotGioBD
     //
     this.cotGioBD.Caption = "Từ";
     this.cotGioBD.CustomizationCaption = "Từ";
     this.cotGioBD.LayoutViewField = this.layoutViewField_layoutViewColumn1_2;
     this.cotGioBD.Name = "cotGioBD";
     this.cotGioBD.OptionsColumn.AllowEdit = false;
     this.cotGioBD.OptionsColumn.AllowFocus = false;
     this.cotGioBD.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_2
     //
     this.layoutViewField_layoutViewColumn1_2.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_2.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_2.Name = "layoutViewField_layoutViewColumn1_2";
     this.layoutViewField_layoutViewColumn1_2.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_2.TextSize = new System.Drawing.Size(17, 13);
     this.layoutViewField_layoutViewColumn1_2.TextToControlDistance = 5;
     //
     // cotGioKT
     //
     this.cotGioKT.Caption = "đến";
     this.cotGioKT.LayoutViewField = this.layoutViewField_layoutViewColumn1_3;
     this.cotGioKT.Name = "cotGioKT";
     this.cotGioKT.OptionsColumn.AllowEdit = false;
     this.cotGioKT.OptionsColumn.AllowFocus = false;
     this.cotGioKT.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_3
     //
     this.layoutViewField_layoutViewColumn1_3.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_3.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_3.Name = "layoutViewField_layoutViewColumn1_3";
     this.layoutViewField_layoutViewColumn1_3.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_3.TextSize = new System.Drawing.Size(22, 13);
     this.layoutViewField_layoutViewColumn1_3.TextToControlDistance = 5;
     //
     // cotNoiDung
     //
     this.cotNoiDung.ColumnEdit = this.repNoiDung;
     this.cotNoiDung.LayoutViewField = this.layoutViewField_layoutViewColumn1_4;
     this.cotNoiDung.Name = "cotNoiDung";
     this.cotNoiDung.OptionsColumn.ReadOnly = true;
     //
     // repNoiDung
     //
     this.repNoiDung.Name = "repNoiDung";
     //
     // layoutViewField_layoutViewColumn1_4
     //
     this.layoutViewField_layoutViewColumn1_4.EditorPreferredWidth = 260;
     this.layoutViewField_layoutViewColumn1_4.Location = new System.Drawing.Point(0, 17);
     this.layoutViewField_layoutViewColumn1_4.MaxSize = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.MinSize = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.Name = "layoutViewField_layoutViewColumn1_4";
     this.layoutViewField_layoutViewColumn1_4.Size = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField_layoutViewColumn1_4.TextSize = new System.Drawing.Size(0, 13);
     //
     // cotDiaDiemHop
     //
     this.cotDiaDiemHop.ColumnEdit = this.repDiaDiemHop;
     this.cotDiaDiemHop.LayoutViewField = this.layoutViewField_layoutViewColumn1_5;
     this.cotDiaDiemHop.Name = "cotDiaDiemHop";
     this.cotDiaDiemHop.OptionsColumn.ReadOnly = true;
     //
     // repDiaDiemHop
     //
     this.repDiaDiemHop.Name = "repDiaDiemHop";
     //
     // layoutViewField_layoutViewColumn1_5
     //
     this.layoutViewField_layoutViewColumn1_5.EditorPreferredWidth = 260;
     this.layoutViewField_layoutViewColumn1_5.Location = new System.Drawing.Point(0, 79);
     this.layoutViewField_layoutViewColumn1_5.MaxSize = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.MinSize = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.Name = "layoutViewField_layoutViewColumn1_5";
     this.layoutViewField_layoutViewColumn1_5.Size = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField_layoutViewColumn1_5.TextSize = new System.Drawing.Size(0, 13);
     //
     // layoutViewCard1
     //
     this.layoutViewCard1.CustomizationFormText = "layoutViewCard1";
     this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
     this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_layoutViewColumn1_4,
     this.layoutViewField_layoutViewColumn1_5,
     this.item1,
     this.item2});
     this.layoutViewCard1.Name = "layoutViewCard1";
     this.layoutViewCard1.OptionsItemText.TextToControlDistance = 0;
     this.layoutViewCard1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutViewCard1.Text = "TemplateCard";
     //
     // item1
     //
     this.item1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.item1.AppearanceItemCaption.Options.UseFont = true;
     this.item1.CustomizationFormText = "Nội dung:";
     this.item1.Location = new System.Drawing.Point(0, 0);
     this.item1.Name = "item1";
     this.item1.Size = new System.Drawing.Size(264, 17);
     this.item1.Text = "Nội dung:";
     this.item1.TextSize = new System.Drawing.Size(46, 13);
     //
     // item2
     //
     this.item2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.item2.AppearanceItemCaption.Options.UseFont = true;
     this.item2.CustomizationFormText = "Địa điểm:";
     this.item2.Location = new System.Drawing.Point(0, 62);
     this.item2.Name = "item2";
     this.item2.Size = new System.Drawing.Size(264, 17);
     this.item2.Text = "Địa điểm:";
     this.item2.TextSize = new System.Drawing.Size(45, 13);
     //
     // repositoryItemButtonEdit3
     //
     this.repositoryItemButtonEdit3.AutoHeight = false;
     this.repositoryItemButtonEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit3.Name = "repositoryItemButtonEdit3";
     this.repositoryItemButtonEdit3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemButtonEdit5
     //
     this.repositoryItemButtonEdit5.AutoHeight = false;
     this.repositoryItemButtonEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Mở file", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.repositoryItemButtonEdit5.Name = "repositoryItemButtonEdit5";
     this.repositoryItemButtonEdit5.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemMemoExEdit2
     //
     this.repositoryItemMemoExEdit2.AutoHeight = false;
     this.repositoryItemMemoExEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit2.Name = "repositoryItemMemoExEdit2";
     //
     // rep_mofile
     //
     this.rep_mofile.AppearanceFocused.Options.UseImage = true;
     this.rep_mofile.Name = "rep_mofile";
     //
     // rep_luu_file
     //
     this.rep_luu_file.Name = "rep_luu_file";
     //
     // repDiaDiem
     //
     this.repDiaDiem.AutoHeight = false;
     this.repDiaDiem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDiaDiem.Name = "repDiaDiem";
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlMaster);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.PageVisible = false;
     this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageDetail.Text = "Chi tiết ";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlMaster.Size = new System.Drawing.Size(0, 0);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotThoiGianBatDau,
     this.CotThoiGianKetThuc,
     this.CotDiaDiem,
     this.CotNguoiToChuc,
     this.CotTinhChat,
     this.CotLoaiMeeting,
     this.CotKetQua});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     //
     // CotThoiGianBatDau
     //
     this.CotThoiGianBatDau.Caption = "Giờ bắt đầu";
     this.CotThoiGianBatDau.Name = "CotThoiGianBatDau";
     this.CotThoiGianBatDau.OptionsColumn.AllowEdit = false;
     this.CotThoiGianBatDau.OptionsColumn.AllowFocus = false;
     this.CotThoiGianBatDau.Visible = true;
     this.CotThoiGianBatDau.VisibleIndex = 2;
     this.CotThoiGianBatDau.Width = 67;
     //
     // CotThoiGianKetThuc
     //
     this.CotThoiGianKetThuc.Caption = "Giờ kết thúc";
     this.CotThoiGianKetThuc.Name = "CotThoiGianKetThuc";
     this.CotThoiGianKetThuc.OptionsColumn.AllowEdit = false;
     this.CotThoiGianKetThuc.OptionsColumn.AllowFocus = false;
     this.CotThoiGianKetThuc.Visible = true;
     this.CotThoiGianKetThuc.VisibleIndex = 3;
     this.CotThoiGianKetThuc.Width = 69;
     //
     // CotDiaDiem
     //
     this.CotDiaDiem.Caption = "Địa điểm";
     this.CotDiaDiem.Name = "CotDiaDiem";
     this.CotDiaDiem.OptionsColumn.AllowEdit = false;
     this.CotDiaDiem.OptionsColumn.AllowFocus = false;
     this.CotDiaDiem.OptionsColumn.ReadOnly = true;
     this.CotDiaDiem.Visible = true;
     this.CotDiaDiem.VisibleIndex = 0;
     this.CotDiaDiem.Width = 53;
     //
     // CotNguoiToChuc
     //
     this.CotNguoiToChuc.Caption = "Người tổ chức";
     this.CotNguoiToChuc.Name = "CotNguoiToChuc";
     this.CotNguoiToChuc.OptionsColumn.AllowEdit = false;
     this.CotNguoiToChuc.OptionsColumn.AllowFocus = false;
     this.CotNguoiToChuc.Visible = true;
     this.CotNguoiToChuc.VisibleIndex = 1;
     this.CotNguoiToChuc.Width = 79;
     //
     // CotTinhChat
     //
     this.CotTinhChat.Caption = "Tính chất";
     this.CotTinhChat.Name = "CotTinhChat";
     this.CotTinhChat.OptionsColumn.AllowEdit = false;
     this.CotTinhChat.OptionsColumn.AllowFocus = false;
     this.CotTinhChat.Visible = true;
     this.CotTinhChat.VisibleIndex = 4;
     this.CotTinhChat.Width = 56;
     //
     // CotLoaiMeeting
     //
     this.CotLoaiMeeting.Caption = "Loại";
     this.CotLoaiMeeting.Name = "CotLoaiMeeting";
     this.CotLoaiMeeting.OptionsColumn.AllowEdit = false;
     this.CotLoaiMeeting.OptionsColumn.AllowFocus = false;
     this.CotLoaiMeeting.Visible = true;
     this.CotLoaiMeeting.VisibleIndex = 5;
     this.CotLoaiMeeting.Width = 31;
     //
     // CotKetQua
     //
     this.CotKetQua.Caption = "Kết quả";
     this.CotKetQua.Name = "CotKetQua";
     this.CotKetQua.OptionsColumn.AllowEdit = false;
     this.CotKetQua.OptionsColumn.AllowFocus = false;
     this.CotKetQua.OptionsColumn.ReadOnly = true;
     this.CotKetQua.Visible = true;
     this.CotKetQua.VisibleIndex = 6;
     this.CotKetQua.Width = 49;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.rtxVanBan);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.PageVisible = false;
     this.xtraTabPage2.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPage2.Text = "Văn bản họp";
     //
     // rtxVanBan
     //
     this.rtxVanBan.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rtxVanBan.Location = new System.Drawing.Point(0, 0);
     this.rtxVanBan.MaxLength = 200;
     this.rtxVanBan.Name = "rtxVanBan";
     this.rtxVanBan.ReadOnly = true;
     this.rtxVanBan.Size = new System.Drawing.Size(0, 0);
     this.rtxVanBan.TabIndex = 4;
     this.rtxVanBan.Text = "";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.cboNguoiToChuc);
     this.popupControlContainerFilter.Controls.Add(this.txtDiaDiem);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.cboTinhChat);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.cboLoai);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(200, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(743, 66);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // cboNguoiToChuc
     //
     this.cboNguoiToChuc.DataSource = null;
     this.cboNguoiToChuc.DisplayField = null;
     this.cboNguoiToChuc.Location = new System.Drawing.Point(87, 5);
     this.cboNguoiToChuc.Name = "cboNguoiToChuc";
     this.cboNguoiToChuc.Size = new System.Drawing.Size(162, 21);
     this.cboNguoiToChuc.TabIndex = 221;
     this.cboNguoiToChuc.ValueField = null;
     //
     // txtDiaDiem
     //
     this.txtDiaDiem.Location = new System.Drawing.Point(343, 34);
     this.txtDiaDiem.Name = "txtDiaDiem";
     this.txtDiaDiem.Size = new System.Drawing.Size(380, 20);
     this.txtDiaDiem.TabIndex = 220;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(265, 37);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(41, 13);
     this.label4.TabIndex = 10;
     this.label4.Text = "Địa điểm";
     this.label4.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label4.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // cboTinhChat
     //
     this.cboTinhChat.DataSource = null;
     this.cboTinhChat.DisplayField = null;
     this.cboTinhChat.Location = new System.Drawing.Point(87, 32);
     this.cboTinhChat.Name = "cboTinhChat";
     this.cboTinhChat.Size = new System.Drawing.Size(162, 21);
     this.cboTinhChat.TabIndex = 9;
     this.cboTinhChat.ValueField = null;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(9, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 8;
     this.label3.Text = "Tính chất";
     this.label3.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(265, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(65, 13);
     this.label2.TabIndex = 7;
     this.label2.Text = "Loại cuộc họp";
     this.label2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // cboLoai
     //
     this.cboLoai.DataSource = null;
     this.cboLoai.DisplayField = null;
     this.cboLoai.Location = new System.Drawing.Point(343, 5);
     this.cboLoai.Name = "cboLoai";
     this.cboLoai.Size = new System.Drawing.Size(156, 21);
     this.cboLoai.TabIndex = 5;
     this.cboLoai.ValueField = null;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(9, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(67, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Người tổ chức";
     this.label1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(5, 5);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(96, 13);
     this.labelControl1.TabIndex = 22;
     this.labelControl1.Text = "Tùy chọn hiển thị";
     this.labelControl1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(18, 49);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Theo tuần";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Properties.RadioGroupIndex = 1;
     this.checkEdit1.Size = new System.Drawing.Size(83, 19);
     this.checkEdit1.TabIndex = 21;
     this.checkEdit1.TabStop = false;
     this.checkEdit1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit1.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // checkEdit2
     //
     this.checkEdit2.EditValue = true;
     this.checkEdit2.Location = new System.Drawing.Point(18, 24);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Theo ngày";
     this.checkEdit2.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit2.Properties.RadioGroupIndex = 1;
     this.checkEdit2.Size = new System.Drawing.Size(83, 19);
     this.checkEdit2.TabIndex = 17;
     this.checkEdit2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit2.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(18, 74);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Theo tháng";
     this.checkEdit3.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit3.Properties.RadioGroupIndex = 1;
     this.checkEdit3.Size = new System.Drawing.Size(83, 19);
     this.checkEdit3.TabIndex = 18;
     this.checkEdit3.TabStop = false;
     this.checkEdit3.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit3.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // imageList_layout
     //
     this.imageList_layout.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_layout.ImageStream")));
     this.imageList_layout.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList_layout.Images.SetKeyName(0, "pl-xuatkho.png");
     this.imageList_layout.Images.SetKeyName(1, "fwSave.png");
     this.imageList_layout.Images.SetKeyName(2, "Delete.png");
     //
     // frmMeetingQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(943, 579);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmMeetingQL";
     this.Text = "Cuộc họp";
     this.Load += new System.EventHandler(this.frmMeetingQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     this.dockPanel1_Container.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Tuan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Thang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngaythuchien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageChiTiet.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNoiDung)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiemHop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.item1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.item2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_mofile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_luu_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiem)).EndInit();
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaDiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndworkReson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfiledate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMashHala = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashataddres = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatMobil = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWorkeEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKideNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     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.LSMS;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(734, 406);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLMashat);
     this.LSMS.KeyExpression = "MMashatId";
     //
     // 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.colMMashatNId,
     this.colMMashatName,
     this.colsarfnumber,
     this.coldatein,
     this.colyasref,
     this.colRealName,
     this.colSubCommitte,
     this.colSyndicate,
     this.colEndworkReson,
     this.colfiledate,
     this.colMashHala,
     this.colMMashataddres,
     this.colMMashatMobil,
     this.colWorkeEndDate,
     this.colKideNumber,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colMMashatId,
     this.colvisa});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     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;
     //
     // colMMashatNId
     //
     this.colMMashatNId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.Caption = "الرقم القومي";
     this.colMMashatNId.FieldName = "MMashatNId";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 2;
     this.colMMashatNId.Width = 80;
     //
     // 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 = 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.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // 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.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 4;
     //
     // colyasref
     //
     this.colyasref.AppearanceCell.Options.UseTextOptions = true;
     this.colyasref.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.AppearanceHeader.Options.UseTextOptions = true;
     this.colyasref.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.Caption = "يصرف";
     this.colyasref.FieldName = "yasref";
     this.colyasref.Name = "colyasref";
     this.colyasref.Visible = true;
     this.colyasref.VisibleIndex = 5;
     this.colyasref.Width = 42;
     //
     // colRealName
     //
     this.colRealName.AppearanceCell.Options.UseTextOptions = true;
     this.colRealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colRealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.Caption = "مدخل البيان";
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 6;
     //
     // 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 = 7;
     //
     // 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 = 8;
     //
     // colEndworkReson
     //
     this.colEndworkReson.AppearanceCell.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.AppearanceHeader.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.Caption = "سبب نهاية العمل";
     this.colEndworkReson.FieldName = "EndworkReson";
     this.colEndworkReson.Name = "colEndworkReson";
     this.colEndworkReson.Visible = true;
     this.colEndworkReson.VisibleIndex = 9;
     this.colEndworkReson.Width = 98;
     //
     // colfiledate
     //
     this.colfiledate.AppearanceCell.Options.UseTextOptions = true;
     this.colfiledate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.AppearanceHeader.Options.UseTextOptions = true;
     this.colfiledate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.Caption = "تاريخ ورود الملف";
     this.colfiledate.FieldName = "filedate";
     this.colfiledate.Name = "colfiledate";
     this.colfiledate.Visible = true;
     this.colfiledate.VisibleIndex = 10;
     this.colfiledate.Width = 92;
     //
     // colMashHala
     //
     this.colMashHala.AppearanceCell.Options.UseTextOptions = true;
     this.colMashHala.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.AppearanceHeader.Options.UseTextOptions = true;
     this.colMashHala.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.Caption = "الحالة";
     this.colMashHala.FieldName = "MashHala";
     this.colMashHala.Name = "colMashHala";
     this.colMashHala.Visible = true;
     this.colMashHala.VisibleIndex = 11;
     //
     // colMMashataddres
     //
     this.colMMashataddres.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.Caption = "العنوان";
     this.colMMashataddres.FieldName = "MMashataddres";
     this.colMMashataddres.Name = "colMMashataddres";
     this.colMMashataddres.Visible = true;
     this.colMMashataddres.VisibleIndex = 12;
     //
     // colMMashatMobil
     //
     this.colMMashatMobil.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.Caption = "الموبيل";
     this.colMMashatMobil.FieldName = "MMashatMobil";
     this.colMMashatMobil.Name = "colMMashatMobil";
     this.colMMashatMobil.Visible = true;
     this.colMMashatMobil.VisibleIndex = 13;
     //
     // colWorkeEndDate
     //
     this.colWorkeEndDate.AppearanceCell.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.Caption = "تاريخ نهاية العمل";
     this.colWorkeEndDate.FieldName = "WorkeEndDate";
     this.colWorkeEndDate.Name = "colWorkeEndDate";
     this.colWorkeEndDate.Visible = true;
     this.colWorkeEndDate.VisibleIndex = 14;
     this.colWorkeEndDate.Width = 94;
     //
     // colKideNumber
     //
     this.colKideNumber.AppearanceCell.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.Caption = "رقم القيد";
     this.colKideNumber.FieldName = "KideNumber";
     this.colKideNumber.Name = "colKideNumber";
     this.colKideNumber.Visible = true;
     this.colKideNumber.VisibleIndex = 15;
     //
     // 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.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 17;
     //
     // colSubCommitteId
     //
     this.colSubCommitteId.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.Caption = "كود اللجنة";
     this.colSubCommitteId.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 18;
     //
     // 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 = 16;
     //
     // colvisa
     //
     this.colvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.Caption = "فيزا";
     this.colvisa.FieldName = "visa";
     this.colvisa.Name = "colvisa";
     this.colvisa.Visible = true;
     this.colvisa.VisibleIndex = 0;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // 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()});
     //
     // 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.Visible = false;
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // Qry04Frm
     //
     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 = "Qry04Frm";
     this.Text = " الاعضاء";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.QryTblAhteatyFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControl1               = new DevExpress.XtraGrid.GridControl();
     this.layoutView1                = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.layoutViewCard1            = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.AllowDrop = true;
     this.gridControl1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location  = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView  = this.layoutView1;
     this.gridControl1.Name      = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemPictureEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(847, 608);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.layoutView1
     });
     this.gridControl1.DragOver     += new System.Windows.Forms.DragEventHandler(this.gridControl1_DragOver);
     this.gridControl1.DragDrop     += new System.Windows.Forms.DragEventHandler(this.gridControl1_DragDrop);
     this.gridControl1.GiveFeedback += new System.Windows.Forms.GiveFeedbackEventHandler(this.gridControl1_GiveFeedback);
     //
     // layoutView1
     //
     this.layoutView1.GridControl = this.gridControl1;
     this.layoutView1.Name        = "layoutView1";
     this.layoutView1.OptionsBehavior.Editable = false;
     this.layoutView1.TemplateCard             = this.layoutViewCard1;
     this.layoutView1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.layoutView1_MouseMove);
     this.layoutView1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.layoutView1_MouseDown);
     //
     // layoutViewCard1
     //
     this.layoutViewCard1.CustomizationFormText = "layoutViewCard1";
     this.layoutViewCard1.ExpandButtonLocation  = DevExpress.Utils.GroupElementLocation.AfterText;
     this.layoutViewCard1.Name = "layoutViewCard1";
     this.layoutViewCard1.Text = "layoutViewCard1";
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(847, 608);
     this.Controls.Add(this.gridControl1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     this.ResumeLayout(false);
 }