Exemplo n.º 1
0
        public ExchangeRate GetLatest(DevExpress.Xpo.Session session, Guid currencyId)
        {
            ExchangeRate ret = null;

            try
            {
                //Get currency
                NAS.DAL.Accounting.Currency.Currency currency =
                    session.GetObjectByKey <NAS.DAL.Accounting.Currency.Currency>(currencyId);

                var activeExchangeRates =
                    currency.exchangeRates.Where(r => r.Status == Utility.Constant.STATUS_EXCHANGE_RATE_ACTIVE);

                if (activeExchangeRates == null || activeExchangeRates.Count() == 0)
                {
                    return(null);
                }

                DateTime latestDate = activeExchangeRates.Max(r => r.AffectedDate);

                ret = activeExchangeRates.FirstOrDefault(r => r.AffectedDate.Equals(latestDate));

                return(ret);
            }
            catch (Exception)
            {
                throw;
            }
        }
 public override void TransformTransaction(DevExpress.Xpo.Session session)
 {
     if (IsRelatedStrategy)
     {
         this.fFinancialTransformData = base.TransformTransactionSalesOrManufacturerExpenseDetail(session, this.fFinancialTransactionData, ACCOUNT_CODE);
     }
 }
Exemplo n.º 3
0
        public override void SaveRuleCondition(DevExpress.Xpo.Session session, Guid key,
                                               object list)
        {
            PricePolicyBO bo = new PricePolicyBO();

            bo.updateManufacturerConditionInPolicy(session, key, list as List <DataGrdManufacturerListSelection>);
        }
 public static DevExpress.Xpo.Session GetSession()
 {
     DevExpress.Xpo.Session session = new DevExpress.Xpo.Session();
     session.AutoCreateOption = DevExpress.Xpo.XpoDefault.Session.AutoCreateOption;
     session.ConnectionString = DevExpress.Xpo.XpoDefault.Session.ConnectionString;
     return session;
 }
 public override void LoadTransaction(DevExpress.Xpo.Session session)
 {
     if (IsRelatedStrategy)
     {
         base.LoadTransaction(session, this.fTransformData);
     }
 }
Exemplo n.º 6
0
 public static DevExpress.Xpo.Session GetSession()
 {
     DevExpress.Xpo.Session session = new DevExpress.Xpo.Session();
     session.AutoCreateOption = DevExpress.Xpo.XpoDefault.Session.AutoCreateOption;
     session.ConnectionString = DevExpress.Xpo.XpoDefault.Session.ConnectionString;
     return(session);
 }
 public override void TransformTransaction(DevExpress.Xpo.Session session)
 {
     if (IsRelatedStrategy)
     {
         this.fTransformData = base.TransformTransaction(session, this.fExtractingData, ACCOUNT_CODE);
     }
 }
 public override void ExtractTransaction(DevExpress.Xpo.Session session)
 {
     base.GetIsRelatedStrategy(session);
     if (IsRelatedStrategy)
     {
         this.fFinancialTransactionData = base.ExtractTransaction(session, TransactionId, ACCOUNT_CODE);
     }
 }
Exemplo n.º 9
0
 public override void ExtractTransaction(DevExpress.Xpo.Session session)
 {
     base.GetIsRelatedStrategy(session);
     if (IsRelatedStrategy)
     {
         this.fActualPriceTransaction = base.ExtractTransaction(session, TransactionId, ACCOUNT_CODE);
     }
 }
Exemplo n.º 10
0
 public override void TransformTransaction(DevExpress.Xpo.Session session)
 {
     if (IsRelatedStrategy)
     {
         this.fDetailAfterTransformData
             = base.TransformTransactionFinancialActualPriceDetail(session, this.fActualPriceTransaction, ACCOUNT_CODE);
     }
 }
        private PartialViewResult OrdersCustomBindingCore(GridViewModel viewModel)
        {
            XPDictionary databaseSchema = DatabaseSchemaHelper.GetDefaultDatabaseSchema();

            DevExpress.Xpo.Session session         = XpoHelper.GetNewSession("DefaultConnection", databaseSchema);
            XPClassInfo            classInfo       = session.GetClassInfo("", "Order");
            XpoBindingHandlers     bindingHandlers = new XpoBindingHandlers(session, classInfo);

            viewModel.ProcessCustomBinding(
                bindingHandlers.GetDataRowCount,
                bindingHandlers.GetData,
                bindingHandlers.GetSummaryValues,
                bindingHandlers.GetGroupingInfo,
                bindingHandlers.GetUniqueHeaderFilterValues
                );
            return(PartialView("GridViewPartial", viewModel));
        }
Exemplo n.º 12
0
 void _watcher_Created(object sender, FileSystemEventArgs e)
 {
     if (e.Name.EndsWith(".m4v"))
     {
         //除去后缀.m4v
         int cameraId;
         DateTime timeLocal;
         if (Util.TryParsePath(e.FullPath, out cameraId, out timeLocal))
         {
             using (var session = new DevExpress.Xpo.Session())
             {
                 var dtoVideo = new Video(session);
                 dtoVideo.Path = e.FullPath;
                 dtoVideo.CaptureTime = timeLocal;
                 dtoVideo.CameraId = cameraId;
                 dtoVideo.Save();
             }
         }
     }
 }
Exemplo n.º 13
0
 void _watcher_Created(object sender, FileSystemEventArgs e)
 {
     if (e.Name.EndsWith(".m4v"))
     {
         //除去后缀.m4v
         int      cameraId;
         DateTime timeLocal;
         if (Util.TryParsePath(e.FullPath, out cameraId, out timeLocal))
         {
             using (var session = new DevExpress.Xpo.Session())
             {
                 var dtoVideo = new Video(session);
                 dtoVideo.Path        = e.FullPath;
                 dtoVideo.CaptureTime = timeLocal;
                 dtoVideo.CameraId    = cameraId;
                 dtoVideo.Save();
             }
         }
     }
 }
Exemplo n.º 14
0
 public override void LoadTransaction(DevExpress.Xpo.Session session)
 {
     base.LoadFinancialActualPriceDetail(session, this.fDetailAfterTransformData);
 }
 public abstract void ComboBoxItem_ItemRequestedByValue(
     DevExpress.Xpo.Session session,
     object source,
     DevExpress.Web.ASPxEditors.ListEditItemRequestedByValueEventArgs e);
        public override NAS.DAL.Accounting.Journal.GeneralJournal CreateGeneralJournal(DevExpress.Xpo.Session session, Guid transactionId, Guid accountId, NAS.BO.Accounting.Journal.Side side, double amount, string description, NAS.BO.Accounting.Journal.JounalTypeFlag journalType)
        {
            GeneralJournal generalJournal =
                base.CreateGeneralJournal(session,
                                          transactionId,
                                          accountId,
                                          side,
                                          amount,
                                          description,
                                          journalType);
            //Create CMS object...

            ObjectBO objectBO = new ObjectBO();

            NAS.DAL.CMS.ObjectDocument.Object CMSObject =
                objectBO.CreateCMSObject(session, NAS.DAL.CMS.ObjectDocument.ObjectTypeEnum.VOUCHER_PAYMENT);

            GeneralJournalObject generalJournalObject = new GeneralJournalObject(session)
            {
                GeneralJournalId = generalJournal,
                ObjectId         = CMSObject
            };

            generalJournalObject.Save();

            return(generalJournal);
        }
Exemplo n.º 17
0
 public void UpdateDataSource(DevExpress.Xpo.Session session)
 {
     //throw new NotImplementedException();
 }
Exemplo n.º 18
0
 protected XpoRepository(DevExpress.Xpo.Session session)
 {
     this.session = session ??
                    throw new ArgumentNullException(nameof(session));
 }
Exemplo n.º 19
0
        public override void UpdateBillItem(DevExpress.Xpo.Session session, Guid billItemId, Guid itemId, Guid unitId, double quantity, double price, double promotionInPercentage, string comment)
        {
            SalesInvoiceBO salesInvoiceBO = new SalesInvoiceBO();

            salesInvoiceBO.UpdateBillItem(session, billItemId, itemId, unitId, quantity, price, promotionInPercentage, comment);
        }
 public Contact(DevExpress.Xpo.Session session)
     : base(session)
 {
 }
Exemplo n.º 21
0
    protected override void OnInit(EventArgs e)
    {
        //if (Session["user"] == null)
        //{
        //    string querystring = "";
        //    if (Request.QueryString.HasKeys())
        //        querystring = Request.QueryString.ToString();
        //    Response.Redirect("~/Default.aspx?returnURL=" + Server.UrlEncode(Request.AppRelativeCurrentExecutionFilePath +"?"+ querystring));
        //}
        globalDataSession = XpoHelper.GetNewSession();

        base.OnInit(e);
    }
Exemplo n.º 22
0
        public override object LoadRuleCondition(DevExpress.Xpo.Session session, Guid key)
        {
            PricePolicyBO bo = new PricePolicyBO();

            return(bo.loadItemUnitExceptionInPolicy(session, key));
        }
Exemplo n.º 23
0
        public override void RemoveRuleCondition(DevExpress.Xpo.Session session, Guid key)
        {
            PricePolicyBO bo = new PricePolicyBO();

            bo.updateItemUnitExceptionInPolicy(session, key, new List <DataGrdItemUnitListSelection>());
        }
Exemplo n.º 24
0
        public override void SaveRuleCondition(DevExpress.Xpo.Session session, Guid key, object list)
        {
            PricePolicyBO bo = new PricePolicyBO();

            bo.updateItemUnitExceptionInPolicy(session, key, list as List <DataGrdItemUnitListSelection>);
        }
Exemplo n.º 25
0
        public override void RemoveRuleCondition(DevExpress.Xpo.Session session, Guid key)
        {
            PricePolicyBO bo = new PricePolicyBO();

            bo.updateManufacturerConditionInPolicy(session, key, new List <DataGrdManufacturerListSelection>());
        }
Exemplo n.º 26
0
    protected override void OnInit(EventArgs e)
    {
        globalDataSession = XpoHelper.GetNewSession();
        if (Request.Params["key"] != null)
            globalSessionKey = Request.Params["key"];
        if (Request.Params["module"] != null)
            int.TryParse(Request.Params["module"], out globalModuleID);
        if (Request.Params["id"] != null)
            int.TryParse(Request.Params["id"], out globalID);
        if (ConfigurationManager.AppSettings["globalisMergeDetails"] != null)
            int.TryParse(ConfigurationManager.AppSettings["globalisMergeDetails"], out globalisMergeDetails);
        if (!IsPostBack)
        {
            if (globalID > 0)
            {
                try
                {
                    globalDataObjectByID = eu.getDataSourcebyID(globalModuleID, globalID.ToString()).Tables[0];
                    SiAuto.Main.LogDataTable("Load dữ liệu để binding", globalDataObjectByID);

                    LoadEditMode();
                }
                catch (Exception ex)
                {
                    throw new Exception(ex.ToString());
                }
            }
            else
            {
                LoadNewMode();
            }
            LoadAllMode();
        }
        base.OnInit(e);
    }
Exemplo n.º 27
0
 public override void LoadTransaction(DevExpress.Xpo.Session session)
 {
     base.LoadTransaction(session, this.fFinancialTransformData);
 }
 public PersistentObject1(DevExpress.Xpo.Session session)
     : base(session)
 {
     // This constructor is used when an object is loaded from a persistent storage.
     // Do not place any code here.
 }
Exemplo n.º 29
0
        public override void DeleteBillItem(DevExpress.Xpo.Session session, Guid billItemId)
        {
            SalesInvoiceBO salesInvoiceBO = new SalesInvoiceBO();

            salesInvoiceBO.DeleteBillItem(session, billItemId);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary10 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary11 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary12 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary13 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary14 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary15 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary16 = new DevExpress.XtraReports.UI.XRSummary();
     this.XPCDSyndicate = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionCDSyndicate = new DevExpress.Xpo.Session(this.components);
     this.XPTBLDofatSarf = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionTBLDofatSarf = new DevExpress.Xpo.Session(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcMemberName = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcSyndicate = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcNo = new DevExpress.XtraReports.UI.XRTableCell();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xlTo = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xlFrom = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xlSyndicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xlSubCommitte = new DevExpress.XtraReports.UI.XRLabel();
     this.xlDofatSarf = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xpbLogo = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.dsReports = new RetirementCenter.DataSources.dsReports();
     this.pramSyndicateId = new DevExpress.XtraReports.Parameters.Parameter();
     this.pramDofatSarfId = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
     this.rep02TableAdapter = new RetirementCenter.DataSources.dsReportsTableAdapters.Rep02TableAdapter();
     this.calcTotalEstktaa = new DevExpress.XtraReports.UI.CalculatedField();
     this.calcTotal = new DevExpress.XtraReports.UI.CalculatedField();
     this.XPCDSubCommitte = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionCDSubCommitte = new DevExpress.Xpo.Session(this.components);
     this.pramSubCommitteId = new DevExpress.XtraReports.Parameters.Parameter();
     this.cdSubCommitteTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSubCommitteTableAdapter();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // XPCDSyndicate
     //
     this.XPCDSyndicate.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.CDSyndicateDataTable);
     this.XPCDSyndicate.Session = this.sessionCDSyndicate;
     //
     // sessionCDSyndicate
     //
     this.sessionCDSyndicate.TrackPropertiesModifications = false;
     //
     // XPTBLDofatSarf
     //
     this.XPTBLDofatSarf.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.TBLDofatSarfDataTable);
     this.XPTBLDofatSarf.Session = this.sessionTBLDofatSarf;
     //
     // sessionTBLDofatSarf
     //
     this.sessionTBLDofatSarf.TrackPropertiesModifications = false;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable1});
     this.Detail.HeightF = 25F;
     this.Detail.KeepTogether = true;
     this.Detail.MultiColumn.ColumnWidth = 326F;
     this.Detail.Name = "Detail";
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("SubCommitte", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
     new DevExpress.XtraReports.UI.GroupField("sarfnumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.Detail.StylePriority.UsePadding = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(1106.085F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UsePadding = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell16,
     this.xrTableCell23,
     this.xrTableCell15,
     this.xrTableCell18,
     this.xrTableCell19,
     this.xtcMemberName,
     this.xrTableCell20,
     this.xrTableCell22,
     this.xtcSyndicate,
     this.xrTableCell50,
     this.xtcNo});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.Weight = 0.63162220728795848D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.calcTotal", "{0:f2}")});
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.NullValueText = "0";
     this.xrTableCell23.StylePriority.UseTextAlignment = false;
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell23.Weight = 0.3350042341694035D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.calcTotalEstktaa", "{0:f2}")});
     this.xrTableCell15.Name = "xrTableCell15";
     this.xrTableCell15.NullValueText = "0";
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text = "xrTableCell15";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell15.Weight = 0.29312833892609425D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.estktaa", "{0:f2}")});
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.NullValueText = "0";
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text = "xrTableCell18";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell18.Weight = 0.25125320914884053D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.rsmmonth", "{0:f2}")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.NullValueText = "0";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell19.Weight = 0.25125307704219191D;
     //
     // xtcMemberName
     //
     this.xtcMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.eshtrakmonth", "{0:f2}")});
     this.xtcMemberName.Name = "xtcMemberName";
     this.xtcMemberName.NullValueText = "0";
     this.xtcMemberName.StylePriority.UseTextAlignment = false;
     this.xtcMemberName.Text = "xtcMemberName";
     this.xtcMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcMemberName.Weight = 0.2470720412878307D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.monymonth", "{0:f2}")});
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.NullValueText = "0";
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell20.Weight = 0.38455019712745075D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.MMashatName")});
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.StylePriority.UseTextAlignment = false;
     this.xrTableCell22.Text = "xrTableCell22";
     this.xrTableCell22.Weight = 1.2911615227871578D;
     //
     // xtcSyndicate
     //
     this.xtcSyndicate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.sarfnumber")});
     this.xtcSyndicate.Name = "xtcSyndicate";
     this.xtcSyndicate.StylePriority.UseTextAlignment = false;
     this.xtcSyndicate.Text = "xtcSyndicate";
     this.xtcSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcSyndicate.Weight = 0.47564284719109023D;
     //
     // xrTableCell50
     //
     this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.MMashatId")});
     this.xrTableCell50.Name = "xrTableCell50";
     this.xrTableCell50.StylePriority.UseFont = false;
     this.xrTableCell50.Text = "xrTableCell50";
     this.xrTableCell50.Weight = 0.26172262282277281D;
     //
     // xtcNo
     //
     this.xtcNo.Name = "xtcNo";
     this.xtcNo.StylePriority.UseTextAlignment = false;
     xrSummary1.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xtcNo.Summary = xrSummary1;
     this.xtcNo.Text = "م";
     this.xtcNo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcNo.Weight = 0.2093772334961955D;
     this.xtcNo.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xtcNo_BeforePrint);
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 6.41667F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // xrLabel3
     //
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(985.8766F, 93.39581F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(130.2083F, 23F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "اعضاء";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel12
     //
     this.xrLabel12.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(511.5417F, 93.39581F);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF = new System.Drawing.SizeF(36.54303F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text = "الي";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlTo
     //
     this.xlTo.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlTo.LocationFloat = new DevExpress.Utils.PointFloat(360.2515F, 93.39581F);
     this.xlTo.Name = "xlTo";
     this.xlTo.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlTo.SizeF = new System.Drawing.SizeF(151.2902F, 23F);
     this.xlTo.StylePriority.UseFont = false;
     this.xlTo.StylePriority.UseTextAlignment = false;
     this.xlTo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel10
     //
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(656.5416F, 93.39581F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(47.9166F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "من";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlFrom
     //
     this.xlFrom.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlFrom.LocationFloat = new DevExpress.Utils.PointFloat(548.0847F, 93.39581F);
     this.xlFrom.Name = "xlFrom";
     this.xlFrom.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlFrom.SizeF = new System.Drawing.SizeF(108.457F, 23F);
     this.xlFrom.StylePriority.UseFont = false;
     this.xlFrom.StylePriority.UseTextAlignment = false;
     this.xlFrom.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(632.0832F, 32.6042F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(130.2083F, 23F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "النفابة الفرعية";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlSyndicate
     //
     this.xlSyndicate.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlSyndicate.LocationFloat = new DevExpress.Utils.PointFloat(489.8349F, 32.6042F);
     this.xlSyndicate.Name = "xlSyndicate";
     this.xlSyndicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlSyndicate.SizeF = new System.Drawing.SizeF(130.7901F, 23F);
     this.xlSyndicate.StylePriority.UseFont = false;
     this.xlSyndicate.StylePriority.UseTextAlignment = false;
     this.xlSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel13
     //
     this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(441.9183F, 32.6042F);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF = new System.Drawing.SizeF(47.9166F, 23F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text = "اللجنة";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlSubCommitte
     //
     this.xlSubCommitte.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlSubCommitte.LocationFloat = new DevExpress.Utils.PointFloat(266.0849F, 32.6042F);
     this.xlSubCommitte.Name = "xlSubCommitte";
     this.xlSubCommitte.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlSubCommitte.SizeF = new System.Drawing.SizeF(175.8333F, 23F);
     this.xlSubCommitte.StylePriority.UseFont = false;
     this.xlSubCommitte.StylePriority.UseTextAlignment = false;
     this.xlSubCommitte.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlDofatSarf
     //
     this.xlDofatSarf.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlDofatSarf.LocationFloat = new DevExpress.Utils.PointFloat(360.2515F, 66.58333F);
     this.xlDofatSarf.Name = "xlDofatSarf";
     this.xlDofatSarf.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlDofatSarf.SizeF = new System.Drawing.SizeF(187.8332F, 23.00001F);
     this.xlDofatSarf.StylePriority.UseFont = false;
     this.xlDofatSarf.StylePriority.UseTextAlignment = false;
     this.xlDofatSarf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(559.5431F, 66.58333F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "كشف معاشات الاعضاء عن";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xpbLogo
     //
     this.xpbLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Image", null, "AppOptions.CompanyLogo")});
     this.xpbLogo.LocationFloat = new DevExpress.Utils.PointFloat(10F, 10.00001F);
     this.xpbLogo.Name = "xpbLogo";
     this.xpbLogo.SizeF = new System.Drawing.SizeF(100F, 80F);
     this.xpbLogo.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10F, 132.4999F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow2,
     this.xrTableRow3});
     this.xrTable2.SizeF = new System.Drawing.SizeF(1106.085F, 63.54167F);
     this.xrTable2.StylePriority.UseBackColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseForeColor = false;
     this.xrTable2.StylePriority.UsePadding = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell13,
     this.xrTableCell4,
     this.xrTableCell9});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Weight = 1.2597547484349752D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text = "الاستقطاعات";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight = 0.74957834915683863D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.Weight = 2.6224544336951729D;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell14,
     this.xrTableCell12,
     this.xrTableCell6,
     this.xrTableCell17,
     this.xrTableCell8,
     this.xrTableCell1,
     this.xrTableCell2,
     this.xrTableCell24,
     this.xrTableCell25,
     this.xrTableCell49,
     this.xrTableCell10});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text = "التوقيع";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight = 0.63162229179462737D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text = "الصافي";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight = 0.33500411101094513D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text = "جملة";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight = 0.29312858781063467D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseFont = false;
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text = "استقطاع";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell17.Weight = 0.25125308224602688D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "رسم";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight = 0.25125308246162481D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseFont = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "اشتراك";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight = 0.25125308220752668D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text = "جملة المبلغ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight = 0.38036922320226524D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.Text = "الاسم";
     this.xrTableCell24.Weight = 1.2911616322641484D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "رقم الصرف";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell25.Weight = 0.47564278965496676D;
     //
     // xrTableCell49
     //
     this.xrTableCell49.Name = "xrTableCell49";
     this.xrTableCell49.Text = "رقم موحد";
     this.xrTableCell49.Weight = 0.27219083654987009D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text = "م";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight = 0.19890881208435116D;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(899.4183F, 49.00001F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(216.6667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text = "ادارة المعـــــاشـــــات";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(958.7933F, 20.00001F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text = "نقابة المهن التعليمية";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 26F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // dsReports
     //
     this.dsReports.DataSetName = "dsReports";
     this.dsReports.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pramSyndicateId
     //
     this.pramSyndicateId.Description = "الفرعية";
     dynamicListLookUpSettings1.DataAdapter = null;
     dynamicListLookUpSettings1.DataMember = null;
     dynamicListLookUpSettings1.DataSource = this.XPCDSyndicate;
     dynamicListLookUpSettings1.DisplayMember = "Syndicate";
     dynamicListLookUpSettings1.ValueMember = "SyndicateId";
     this.pramSyndicateId.LookUpSettings = dynamicListLookUpSettings1;
     this.pramSyndicateId.Name = "pramSyndicateId";
     this.pramSyndicateId.Type = typeof(int);
     this.pramSyndicateId.ValueInfo = "0";
     //
     // pramDofatSarfId
     //
     this.pramDofatSarfId.Description = "دفعة الصرف";
     dynamicListLookUpSettings2.DataAdapter = null;
     dynamicListLookUpSettings2.DataMember = null;
     dynamicListLookUpSettings2.DataSource = this.XPTBLDofatSarf;
     dynamicListLookUpSettings2.DisplayMember = "DofatSarf";
     dynamicListLookUpSettings2.ValueMember = "DofatSarfId";
     this.pramDofatSarfId.LookUpSettings = dynamicListLookUpSettings2;
     this.pramDofatSarfId.Name = "pramDofatSarfId";
     this.pramDofatSarfId.Type = typeof(int);
     this.pramDofatSarfId.ValueInfo = "0";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel18,
     this.xrLabel17,
     this.xrLabel16,
     this.xrLabel15,
     this.xrLabel14,
     this.xrLabel11,
     this.xrPageInfo1,
     this.xrTable3});
     this.PageFooter.HeightF = 132.5417F;
     this.PageFooter.Name = "PageFooter";
     this.PageFooter.PrintOn = ((DevExpress.XtraReports.UI.PrintOnPages)((DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader | DevExpress.XtraReports.UI.PrintOnPages.NotWithReportFooter)));
     //
     // xrLabel18
     //
     this.xrLabel18.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(62.5F, 78.20832F);
     this.xrLabel18.Name = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel18.StylePriority.UseFont = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text = "يعتمد امين الصندوق";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(266.0849F, 78.20832F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text = "مدير المعاشات";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel16
     //
     this.xrLabel16.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(468.1683F, 78.20832F);
     this.xrLabel16.Name = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text = "رئيس الفرعية";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel15
     //
     this.xrLabel15.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(676.5016F, 78.20832F);
     this.xrLabel15.Name = "xrLabel15";
     this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text = "امبن صندوق الفرعية";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel14
     //
     this.xrLabel14.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(877.5433F, 78.20833F);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text = "امبن صندوق اللجنة";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel11
     //
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(732.3751F, 55.20833F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(333.7099F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "تم الصرف بمعرفتي وتحت مسئوليتي";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1016.085F, 112.5416F);
     this.xrPageInfo1.Name = "xrPageInfo1";
     this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF = new System.Drawing.SizeF(89.99988F, 20.00001F);
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTable3
     //
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow4});
     this.xrTable3.SizeF = new System.Drawing.SizeF(1106.085F, 25F);
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseFont = false;
     this.xrTable3.StylePriority.UsePadding = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell30,
     this.xrTableCell3,
     this.xrTableCell7,
     this.xrTableCell26,
     this.xrTableCell27,
     this.xrTableCell28,
     this.xrTableCell29,
     this.xrTableCell32,
     this.xrTableCell34});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.Weight = 0.63162223923643956D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.calcTotal")});
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.NullValueText = "0";
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:f2}";
     xrSummary2.IgnoreNullValues = true;
     xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell3.Summary = xrSummary2;
     this.xrTableCell3.Text = "xrTableCell3";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight = 0.33500410637547906D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.calcTotalEstktaa")});
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.NullValueText = "0";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:f2}";
     xrSummary3.IgnoreNullValues = true;
     xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell7.Summary = xrSummary3;
     this.xrTableCell7.Text = "xrTableCell7";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight = 0.29312833892609452D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.estktaa")});
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.NullValueText = "0";
     this.xrTableCell26.StylePriority.UseTextAlignment = false;
     xrSummary4.FormatString = "{0:f2}";
     xrSummary4.IgnoreNullValues = true;
     xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell26.Summary = xrSummary4;
     this.xrTableCell26.Text = "xrTableCell26";
     this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell26.Weight = 0.25125333694276497D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.rsmmonth")});
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.NullValueText = "0";
     this.xrTableCell27.StylePriority.UseTextAlignment = false;
     xrSummary5.FormatString = "{0:f2}";
     xrSummary5.IgnoreNullValues = true;
     xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell27.Summary = xrSummary5;
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell27.Weight = 0.25125269366041847D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.eshtrakmonth")});
     this.xrTableCell28.Name = "xrTableCell28";
     this.xrTableCell28.NullValueText = "0";
     this.xrTableCell28.StylePriority.UseTextAlignment = false;
     xrSummary6.FormatString = "{0:f2}";
     xrSummary6.IgnoreNullValues = true;
     xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell28.Summary = xrSummary6;
     this.xrTableCell28.Text = "xrTableCell28";
     this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell28.Weight = 0.24707268025745258D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.monymonth")});
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.NullValueText = "0";
     this.xrTableCell29.StylePriority.UseTextAlignment = false;
     xrSummary7.FormatString = "{0:f2}";
     xrSummary7.IgnoreNullValues = true;
     xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell29.Summary = xrSummary7;
     this.xrTableCell29.Text = "xrTableCell29";
     this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell29.Weight = 0.38454994153960209D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseTextAlignment = false;
     this.xrTableCell32.Text = "احمالي الصفحة";
     this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell32.Weight = 2.0285264920340604D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.StylePriority.UseTextAlignment = false;
     xrSummary8.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary8.IgnoreNullValues = true;
     xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell34.Summary = xrSummary8;
     this.xrTableCell34.Text = "م";
     this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell34.Weight = 0.20937770231467517D;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable4});
     this.ReportFooter.HeightF = 25F;
     this.ReportFooter.KeepTogether = true;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.PrintAtBottom = true;
     //
     // xrTable4
     //
     this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable4.Name = "xrTable4";
     this.xrTable4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow5});
     this.xrTable4.SizeF = new System.Drawing.SizeF(1106.085F, 25F);
     this.xrTable4.StylePriority.UseBorders = false;
     this.xrTable4.StylePriority.UseFont = false;
     this.xrTable4.StylePriority.UsePadding = false;
     this.xrTable4.StylePriority.UseTextAlignment = false;
     this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell21,
     this.xrTableCell35,
     this.xrTableCell36,
     this.xrTableCell37,
     this.xrTableCell38,
     this.xrTableCell39,
     this.xrTableCell40,
     this.xrTableCell44,
     this.xrTableCell45});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.Weight = 0.63162223923643968D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.calcTotal")});
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.NullValueText = "0";
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     xrSummary9.FormatString = "{0:f2}";
     xrSummary9.IgnoreNullValues = true;
     xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell35.Summary = xrSummary9;
     this.xrTableCell35.Text = "xrTableCell35";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell35.Weight = 0.33500436196332772D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.calcTotalEstktaa")});
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.NullValueText = "0";
     this.xrTableCell36.StylePriority.UseTextAlignment = false;
     xrSummary10.FormatString = "{0:f2}";
     xrSummary10.IgnoreNullValues = true;
     xrSummary10.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell36.Summary = xrSummary10;
     this.xrTableCell36.Text = "xrTableCell36";
     this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell36.Weight = 0.29312833892609436D;
     //
     // xrTableCell37
     //
     this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.estktaa")});
     this.xrTableCell37.Name = "xrTableCell37";
     this.xrTableCell37.NullValueText = "0";
     this.xrTableCell37.StylePriority.UseTextAlignment = false;
     xrSummary11.FormatString = "{0:f2}";
     xrSummary11.IgnoreNullValues = true;
     xrSummary11.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell37.Summary = xrSummary11;
     this.xrTableCell37.Text = "xrTableCell37";
     this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell37.Weight = 0.25125295356099181D;
     //
     // xrTableCell38
     //
     this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.rsmmonth")});
     this.xrTableCell38.Name = "xrTableCell38";
     this.xrTableCell38.NullValueText = "0";
     this.xrTableCell38.StylePriority.UseTextAlignment = false;
     xrSummary12.FormatString = "{0:f2}";
     xrSummary12.IgnoreNullValues = true;
     xrSummary12.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell38.Summary = xrSummary12;
     this.xrTableCell38.Text = "xrTableCell38";
     this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell38.Weight = 0.25125307704219185D;
     //
     // xrTableCell39
     //
     this.xrTableCell39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.eshtrakmonth")});
     this.xrTableCell39.Name = "xrTableCell39";
     this.xrTableCell39.NullValueText = "0";
     this.xrTableCell39.StylePriority.UseTextAlignment = false;
     xrSummary13.FormatString = "{0:f2}";
     xrSummary13.IgnoreNullValues = true;
     xrSummary13.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell39.Summary = xrSummary13;
     this.xrTableCell39.Text = "xrTableCell39";
     this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell39.Weight = 0.24707229687567933D;
     //
     // xrTableCell40
     //
     this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep02.monymonth")});
     this.xrTableCell40.Name = "xrTableCell40";
     this.xrTableCell40.NullValueText = "0";
     this.xrTableCell40.StylePriority.UseTextAlignment = false;
     xrSummary14.FormatString = "{0:f2}";
     xrSummary14.IgnoreNullValues = true;
     xrSummary14.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell40.Summary = xrSummary14;
     this.xrTableCell40.Text = "xrTableCell40";
     this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell40.Weight = 0.384550197127451D;
     //
     // xrTableCell44
     //
     this.xrTableCell44.Name = "xrTableCell44";
     this.xrTableCell44.StylePriority.UseTextAlignment = false;
     xrSummary15.IgnoreNullValues = true;
     this.xrTableCell44.Summary = xrSummary15;
     this.xrTableCell44.Text = "اجمالي اللجنة";
     this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell44.Weight = 2.0285268330586153D;
     //
     // xrTableCell45
     //
     this.xrTableCell45.Name = "xrTableCell45";
     this.xrTableCell45.StylePriority.UseTextAlignment = false;
     xrSummary16.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary16.IgnoreNullValues = true;
     xrSummary16.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell45.Summary = xrSummary16;
     this.xrTableCell45.Text = "م";
     this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell45.Weight = 0.2093772334961955D;
     //
     // rep02TableAdapter
     //
     this.rep02TableAdapter.ClearBeforeFill = true;
     //
     // calcTotalEstktaa
     //
     this.calcTotalEstktaa.DataMember = "Rep02";
     this.calcTotalEstktaa.Expression = "[eshtrakmonth] + [rsmmonth] + [estktaa]";
     this.calcTotalEstktaa.Name = "calcTotalEstktaa";
     //
     // calcTotal
     //
     this.calcTotal.DataMember = "Rep02";
     this.calcTotal.Expression = "[monymonth] - [calcTotalEstktaa]";
     this.calcTotal.Name = "calcTotal";
     //
     // XPCDSubCommitte
     //
     this.XPCDSubCommitte.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.CDSubCommitteDataTable);
     this.XPCDSubCommitte.Session = this.sessionCDSubCommitte;
     //
     // sessionCDSubCommitte
     //
     this.sessionCDSubCommitte.TrackPropertiesModifications = false;
     //
     // pramSubCommitteId
     //
     this.pramSubCommitteId.Description = "اللجنة";
     this.pramSubCommitteId.Name = "pramSubCommitteId";
     this.pramSubCommitteId.Type = typeof(short);
     this.pramSubCommitteId.ValueInfo = "0";
     //
     // cdSubCommitteTableAdapter
     //
     this.cdSubCommitteTableAdapter.ClearBeforeFill = true;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xpbLogo,
     this.xrLabel2,
     this.xrTable2,
     this.xrLabel1,
     this.xrLabel9,
     this.xlDofatSarf,
     this.xlSubCommitte,
     this.xrLabel13,
     this.xlSyndicate,
     this.xrLabel8,
     this.xlFrom,
     this.xrLabel10,
     this.xlTo,
     this.xrLabel12,
     this.xrLabel3});
     this.PageHeader.HeightF = 196.0416F;
     this.PageHeader.Name = "PageHeader";
     //
     // XRep02a
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.topMarginBand1,
     this.bottomMarginBand1,
     this.PageFooter,
     this.ReportFooter,
     this.PageHeader});
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
     this.calcTotalEstktaa,
     this.calcTotal});
     this.DataMember = "Rep02";
     this.DataSource = this.dsReports;
     this.DrawGrid = false;
     this.Landscape = true;
     this.Margins = new System.Drawing.Printing.Margins(12, 12, 6, 26);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
     this.pramDofatSarfId,
     this.pramSyndicateId,
     this.pramSubCommitteId});
     this.ReportPrintOptions.DetailCountOnEmptyDataSource = 10;
     this.Version = "12.2";
     this.ParametersRequestBeforeShow += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestBeforeShow);
     this.ParametersRequestSubmit += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestSubmit);
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary10 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary11 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary12 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary13 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary14 = new DevExpress.XtraReports.UI.XRSummary();
     this.XPCDSyndicate = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionCDSyndicate = new DevExpress.Xpo.Session(this.components);
     this.XPTBLDofatSarf = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionTBLDofatSarf = new DevExpress.Xpo.Session(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrSubreport1 = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcMemberShipNumber = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
     this.xlSubCommitte = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xlDofatSarf = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xpbLogo = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xlSyndicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.dsReports = new RetirementCenter.DataSources.dsReports();
     this.pramSyndicateId = new DevExpress.XtraReports.Parameters.Parameter();
     this.pramDofatSarfId = new DevExpress.XtraReports.Parameters.Parameter();
     this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo1 = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
     this.calcTotalEstktaa = new DevExpress.XtraReports.UI.CalculatedField();
     this.calcTotal = new DevExpress.XtraReports.UI.CalculatedField();
     this.XPCDSubCommitte = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionCDSubCommitte = new DevExpress.Xpo.Session(this.components);
     this.pramSubCommitteId = new DevExpress.XtraReports.Parameters.Parameter();
     this.cdSubCommitteTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSubCommitteTableAdapter();
     this.rep03TableAdapter = new RetirementCenter.DataSources.dsReportsTableAdapters.Rep03TableAdapter();
     this.xlGroupAutoNo = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.FR_ClearZero = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // XPCDSyndicate
     //
     this.XPCDSyndicate.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.CDSyndicateDataTable);
     this.XPCDSyndicate.Session = this.sessionCDSyndicate;
     //
     // sessionCDSyndicate
     //
     this.sessionCDSyndicate.TrackPropertiesModifications = false;
     //
     // XPTBLDofatSarf
     //
     this.XPTBLDofatSarf.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.TBLDofatSarfDataTable);
     this.XPTBLDofatSarf.Session = this.sessionTBLDofatSarf;
     //
     // sessionTBLDofatSarf
     //
     this.sessionTBLDofatSarf.TrackPropertiesModifications = false;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrSubreport1,
     this.xrTable1});
     this.Detail.HeightF = 23F;
     this.Detail.KeepTogether = true;
     this.Detail.MultiColumn.ColumnWidth = 326F;
     this.Detail.Name = "Detail";
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("monymonth", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)});
     this.Detail.StylePriority.UsePadding = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrSubreport1
     //
     this.xrSubreport1.LocationFloat = new DevExpress.Utils.PointFloat(697.9167F, 6.25F);
     this.xrSubreport1.Name = "xrSubreport1";
     this.xrSubreport1.SizeF = new System.Drawing.SizeF(2.083313F, 1.041667F);
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(1106.084F, 23F);
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UseForeColor = false;
     this.xrTable1.StylePriority.UsePadding = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell42,
     this.xrTableCell23,
     this.xrTableCell15,
     this.xrTableCell18,
     this.xrTableCell19,
     this.xrTableCell20,
     this.xrTableCell21,
     this.xtcMemberShipNumber,
     this.xrTableCell54,
     this.xrTableCell51,
     this.xrTableCell22});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell42
     //
     this.xrTableCell42.Name = "xrTableCell42";
     this.xrTableCell42.Weight = 0.54438197906467289D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.calcTotal", "{0:f2}")});
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.NullValueText = "0";
     this.xrTableCell23.StylePriority.UseTextAlignment = false;
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell23.Weight = 0.37687957427757612D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.calcTotalEstktaa", "{0:f2}")});
     this.xrTableCell15.Name = "xrTableCell15";
     this.xrTableCell15.NullValueText = "0";
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     this.xrTableCell15.Text = "xrTableCell15";
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell15.Weight = 0.3350043298903011D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.estktaa", "{0:f2}")});
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.NullValueText = "0";
     this.xrTableCell18.StylePriority.UseTextAlignment = false;
     this.xrTableCell18.Text = "xrTableCell18";
     this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell18.Weight = 0.25125279338109124D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.rsmmonth", "{0:f2}")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.NullValueText = "0";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell19.Weight = 0.25125381849761325D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.monymonth", "{0:f2}")});
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.NullValueText = "0";
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell20.Weight = 0.29312845094739859D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.sarfdateto", "{0:yyyy-MM-dd}")});
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "xrTableCell21";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell21.Weight = 0.37687975724480033D;
     //
     // xtcMemberShipNumber
     //
     this.xtcMemberShipNumber.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.sarfdatefrom", "{0:yyyy-MM-dd}")});
     this.xtcMemberShipNumber.Name = "xtcMemberShipNumber";
     this.xtcMemberShipNumber.StylePriority.UseTextAlignment = false;
     this.xtcMemberShipNumber.Text = "xtcMemberShipNumber";
     this.xtcMemberShipNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcMemberShipNumber.Weight = 0.37687976336439988D;
     //
     // xrTableCell54
     //
     this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.WarasaType")});
     this.xrTableCell54.Name = "xrTableCell54";
     this.xrTableCell54.StylePriority.UseTextAlignment = false;
     this.xrTableCell54.Text = "xrTableCell54";
     this.xrTableCell54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell54.Weight = 0.20937765210974857D;
     //
     // xrTableCell51
     //
     this.xrTableCell51.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.personName")});
     this.xrTableCell51.Name = "xrTableCell51";
     this.xrTableCell51.Weight = 0.62813293769081024D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.Weight = 0.98861417452793554D;
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 4.333337F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // xrLabel16
     //
     this.xrLabel16.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(985.8755F, 83.3958F);
     this.xrLabel16.Name = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF = new System.Drawing.SizeF(130.2083F, 23F);
     this.xrLabel16.StylePriority.UseFont = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text = "اضافات الورثة";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlSubCommitte
     //
     this.xlSubCommitte.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlSubCommitte.LocationFloat = new DevExpress.Utils.PointFloat(236.2501F, 50.06247F);
     this.xlSubCommitte.Name = "xlSubCommitte";
     this.xlSubCommitte.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlSubCommitte.SizeF = new System.Drawing.SizeF(215.8333F, 23F);
     this.xlSubCommitte.StylePriority.UseFont = false;
     this.xlSubCommitte.StylePriority.UseTextAlignment = false;
     this.xlSubCommitte.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel13
     //
     this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(452.0834F, 50.06247F);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF = new System.Drawing.SizeF(47.9166F, 23F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text = "اللجنة";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlDofatSarf
     //
     this.xlDofatSarf.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlDofatSarf.LocationFloat = new DevExpress.Utils.PointFloat(362.3348F, 83.3958F);
     this.xlDofatSarf.Name = "xlDofatSarf";
     this.xlDofatSarf.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlDofatSarf.SizeF = new System.Drawing.SizeF(187.8332F, 23.00001F);
     this.xlDofatSarf.StylePriority.UseFont = false;
     this.xlDofatSarf.StylePriority.UseTextAlignment = false;
     this.xlDofatSarf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(561.6265F, 83.3958F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "كشف معاشات الورثة عن";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xpbLogo
     //
     this.xpbLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Image", null, "AppOptions.CompanyLogo")});
     this.xpbLogo.LocationFloat = new DevExpress.Utils.PointFloat(10F, 10.00001F);
     this.xpbLogo.Name = "xpbLogo";
     this.xpbLogo.SizeF = new System.Drawing.SizeF(100F, 80F);
     this.xpbLogo.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10F, 122.4999F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow2,
     this.xrTableRow3});
     this.xrTable2.SizeF = new System.Drawing.SizeF(1106.085F, 63.54167F);
     this.xrTable2.StylePriority.UseBackColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseForeColor = false;
     this.xrTable2.StylePriority.UsePadding = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell13,
     this.xrTableCell4,
     this.xrTableCell5,
     this.xrTableCell11,
     this.xrTableCell52,
     this.xrTableCell9});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Weight = 1.2562653992270239D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text = "الاستقطاعات";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight = 0.50250630415576369D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.Weight = 0.29312808609115482D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text = "المدة";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight = 0.7537594814182329D;
     //
     // xrTableCell52
     //
     this.xrTableCell52.Name = "xrTableCell52";
     this.xrTableCell52.Weight = 1.0374734644286043D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.Weight = 0.788654795966207D;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell33,
     this.xrTableCell14,
     this.xrTableCell6,
     this.xrTableCell17,
     this.xrTableCell8,
     this.xrTableCell2,
     this.xrTableCell16,
     this.xrTableCell12,
     this.xrTableCell55,
     this.xrTableCell53,
     this.xrTableCell24,
     this.xrTableCell25,
     this.xrTableCell49,
     this.xrTableCell10});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell33
     //
     this.xrTableCell33.Name = "xrTableCell33";
     this.xrTableCell33.StylePriority.UseTextAlignment = false;
     this.xrTableCell33.Text = "التوقيع";
     this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell33.Weight = 0.54438167413534644D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text = "الصافي";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight = 0.37687962158556187D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text = "جملة";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight = 0.33500409009949916D;
     //
     // xrTableCell17
     //
     this.xrTableCell17.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.StylePriority.UseFont = false;
     this.xrTableCell17.StylePriority.UseTextAlignment = false;
     this.xrTableCell17.Text = "استقطاع";
     this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell17.Weight = 0.25125282665817822D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "رسم";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight = 0.25125346584339792D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseFont = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text = "جملة المبلغ";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight = 0.29312846772049872D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text = "إلى";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight = 0.37687961032795242D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text = "من";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight = 0.37687961036715273D;
     //
     // xrTableCell55
     //
     this.xrTableCell55.Name = "xrTableCell55";
     this.xrTableCell55.StylePriority.UseTextAlignment = false;
     this.xrTableCell55.Text = "صفتهم";
     this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell55.Weight = 0.20937778490717929D;
     //
     // xrTableCell53
     //
     this.xrTableCell53.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell53.Name = "xrTableCell53";
     this.xrTableCell53.StylePriority.UseFont = false;
     this.xrTableCell53.Text = "أسماء المستحقين";
     this.xrTableCell53.Weight = 0.41639988492890972D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.StylePriority.UseFont = false;
     this.xrTableCell24.Text = "اسم صاحب المعاش";
     this.xrTableCell24.Weight = 0.41169521108078433D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "رقم الصرف";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell25.Weight = 0.31755563499830508D;
     //
     // xrTableCell49
     //
     this.xrTableCell49.Name = "xrTableCell49";
     this.xrTableCell49.Text = "رقم موحد";
     this.xrTableCell49.Weight = 0.27219083654987009D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Text = "م";
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight = 0.19890881208435116D;
     //
     // xlSyndicate
     //
     this.xlSyndicate.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlSyndicate.LocationFloat = new DevExpress.Utils.PointFloat(500F, 50.06247F);
     this.xlSyndicate.Name = "xlSyndicate";
     this.xlSyndicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlSyndicate.SizeF = new System.Drawing.SizeF(158.417F, 23F);
     this.xlSyndicate.StylePriority.UseFont = false;
     this.xlSyndicate.StylePriority.UseTextAlignment = false;
     this.xlSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel3
     //
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(669.8751F, 50.06247F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(130.2083F, 23F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "النفابة الفرعية";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(899.4177F, 39F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(216.6667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text = "ادارة المعـــــاشـــــات";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(958.7928F, 10.00001F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text = "نقابة المهن التعليمية";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 26.20837F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // dsReports
     //
     this.dsReports.DataSetName = "dsReports";
     this.dsReports.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pramSyndicateId
     //
     this.pramSyndicateId.Description = "الفرعية";
     dynamicListLookUpSettings1.DataAdapter = null;
     dynamicListLookUpSettings1.DataMember = null;
     dynamicListLookUpSettings1.DataSource = this.XPCDSyndicate;
     dynamicListLookUpSettings1.DisplayMember = "Syndicate";
     dynamicListLookUpSettings1.ValueMember = "SyndicateId";
     this.pramSyndicateId.LookUpSettings = dynamicListLookUpSettings1;
     this.pramSyndicateId.Name = "pramSyndicateId";
     this.pramSyndicateId.Type = typeof(int);
     this.pramSyndicateId.ValueInfo = "0";
     //
     // pramDofatSarfId
     //
     this.pramDofatSarfId.Description = "دفعة الصرف";
     dynamicListLookUpSettings2.DataAdapter = null;
     dynamicListLookUpSettings2.DataMember = null;
     dynamicListLookUpSettings2.DataSource = this.XPTBLDofatSarf;
     dynamicListLookUpSettings2.DisplayMember = "DofatSarf";
     dynamicListLookUpSettings2.ValueMember = "DofatSarfId";
     this.pramDofatSarfId.LookUpSettings = dynamicListLookUpSettings2;
     this.pramDofatSarfId.Name = "pramDofatSarfId";
     this.pramDofatSarfId.Type = typeof(int);
     this.pramDofatSarfId.ValueInfo = "0";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel12,
     this.xrLabel14,
     this.xrLabel15,
     this.xrLabel17,
     this.xrLabel18,
     this.xrLabel19,
     this.xrPageInfo1,
     this.xrTable3});
     this.PageFooter.HeightF = 127.6667F;
     this.PageFooter.Name = "PageFooter";
     this.PageFooter.PrintOn = ((DevExpress.XtraReports.UI.PrintOnPages)((DevExpress.XtraReports.UI.PrintOnPages.NotWithReportHeader | DevExpress.XtraReports.UI.PrintOnPages.NotWithReportFooter)));
     //
     // xrLabel12
     //
     this.xrLabel12.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(740.5826F, 48F);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF = new System.Drawing.SizeF(333.7099F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text = "تم الصرف بمعرفتي وتحت مسئوليتي";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel14
     //
     this.xrLabel14.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(885.7508F, 70.99999F);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel14.StylePriority.UseFont = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text = "امبن صندوق اللجنة";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel15
     //
     this.xrLabel15.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(684.7091F, 70.99999F);
     this.xrLabel15.Name = "xrLabel15";
     this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel15.StylePriority.UseFont = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text = "امبن صندوق الفرعية";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(476.3758F, 70.99999F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text = "رئيس الفرعية";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel18
     //
     this.xrLabel18.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(274.2924F, 70.99999F);
     this.xrLabel18.Name = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel18.StylePriority.UseFont = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text = "مدير المعاشات";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel19
     //
     this.xrLabel19.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(70.70752F, 70.99999F);
     this.xrLabel19.Name = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF = new System.Drawing.SizeF(188.5416F, 23F);
     this.xrLabel19.StylePriority.UseFont = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text = "يعتمد امين الصندوق";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(1006.085F, 107.6667F);
     this.xrPageInfo1.Name = "xrPageInfo1";
     this.xrPageInfo1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF = new System.Drawing.SizeF(100F, 20F);
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrTable3
     //
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(9.999023F, 0F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow4});
     this.xrTable3.SizeF = new System.Drawing.SizeF(1106.085F, 25F);
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseFont = false;
     this.xrTable3.StylePriority.UsePadding = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell46,
     this.xrTableCell3,
     this.xrTableCell7,
     this.xrTableCell26,
     this.xrTableCell27,
     this.xrTableCell29,
     this.xrTableCell30,
     this.xrTableCell32,
     this.xrTableCell34});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell46
     //
     this.xrTableCell46.Name = "xrTableCell46";
     this.xrTableCell46.Weight = 0.54438572951980846D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.calcTotal")});
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.NullValueText = "0";
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:f2}";
     xrSummary1.IgnoreNullValues = true;
     xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell3.Summary = xrSummary1;
     this.xrTableCell3.Text = "xrTableCell3";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight = 0.37687961951292531D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.calcTotalEstktaa")});
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.NullValueText = "0";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:f2}";
     xrSummary2.IgnoreNullValues = true;
     xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell7.Summary = xrSummary2;
     this.xrTableCell7.Text = "xrTableCell7";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight = 0.33500417154835133D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.estktaa")});
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.NullValueText = "0";
     this.xrTableCell26.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:f2}";
     xrSummary3.IgnoreNullValues = true;
     xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell26.Summary = xrSummary3;
     this.xrTableCell26.Text = "xrTableCell26";
     this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell26.Weight = 0.25125268998602296D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.rsmmonth")});
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.NullValueText = "0";
     this.xrTableCell27.StylePriority.UseTextAlignment = false;
     xrSummary4.FormatString = "{0:f2}";
     xrSummary4.IgnoreNullValues = true;
     xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell27.Summary = xrSummary4;
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell27.Weight = 0.25125359620500942D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.monymonth")});
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.NullValueText = "0";
     this.xrTableCell29.StylePriority.UseTextAlignment = false;
     xrSummary5.FormatString = "{0:f2}";
     xrSummary5.IgnoreNullValues = true;
     xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell29.Summary = xrSummary5;
     this.xrTableCell29.Text = "xrTableCell29";
     this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell29.Weight = 0.29312846462295067D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.StylePriority.UseTextAlignment = false;
     this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell30.Weight = 1.5427598144541501D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseTextAlignment = false;
     this.xrTableCell32.Text = "اجمالي الصفحة";
     this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell32.Weight = 0.82774574312309346D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.StylePriority.UseTextAlignment = false;
     xrSummary6.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary6.IgnoreNullValues = true;
     xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.xrTableCell34.Summary = xrSummary6;
     this.xrTableCell34.Text = "م";
     this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell34.Weight = 0.20937770231467517D;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable4});
     this.ReportFooter.HeightF = 25F;
     this.ReportFooter.KeepTogether = true;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.PrintAtBottom = true;
     //
     // xrTable4
     //
     this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(9.999023F, 0F);
     this.xrTable4.Name = "xrTable4";
     this.xrTable4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow5});
     this.xrTable4.SizeF = new System.Drawing.SizeF(1106.085F, 25F);
     this.xrTable4.StylePriority.UseBorders = false;
     this.xrTable4.StylePriority.UseFont = false;
     this.xrTable4.StylePriority.UsePadding = false;
     this.xrTable4.StylePriority.UseTextAlignment = false;
     this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell43,
     this.xrTableCell35,
     this.xrTableCell36,
     this.xrTableCell37,
     this.xrTableCell38,
     this.xrTableCell40,
     this.xrTableCell41,
     this.xrTableCell44,
     this.xrTableCell45});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell43
     //
     this.xrTableCell43.Name = "xrTableCell43";
     this.xrTableCell43.Weight = 0.54438585731373279D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.calcTotal")});
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.NullValueText = "0";
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     xrSummary7.FormatString = "{0:f2}";
     xrSummary7.IgnoreNullValues = true;
     xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell35.Summary = xrSummary7;
     this.xrTableCell35.Text = "xrTableCell35";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell35.Weight = 0.37687942782203865D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.calcTotalEstktaa")});
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.NullValueText = "0";
     this.xrTableCell36.StylePriority.UseTextAlignment = false;
     xrSummary8.FormatString = "{0:f2}";
     xrSummary8.IgnoreNullValues = true;
     xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell36.Summary = xrSummary8;
     this.xrTableCell36.Text = "xrTableCell36";
     this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell36.Weight = 0.33500426739379463D;
     //
     // xrTableCell37
     //
     this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.estktaa")});
     this.xrTableCell37.Name = "xrTableCell37";
     this.xrTableCell37.NullValueText = "0";
     this.xrTableCell37.StylePriority.UseTextAlignment = false;
     xrSummary9.FormatString = "{0:f2}";
     xrSummary9.IgnoreNullValues = true;
     xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell37.Summary = xrSummary9;
     this.xrTableCell37.Text = "xrTableCell37";
     this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell37.Weight = 0.251252689986023D;
     //
     // xrTableCell38
     //
     this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.rsmmonth")});
     this.xrTableCell38.Name = "xrTableCell38";
     this.xrTableCell38.NullValueText = "0";
     this.xrTableCell38.StylePriority.UseTextAlignment = false;
     xrSummary10.FormatString = "{0:f2}";
     xrSummary10.IgnoreNullValues = true;
     xrSummary10.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell38.Summary = xrSummary10;
     this.xrTableCell38.Text = "xrTableCell38";
     this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell38.Weight = 0.25125359620500948D;
     //
     // xrTableCell40
     //
     this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.monymonth")});
     this.xrTableCell40.Name = "xrTableCell40";
     this.xrTableCell40.NullValueText = "0";
     this.xrTableCell40.StylePriority.UseTextAlignment = false;
     xrSummary11.FormatString = "{0:f2}";
     xrSummary11.IgnoreNullValues = true;
     xrSummary11.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell40.Summary = xrSummary11;
     this.xrTableCell40.Text = "xrTableCell40";
     this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell40.Weight = 0.29312820903510178D;
     //
     // xrTableCell41
     //
     this.xrTableCell41.Name = "xrTableCell41";
     this.xrTableCell41.StylePriority.UseTextAlignment = false;
     this.xrTableCell41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell41.Weight = 1.5427598943253529D;
     //
     // xrTableCell44
     //
     this.xrTableCell44.Name = "xrTableCell44";
     this.xrTableCell44.StylePriority.UseTextAlignment = false;
     xrSummary12.IgnoreNullValues = true;
     this.xrTableCell44.Summary = xrSummary12;
     this.xrTableCell44.Text = "اجمالي اللجنة";
     this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell44.Weight = 0.82774635570973776D;
     //
     // xrTableCell45
     //
     this.xrTableCell45.Name = "xrTableCell45";
     this.xrTableCell45.StylePriority.UseTextAlignment = false;
     xrSummary13.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary13.IgnoreNullValues = true;
     xrSummary13.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell45.Summary = xrSummary13;
     this.xrTableCell45.Text = "م";
     this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell45.Weight = 0.2093772334961955D;
     //
     // calcTotalEstktaa
     //
     this.calcTotalEstktaa.DataMember = "Rep03";
     this.calcTotalEstktaa.Expression = "[eshtrakmonth] + [rsmmonth] + [estktaa]";
     this.calcTotalEstktaa.Name = "calcTotalEstktaa";
     //
     // calcTotal
     //
     this.calcTotal.DataMember = "Rep03";
     this.calcTotal.Expression = "[monymonth] - [calcTotalEstktaa]\r\n";
     this.calcTotal.Name = "calcTotal";
     //
     // XPCDSubCommitte
     //
     this.XPCDSubCommitte.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.CDSubCommitteDataTable);
     this.XPCDSubCommitte.Session = this.sessionCDSubCommitte;
     //
     // sessionCDSubCommitte
     //
     this.sessionCDSubCommitte.TrackPropertiesModifications = false;
     //
     // pramSubCommitteId
     //
     this.pramSubCommitteId.Description = "اللجنة";
     this.pramSubCommitteId.Name = "pramSubCommitteId";
     this.pramSubCommitteId.Type = typeof(short);
     this.pramSubCommitteId.ValueInfo = "0";
     //
     // cdSubCommitteTableAdapter
     //
     this.cdSubCommitteTableAdapter.ClearBeforeFill = true;
     //
     // rep03TableAdapter
     //
     this.rep03TableAdapter.ClearBeforeFill = true;
     //
     // xlGroupAutoNo
     //
     this.xlGroupAutoNo.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xlGroupAutoNo.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xlGroupAutoNo.LocationFloat = new DevExpress.Utils.PointFloat(1058.585F, 0F);
     this.xlGroupAutoNo.Name = "xlGroupAutoNo";
     this.xlGroupAutoNo.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlGroupAutoNo.SizeF = new System.Drawing.SizeF(57.4989F, 23F);
     this.xlGroupAutoNo.StylePriority.UseBorders = false;
     this.xlGroupAutoNo.StylePriority.UseFont = false;
     this.xlGroupAutoNo.StylePriority.UseTextAlignment = false;
     xrSummary14.Func = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     this.xlGroupAutoNo.Summary = xrSummary14;
     this.xlGroupAutoNo.Text = "م";
     this.xlGroupAutoNo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xlGroupAutoNo.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xlGroupAutoNo_BeforePrint);
     //
     // xrLabel10
     //
     this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.sarfnumber")});
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(917.7516F, 0F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(75.83325F, 23F);
     this.xrLabel10.StylePriority.UseBorders = false;
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel11
     //
     this.xrLabel11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.MMashatId")});
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(993.5849F, 0F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(65F, 23F);
     this.xrLabel11.StylePriority.UseBorders = false;
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel8
     //
     this.xrLabel8.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep03.MMashatName")});
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 0F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(907.7518F, 23F);
     this.xrLabel8.StylePriority.UseBorders = false;
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel8,
     this.xrLabel11,
     this.xrLabel10,
     this.xlGroupAutoNo});
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("sarfnumber", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending),
     new DevExpress.XtraReports.UI.GroupField("MMashatName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.GroupHeader2.HeightF = 23F;
     this.GroupHeader2.KeepTogether = true;
     this.GroupHeader2.Name = "GroupHeader2";
     //
     // FR_ClearZero
     //
     this.FR_ClearZero.Name = "FR_ClearZero";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xpbLogo,
     this.xrLabel2,
     this.xrLabel3,
     this.xlSyndicate,
     this.xrTable2,
     this.xrLabel1,
     this.xrLabel9,
     this.xlDofatSarf,
     this.xrLabel13,
     this.xlSubCommitte,
     this.xrLabel16});
     this.PageHeader.HeightF = 186.0416F;
     this.PageHeader.Name = "PageHeader";
     //
     // XRep03b
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.topMarginBand1,
     this.bottomMarginBand1,
     this.PageFooter,
     this.ReportFooter,
     this.GroupHeader2,
     this.PageHeader});
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
     this.calcTotalEstktaa,
     this.calcTotal});
     this.DataMember = "Rep03";
     this.DataSource = this.dsReports;
     this.DrawGrid = false;
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
     this.FR_ClearZero});
     this.Landscape = true;
     this.Margins = new System.Drawing.Printing.Margins(12, 12, 4, 26);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
     this.pramDofatSarfId,
     this.pramSyndicateId,
     this.pramSubCommitteId});
     this.ReportPrintOptions.DetailCountOnEmptyDataSource = 10;
     this.Version = "12.2";
     this.ParametersRequestBeforeShow += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestBeforeShow);
     this.ParametersRequestSubmit += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestSubmit);
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Exemplo n.º 32
0
 public MockFactObject(DevExpress.Xpo.Session session)
     : base(session)
 {
 }
 public abstract void ComboBoxItem_ItemsRequestedByFilterCondition(
     DevExpress.Xpo.Session session,
     object source,
     DevExpress.Web.ASPxEditors.ListEditItemsRequestedByFilterConditionEventArgs e);
Exemplo n.º 34
0
 void IXpoSessionAwareControl.UpdateDataSource(DevExpress.Xpo.Session session)
 {
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
     this.XPCDSyndicate = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionCDSyndicate = new DevExpress.Xpo.Session(this.components);
     this.XPTBLDofatSarf = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionTBLDofatSarf = new DevExpress.Xpo.Session(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcMemberName = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcSyndicate = new DevExpress.XtraReports.UI.XRTableCell();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xlDofatSarf = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xpbLogo = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xlSyndicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.dsReports = new RetirementCenter.DataSources.dsReports();
     this.pramSyndicateId = new DevExpress.XtraReports.Parameters.Parameter();
     this.pramDofatSarfId = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.rep09TableAdapter = new RetirementCenter.DataSources.dsReportsTableAdapters.Rep09TableAdapter();
     this.calcTotalEstktaa = new DevExpress.XtraReports.UI.CalculatedField();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.calcSafi = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // XPCDSyndicate
     //
     this.XPCDSyndicate.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.CDSyndicateDataTable);
     this.XPCDSyndicate.Session = this.sessionCDSyndicate;
     //
     // sessionCDSyndicate
     //
     this.sessionCDSyndicate.TrackPropertiesModifications = false;
     //
     // XPTBLDofatSarf
     //
     this.XPTBLDofatSarf.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.TBLDofatSarfDataTable);
     this.XPTBLDofatSarf.Session = this.sessionTBLDofatSarf;
     //
     // sessionTBLDofatSarf
     //
     this.sessionTBLDofatSarf.TrackPropertiesModifications = false;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable1});
     this.Detail.HeightF = 25F;
     this.Detail.MultiColumn.ColumnWidth = 326F;
     this.Detail.Name = "Detail";
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("SubCommitteId", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.Detail.StylePriority.UsePadding = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(100F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(943.585F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UsePadding = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell8,
     this.xrTableCell19,
     this.xrTableCell7,
     this.xtcMemberName,
     this.xrTableCell6,
     this.xrTableCell20,
     this.xtcSyndicate});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.calcSafi", "{0:f2}")});
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.Text = "xrTableCell8";
     this.xrTableCell8.Weight = 0.45191113969738705D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.calcTotalEstktaa", "{0:f2}")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.NullValueText = "0";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:f2}";
     this.xrTableCell19.Summary = xrSummary1;
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell19.Weight = 0.45191113969738705D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.estktaa", "{0:f2}")});
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.Text = "xrTableCell7";
     this.xrTableCell7.Weight = 0.4519111208352562D;
     //
     // xtcMemberName
     //
     this.xtcMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.rsmmonth", "{0:f2}")});
     this.xtcMemberName.Name = "xtcMemberName";
     this.xtcMemberName.NullValueText = "0";
     this.xtcMemberName.StylePriority.UseTextAlignment = false;
     this.xtcMemberName.Text = "xtcMemberName";
     this.xtcMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcMemberName.Weight = 0.4519111208352562D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.eshtrakmonth", "{0:f2}")});
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.Text = "xrTableCell6";
     this.xrTableCell6.Weight = 0.42484298984968305D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.monymonth", "{0:f2}")});
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.NullValueText = "0";
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell20.Weight = 0.42484298984968305D;
     //
     // xtcSyndicate
     //
     this.xtcSyndicate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.SubCommitte")});
     this.xtcSyndicate.Name = "xtcSyndicate";
     this.xtcSyndicate.StylePriority.UseTextAlignment = false;
     this.xtcSyndicate.Text = "xtcSyndicate";
     this.xtcSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcSyndicate.Weight = 0.86213871280892129D;
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 6.41667F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // xlDofatSarf
     //
     this.xlDofatSarf.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlDofatSarf.LocationFloat = new DevExpress.Utils.PointFloat(385.1667F, 83.3958F);
     this.xlDofatSarf.Name = "xlDofatSarf";
     this.xlDofatSarf.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlDofatSarf.SizeF = new System.Drawing.SizeF(199.4706F, 23.00001F);
     this.xlDofatSarf.StylePriority.UseFont = false;
     this.xlDofatSarf.StylePriority.UseTextAlignment = false;
     this.xlDofatSarf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(584.6373F, 83.3958F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(188.3626F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "بيان صرف معاشات الدفعة ";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xpbLogo
     //
     this.xpbLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Image", null, "AppOptions.CompanyLogo")});
     this.xpbLogo.LocationFloat = new DevExpress.Utils.PointFloat(10F, 10.00001F);
     this.xpbLogo.Name = "xpbLogo";
     this.xpbLogo.SizeF = new System.Drawing.SizeF(100F, 80F);
     this.xpbLogo.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(100F, 250.4167F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 5, 5, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow3});
     this.xrTable2.SizeF = new System.Drawing.SizeF(943.585F, 31.77084F);
     this.xrTable2.StylePriority.UseBackColor = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseForeColor = false;
     this.xrTable2.StylePriority.UsePadding = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell5,
     this.xrTableCell1,
     this.xrTableCell4,
     this.xrTableCell2,
     this.xrTableCell3,
     this.xrTableCell24,
     this.xrTableCell25});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.Text = "الصافي";
     this.xrTableCell5.Weight = 0.52981399464607359D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "جملة الاستقطاع";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight = 0.52981399464607359D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.Text = "استقطاع";
     this.xrTableCell4.Weight = 0.52981399464607359D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text = "رسم";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight = 0.52981399464607359D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.Text = "اشتراك";
     this.xrTableCell3.Weight = 0.49807974829364682D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.StylePriority.UseTextAlignment = false;
     this.xrTableCell24.Text = "جملة المبلغ";
     this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell24.Weight = 0.49807974829364682D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "اللجنة";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell25.Weight = 1.0107589547893445D;
     //
     // xlSyndicate
     //
     this.xlSyndicate.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlSyndicate.LocationFloat = new DevExpress.Utils.PointFloat(385.1667F, 50.06247F);
     this.xlSyndicate.Name = "xlSyndicate";
     this.xlSyndicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlSyndicate.SizeF = new System.Drawing.SizeF(258.5417F, 23F);
     this.xlSyndicate.StylePriority.UseFont = false;
     this.xlSyndicate.StylePriority.UseTextAlignment = false;
     this.xlSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel3
     //
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(643.7083F, 50.06247F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(130.2083F, 23F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "فرعية";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(889.4178F, 39F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(216.6667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text = "ادارة المعـــــاشـــــات";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(948.7929F, 10.00001F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text = "نقابة المهن التعليمية";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 26.20837F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // dsReports
     //
     this.dsReports.DataSetName = "dsReports";
     this.dsReports.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pramSyndicateId
     //
     this.pramSyndicateId.Description = "الفرعية";
     dynamicListLookUpSettings1.DataAdapter = null;
     dynamicListLookUpSettings1.DataMember = null;
     dynamicListLookUpSettings1.DataSource = this.XPCDSyndicate;
     dynamicListLookUpSettings1.DisplayMember = "Syndicate";
     dynamicListLookUpSettings1.ValueMember = "SyndicateId";
     this.pramSyndicateId.LookUpSettings = dynamicListLookUpSettings1;
     this.pramSyndicateId.Name = "pramSyndicateId";
     this.pramSyndicateId.Type = typeof(int);
     this.pramSyndicateId.ValueInfo = "0";
     //
     // pramDofatSarfId
     //
     this.pramDofatSarfId.Description = "دفعة الصرف";
     dynamicListLookUpSettings2.DataAdapter = null;
     dynamicListLookUpSettings2.DataMember = null;
     dynamicListLookUpSettings2.DataSource = this.XPTBLDofatSarf;
     dynamicListLookUpSettings2.DisplayMember = "DofatSarf";
     dynamicListLookUpSettings2.ValueMember = "DofatSarfId";
     this.pramDofatSarfId.LookUpSettings = dynamicListLookUpSettings2;
     this.pramDofatSarfId.Name = "pramDofatSarfId";
     this.pramDofatSarfId.Type = typeof(int);
     this.pramDofatSarfId.ValueInfo = "0";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel11,
     this.xrLabel10,
     this.xrLabel8,
     this.xrTable4,
     this.xrLabel7});
     this.ReportFooter.HeightF = 186.4583F;
     this.ReportFooter.Name = "ReportFooter";
     //
     // xrLabel11
     //
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(255.2224F, 143.0417F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(208.1542F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "مدير إدارة الحسابات";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel10
     //
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(548.9724F, 143.0417F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(208.1542F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "مدير إدارة المعاشات";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel8
     //
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(721.889F, 110.4791F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(321.6959F, 23F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "تحريراً في";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTable4
     //
     this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(100F, 20.83333F);
     this.xrTable4.Name = "xrTable4";
     this.xrTable4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow5});
     this.xrTable4.SizeF = new System.Drawing.SizeF(943.585F, 25F);
     this.xrTable4.StylePriority.UseBorders = false;
     this.xrTable4.StylePriority.UseFont = false;
     this.xrTable4.StylePriority.UsePadding = false;
     this.xrTable4.StylePriority.UseTextAlignment = false;
     this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell11,
     this.xrTableCell38,
     this.xrTableCell10,
     this.xrTableCell39,
     this.xrTableCell9,
     this.xrTableCell40,
     this.xrTableCell44});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.calcSafi")});
     this.xrTableCell11.Name = "xrTableCell11";
     xrSummary2.FormatString = "{0:f2}";
     xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell11.Summary = xrSummary2;
     this.xrTableCell11.Text = "xrTableCell11";
     this.xrTableCell11.Weight = 0.50736092396792953D;
     //
     // xrTableCell38
     //
     this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.calcTotalEstktaa")});
     this.xrTableCell38.Name = "xrTableCell38";
     this.xrTableCell38.NullValueText = "0";
     this.xrTableCell38.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:f2}";
     xrSummary3.IgnoreNullValues = true;
     xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell38.Summary = xrSummary3;
     this.xrTableCell38.Text = "xrTableCell38";
     this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell38.Weight = 0.50736092396792953D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.estktaa")});
     this.xrTableCell10.Name = "xrTableCell10";
     xrSummary4.FormatString = "{0:f2}";
     xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell10.Summary = xrSummary4;
     this.xrTableCell10.Text = "xrTableCell10";
     this.xrTableCell10.Weight = 0.5073610629537747D;
     //
     // xrTableCell39
     //
     this.xrTableCell39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.rsmmonth")});
     this.xrTableCell39.Name = "xrTableCell39";
     this.xrTableCell39.NullValueText = "0";
     this.xrTableCell39.StylePriority.UseTextAlignment = false;
     xrSummary5.FormatString = "{0:f2}";
     xrSummary5.IgnoreNullValues = true;
     xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell39.Summary = xrSummary5;
     this.xrTableCell39.Text = "xrTableCell39";
     this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell39.Weight = 0.5073610629537747D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.eshtrakmonth")});
     this.xrTableCell9.Name = "xrTableCell9";
     xrSummary6.FormatString = "{0:f2}";
     xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell9.Summary = xrSummary6;
     this.xrTableCell9.Text = "xrTableCell9";
     this.xrTableCell9.Weight = 0.47697128829751984D;
     //
     // xrTableCell40
     //
     this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep09.monymonth")});
     this.xrTableCell40.Name = "xrTableCell40";
     this.xrTableCell40.NullValueText = "0";
     this.xrTableCell40.StylePriority.UseTextAlignment = false;
     xrSummary7.FormatString = "{0:f2}";
     xrSummary7.IgnoreNullValues = true;
     xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell40.Summary = xrSummary7;
     this.xrTableCell40.Text = "xrTableCell40";
     this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell40.Weight = 0.47697128829751984D;
     //
     // xrTableCell44
     //
     this.xrTableCell44.Name = "xrTableCell44";
     this.xrTableCell44.StylePriority.UseTextAlignment = false;
     xrSummary8.IgnoreNullValues = true;
     this.xrTableCell44.Summary = xrSummary8;
     this.xrTableCell44.Text = "الجمـــــــــــلة";
     this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell44.Weight = 0.967924020158963D;
     //
     // xrLabel7
     //
     this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(721.889F, 78.18747F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(321.6959F, 23F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text = "هذا ولسيادتكم وافر التقدير والاحترام";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // rep09TableAdapter
     //
     this.rep09TableAdapter.ClearBeforeFill = true;
     //
     // calcTotalEstktaa
     //
     this.calcTotalEstktaa.DataMember = "Rep09";
     this.calcTotalEstktaa.Expression = "[eshtrakmonth] + [estktaa] + [rsmmonth]";
     this.calcTotalEstktaa.FieldType = DevExpress.XtraReports.UI.FieldType.Double;
     this.calcTotalEstktaa.Name = "calcTotalEstktaa";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel6,
     this.xrLabel5,
     this.xrLabel4,
     this.xpbLogo,
     this.xrLabel2,
     this.xrLabel3,
     this.xlSyndicate,
     this.xrTable2,
     this.xrLabel1,
     this.xrLabel9,
     this.xlDofatSarf});
     this.PageHeader.HeightF = 292.1875F;
     this.PageHeader.Name = "PageHeader";
     //
     // xrLabel6
     //
     this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(175F, 200F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(787.3209F, 23F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text = "الرجاء من سيادتكم التكرم بالموافقة على صرف معاشات الأعضاء والورثة للنقابة الفرعية" +
     " سالفة الذكر وفق البيان التالي ";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel5
     //
     this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(595.8474F, 164.7291F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(133.1542F, 23F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text = "تحية طيبة وبعد";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel4
     //
     this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(721.889F, 141.7291F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(321.6959F, 23F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text = "السيد الاستاذ : أمين صندوق نقابة المهن التعليمية";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // calcSafi
     //
     this.calcSafi.DataMember = "Rep09";
     this.calcSafi.Expression = "[monymonth] - [calcTotalEstktaa]";
     this.calcSafi.Name = "calcSafi";
     //
     // XRep09
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.topMarginBand1,
     this.bottomMarginBand1,
     this.ReportFooter,
     this.PageHeader});
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
     this.calcTotalEstktaa,
     this.calcSafi});
     this.DataMember = "Rep09";
     this.DataSource = this.dsReports;
     this.DrawGrid = false;
     this.Landscape = true;
     this.Margins = new System.Drawing.Printing.Margins(12, 12, 6, 26);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
     this.pramSyndicateId,
     this.pramDofatSarfId});
     this.ReportPrintOptions.DetailCountOnEmptyDataSource = 10;
     this.Version = "12.2";
     this.ParametersRequestBeforeShow += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestBeforeShow);
     this.ParametersRequestSubmit += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestSubmit);
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 public override void LoadTransaction(DevExpress.Xpo.Session session)
 {
     base.LoadFinancialSalesOrManufacturerExpenseDetail(session, this.fFinancialTransformData);
 }
 /// <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.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtpGeneral = new DevExpress.XtraTab.XtraTabPage();
     this.lueamanattypeid = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colamanattype = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.lueDofatSarfId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.cesarfcheek = new DevExpress.XtraEditors.CheckEdit();
     this.ceamantvisa = new DevExpress.XtraEditors.CheckEdit();
     this.luePersonId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lueDofatSarfAId = new DevExpress.XtraEditors.GridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tbamanatrem = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.tbsefa = new DevExpress.XtraEditors.TextEdit();
     this.tbmostahek = new DevExpress.XtraEditors.TextEdit();
     this.tbestktaa = new DevExpress.XtraEditors.TextEdit();
     this.tbamanatmony = new DevExpress.XtraEditors.TextEdit();
     this.colMonthName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colYearName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMonthName1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.sessionvtblWarasabank2 = new DevExpress.Xpo.Session(this.components);
     this.XPCvtblWarasabank2 = new DevExpress.Xpo.XPCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtpGeneral.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueamanattypeid.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cesarfcheek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceamantvisa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luePersonId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatrem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbsefa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbmostahek.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbestktaa.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatmony.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionvtblWarasabank2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCvtblWarasabank2)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl2.Location = new System.Drawing.Point(419, 59);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 19);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "الاسم";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl4.Location = new System.Drawing.Point(412, 284);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(50, 19);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "ملاحظة";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.panelControl1.Controls.Add(this.btnClose);
     this.panelControl1.Location = new System.Drawing.Point(10, 614);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(520, 44);
     this.panelControl1.TabIndex = 1;
     //
     // btnClose
     //
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Image = global::RetirementCenter.Properties.Resources.Delete;
     this.btnClose.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(7, 7);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(90, 30);
     this.btnClose.TabIndex = 11;
     this.btnClose.Text = "اغلاق";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = global::RetirementCenter.Properties.Resources.Save;
     this.btnSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleRight;
     this.btnSave.Location = new System.Drawing.Point(312, 502);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(150, 30);
     this.btnSave.TabIndex = 10;
     this.btnSave.Text = "حفـــــــــــــــــــــــــظ";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(5, 12);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.xtraTabControl1.SelectedTabPage = this.xtpGeneral;
     this.xtraTabControl1.Size = new System.Drawing.Size(525, 596);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtpGeneral});
     //
     // xtpGeneral
     //
     this.xtpGeneral.Controls.Add(this.lueamanattypeid);
     this.xtpGeneral.Controls.Add(this.labelControl9);
     this.xtpGeneral.Controls.Add(this.lueDofatSarfId);
     this.xtpGeneral.Controls.Add(this.labelControl8);
     this.xtpGeneral.Controls.Add(this.cesarfcheek);
     this.xtpGeneral.Controls.Add(this.ceamantvisa);
     this.xtpGeneral.Controls.Add(this.btnSave);
     this.xtpGeneral.Controls.Add(this.luePersonId);
     this.xtpGeneral.Controls.Add(this.lueDofatSarfAId);
     this.xtpGeneral.Controls.Add(this.tbamanatrem);
     this.xtpGeneral.Controls.Add(this.labelControl6);
     this.xtpGeneral.Controls.Add(this.labelControl2);
     this.xtpGeneral.Controls.Add(this.labelControl7);
     this.xtpGeneral.Controls.Add(this.labelControl5);
     this.xtpGeneral.Controls.Add(this.labelControl3);
     this.xtpGeneral.Controls.Add(this.labelControl1);
     this.xtpGeneral.Controls.Add(this.labelControl4);
     this.xtpGeneral.Controls.Add(this.tbsefa);
     this.xtpGeneral.Controls.Add(this.tbmostahek);
     this.xtpGeneral.Controls.Add(this.tbestktaa);
     this.xtpGeneral.Controls.Add(this.tbamanatmony);
     this.xtpGeneral.Image = global::RetirementCenter.Properties.Resources.Edit;
     this.xtpGeneral.Name = "xtpGeneral";
     this.xtpGeneral.Size = new System.Drawing.Size(519, 549);
     this.xtpGeneral.Text = "بيانات أساسيه";
     //
     // lueamanattypeid
     //
     this.lueamanattypeid.EditValue = "";
     this.lueamanattypeid.Location = new System.Drawing.Point(53, 424);
     this.lueamanattypeid.Name = "lueamanattypeid";
     this.lueamanattypeid.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueamanattypeid.Properties.Appearance.Options.UseFont = true;
     this.lueamanattypeid.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueamanattypeid.Properties.DataSource = this.LSMScd_amanattype;
     this.lueamanattypeid.Properties.DisplayMember = "amanattype";
     this.lueamanattypeid.Properties.NullText = "";
     this.lueamanattypeid.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueamanattypeid.Properties.ValueMember = "amanattypeid";
     this.lueamanattypeid.Properties.View = this.gridView3;
     this.lueamanattypeid.Size = new System.Drawing.Size(233, 26);
     this.lueamanattypeid.TabIndex = 8;
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colamanattype});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // colamanattype
     //
     this.colamanattype.Caption = "الاسم";
     this.colamanattype.FieldName = "amanattype";
     this.colamanattype.Name = "colamanattype";
     this.colamanattype.Visible = true;
     this.colamanattype.VisibleIndex = 0;
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl9.Location = new System.Drawing.Point(385, 427);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(75, 19);
     this.labelControl9.TabIndex = 10;
     this.labelControl9.Text = "نوع الامانات";
     //
     // lueDofatSarfId
     //
     this.lueDofatSarfId.EditValue = "";
     this.lueDofatSarfId.Location = new System.Drawing.Point(53, 382);
     this.lueDofatSarfId.Name = "lueDofatSarfId";
     this.lueDofatSarfId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfId.Properties.DataSource = this.LSMSDofatSarfId;
     this.lueDofatSarfId.Properties.DisplayMember = "DofatSarfA";
     this.lueDofatSarfId.Properties.NullText = "";
     this.lueDofatSarfId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfId.Properties.ValueMember = "DofatSarfAId";
     this.lueDofatSarfId.Properties.View = this.gridView2;
     this.lueDofatSarfId.Size = new System.Drawing.Size(233, 26);
     this.lueDofatSarfId.TabIndex = 8;
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.CdDofaatAmanat);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfAId]";
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = 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 = "DofatSarfA";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl8.Location = new System.Drawing.Point(353, 385);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(107, 19);
     this.labelControl8.TabIndex = 10;
     this.labelControl8.Text = "سيصرف بالدفعة";
     //
     // cesarfcheek
     //
     this.cesarfcheek.Location = new System.Drawing.Point(345, 466);
     this.cesarfcheek.Name = "cesarfcheek";
     this.cesarfcheek.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.cesarfcheek.Properties.Appearance.Options.UseFont = true;
     this.cesarfcheek.Properties.Appearance.Options.UseTextOptions = true;
     this.cesarfcheek.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.cesarfcheek.Properties.Caption = "تصرف بشيك";
     this.cesarfcheek.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cesarfcheek.Size = new System.Drawing.Size(115, 24);
     this.cesarfcheek.TabIndex = 9;
     this.cesarfcheek.CheckedChanged += new System.EventHandler(this.ceamantvisa_CheckedChanged);
     //
     // ceamantvisa
     //
     this.ceamantvisa.Location = new System.Drawing.Point(359, 13);
     this.ceamantvisa.Name = "ceamantvisa";
     this.ceamantvisa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.ceamantvisa.Properties.Appearance.Options.UseFont = true;
     this.ceamantvisa.Properties.Appearance.Options.UseTextOptions = true;
     this.ceamantvisa.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.ceamantvisa.Properties.Caption = "امانات فيزا";
     this.ceamantvisa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.ceamantvisa.Size = new System.Drawing.Size(101, 24);
     this.ceamantvisa.TabIndex = 0;
     this.ceamantvisa.CheckedChanged += new System.EventHandler(this.ceamantvisa_CheckedChanged);
     //
     // luePersonId
     //
     this.luePersonId.EditValue = "";
     this.luePersonId.Location = new System.Drawing.Point(53, 56);
     this.luePersonId.Name = "luePersonId";
     this.luePersonId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.luePersonId.Properties.Appearance.Options.UseFont = true;
     this.luePersonId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luePersonId.Properties.DataSource = this.LSMSTBLWarasa;
     this.luePersonId.Properties.DisplayMember = "personName";
     this.luePersonId.Properties.NullText = "";
     this.luePersonId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.luePersonId.Properties.ValueMember = "PersonId";
     this.luePersonId.Properties.View = this.gridView1;
     this.luePersonId.Size = new System.Drawing.Size(233, 26);
     this.luePersonId.TabIndex = 2;
     this.luePersonId.EditValueChanged += new System.EventHandler(this.luePersonId_EditValueChanged);
     //
     // LSMSTBLWarasa
     //
     this.LSMSTBLWarasa.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLWarasa_TBLMashat);
     this.LSMSTBLWarasa.KeyExpression = "PersonId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatId,
     this.gridColumn1,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte,
     this.colpersonName,
     this.gridColumn3});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 1;
     //
     // 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 = "MMashatName";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم صرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 3;
     //
     // colSyndicate1
     //
     this.colSyndicate1.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.Caption = "فرعية";
     this.colSyndicate1.FieldName = "Syndicate";
     this.colSyndicate1.Name = "colSyndicate1";
     this.colSyndicate1.Visible = true;
     this.colSyndicate1.VisibleIndex = 5;
     //
     // 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 = 4;
     //
     // 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;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "كود60";
     this.gridColumn3.FieldName = "CODE60";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 6;
     //
     // lueDofatSarfAId
     //
     this.lueDofatSarfAId.EditValue = "";
     this.lueDofatSarfAId.Location = new System.Drawing.Point(53, 90);
     this.lueDofatSarfAId.Name = "lueDofatSarfAId";
     this.lueDofatSarfAId.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.lueDofatSarfAId.Properties.Appearance.Options.UseFont = true;
     this.lueDofatSarfAId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDofatSarfAId.Properties.DataSource = this.cdDofaatAmanatBindingSource;
     this.lueDofatSarfAId.Properties.DisplayMember = "DofatSarfA";
     this.lueDofatSarfAId.Properties.NullText = "";
     this.lueDofatSarfAId.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDofatSarfAId.Properties.ValueMember = "DofatSarfAId";
     this.lueDofatSarfAId.Properties.View = this.gridLookUpEdit1View;
     this.lueDofatSarfAId.Size = new System.Drawing.Size(233, 26);
     this.lueDofatSarfAId.TabIndex = 0;
     this.lueDofatSarfAId.EditValueChanged += new System.EventHandler(this.lueDofatSarfAId_EditValueChanged);
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الاسم";
     this.colSyndicate.FieldName = "DofatSarfA";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     //
     // tbamanatrem
     //
     this.tbamanatrem.Location = new System.Drawing.Point(53, 286);
     this.tbamanatrem.Name = "tbamanatrem";
     this.tbamanatrem.Size = new System.Drawing.Size(233, 80);
     this.tbamanatrem.TabIndex = 7;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl6.Location = new System.Drawing.Point(418, 93);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(42, 19);
     this.labelControl6.TabIndex = 0;
     this.labelControl6.Text = "الدفعة";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl7.Location = new System.Drawing.Point(422, 247);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(38, 19);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "الصفه";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl5.Location = new System.Drawing.Point(393, 208);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(67, 19);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "المستحق";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl3.Location = new System.Drawing.Point(390, 169);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(70, 19);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "الاستقطاع";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.labelControl1.Location = new System.Drawing.Point(420, 128);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(40, 19);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "المبلغ";
     //
     // tbsefa
     //
     this.tbsefa.Location = new System.Drawing.Point(53, 244);
     this.tbsefa.Name = "tbsefa";
     this.tbsefa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbsefa.Properties.Appearance.Options.UseFont = true;
     this.tbsefa.Size = new System.Drawing.Size(233, 26);
     this.tbsefa.TabIndex = 6;
     //
     // tbmostahek
     //
     this.tbmostahek.Location = new System.Drawing.Point(53, 205);
     this.tbmostahek.Name = "tbmostahek";
     this.tbmostahek.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbmostahek.Properties.Appearance.Options.UseFont = true;
     this.tbmostahek.Size = new System.Drawing.Size(233, 26);
     this.tbmostahek.TabIndex = 5;
     //
     // tbestktaa
     //
     this.tbestktaa.Location = new System.Drawing.Point(53, 166);
     this.tbestktaa.Name = "tbestktaa";
     this.tbestktaa.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbestktaa.Properties.Appearance.Options.UseFont = true;
     this.tbestktaa.Properties.DisplayFormat.FormatString = "f2";
     this.tbestktaa.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbestktaa.Properties.EditFormat.FormatString = "f2";
     this.tbestktaa.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbestktaa.Properties.Mask.EditMask = "f2";
     this.tbestktaa.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbestktaa.Size = new System.Drawing.Size(233, 26);
     this.tbestktaa.TabIndex = 4;
     //
     // tbamanatmony
     //
     this.tbamanatmony.EditValue = "0";
     this.tbamanatmony.Location = new System.Drawing.Point(53, 125);
     this.tbamanatmony.Name = "tbamanatmony";
     this.tbamanatmony.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F);
     this.tbamanatmony.Properties.Appearance.Options.UseFont = true;
     this.tbamanatmony.Properties.DisplayFormat.FormatString = "f2";
     this.tbamanatmony.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbamanatmony.Properties.EditFormat.FormatString = "f2";
     this.tbamanatmony.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.tbamanatmony.Properties.Mask.EditMask = "f2";
     this.tbamanatmony.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbamanatmony.Size = new System.Drawing.Size(233, 26);
     this.tbamanatmony.TabIndex = 3;
     //
     // colMonthName
     //
     this.colMonthName.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName.Caption = "اسم الشهر";
     this.colMonthName.FieldName = "MonthName";
     this.colMonthName.Name = "colMonthName";
     this.colMonthName.Visible = true;
     this.colMonthName.VisibleIndex = 0;
     //
     // colYearName
     //
     this.colYearName.AppearanceCell.Options.UseTextOptions = true;
     this.colYearName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.AppearanceHeader.Options.UseTextOptions = true;
     this.colYearName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colYearName.Caption = "اسم السنه";
     this.colYearName.FieldName = "YearName";
     this.colYearName.Name = "colYearName";
     this.colYearName.Visible = true;
     this.colYearName.VisibleIndex = 0;
     //
     // colMonthName1
     //
     this.colMonthName1.AppearanceCell.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.AppearanceHeader.Options.UseTextOptions = true;
     this.colMonthName1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMonthName1.Caption = "اسم الشهر";
     this.colMonthName1.FieldName = "MonthName";
     this.colMonthName1.Name = "colMonthName1";
     this.colMonthName1.Visible = true;
     this.colMonthName1.VisibleIndex = 0;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // sessionvtblWarasabank2
     //
     this.sessionvtblWarasabank2.TrackPropertiesModifications = false;
     //
     // XPCvtblWarasabank2
     //
     this.XPCvtblWarasabank2.CriteriaString = "1 = 2";
     this.XPCvtblWarasabank2.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.vtblWarasabank2DataTable);
     this.XPCvtblWarasabank2.Session = this.sessionvtblWarasabank2;
     //
     // TblWarasaAmanatW2Frm
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnClose;
     this.ClientSize = new System.Drawing.Size(542, 666);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox = false;
     this.Name = "TblWarasaAmanatW2Frm";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "تحرير";
     this.Load += new System.EventHandler(this.FormWFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtpGeneral.ResumeLayout(false);
     this.xtpGeneral.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueamanattypeid.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cesarfcheek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceamantvisa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luePersonId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDofatSarfAId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatrem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbsefa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbmostahek.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbestktaa.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbamanatmony.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionvtblWarasabank2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCvtblWarasabank2)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 38
0
 public PersonBase(DevExpress.Xpo.Session session) : base(session)
 {
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.XPCDSyndicate = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionCDSyndicate = new DevExpress.Xpo.Session(this.components);
     this.XPTBLDofatSarf = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionTBLDofatSarf = new DevExpress.Xpo.Session(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcMemberName = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xtcSyndicate = new DevExpress.XtraReports.UI.XRTableCell();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xlDofatSarf = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xpbLogo = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xlSyndicate = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.dsReports = new RetirementCenter.DataSources.dsReports();
     this.pramSyndicateId = new DevExpress.XtraReports.Parameters.Parameter();
     this.pramDofatSarfId = new DevExpress.XtraReports.Parameters.Parameter();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.calcTotal = new DevExpress.XtraReports.UI.CalculatedField();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.rep06TableAdapter = new RetirementCenter.DataSources.dsReportsTableAdapters.Rep06TableAdapter();
     this.calcEstktaaTotal = new DevExpress.XtraReports.UI.CalculatedField();
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // XPCDSyndicate
     //
     this.XPCDSyndicate.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.CDSyndicateDataTable);
     this.XPCDSyndicate.Session = this.sessionCDSyndicate;
     //
     // sessionCDSyndicate
     //
     this.sessionCDSyndicate.TrackPropertiesModifications = false;
     //
     // XPTBLDofatSarf
     //
     this.XPTBLDofatSarf.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.TBLDofatSarfDataTable);
     this.XPTBLDofatSarf.Session = this.sessionTBLDofatSarf;
     //
     // sessionTBLDofatSarf
     //
     this.sessionTBLDofatSarf.TrackPropertiesModifications = false;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable1});
     this.Detail.HeightF = 25F;
     this.Detail.MultiColumn.ColumnWidth = 326F;
     this.Detail.Name = "Detail";
     this.Detail.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("num", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.Detail.StylePriority.UsePadding = false;
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(1125F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UsePadding = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell21,
     this.xrTableCell16,
     this.xrTableCell13,
     this.xrTableCell19,
     this.xtcMemberName,
     this.xrTableCell20,
     this.xtcSyndicate});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.calcTotal", "{0:f2}")});
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "xrTableCell21";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell21.Weight = 0.48750813060081821D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.calcEstktaaTotal", "{0:f2}")});
     this.xrTableCell16.Name = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     this.xrTableCell16.Text = "xrTableCell16";
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight = 0.48750825277053128D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.estktaa", "{0:f2}")});
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text = "xrTableCell13";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell13.Weight = 0.42101640395267076D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.rsmmonth", "{0:f2}")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.NullValueText = "0";
     this.xrTableCell19.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:f2}";
     this.xrTableCell19.Summary = xrSummary1;
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell19.Weight = 0.43212318167769093D;
     //
     // xtcMemberName
     //
     this.xtcMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.eshtrakmonth", "{0:f2}")});
     this.xtcMemberName.Name = "xtcMemberName";
     this.xtcMemberName.NullValueText = "0";
     this.xtcMemberName.StylePriority.UseTextAlignment = false;
     this.xtcMemberName.Text = "xtcMemberName";
     this.xtcMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcMemberName.Weight = 0.426569828169589D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.monymonth", "{0:f2}")});
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.NullValueText = "0";
     this.xrTableCell20.StylePriority.UseTextAlignment = false;
     this.xrTableCell20.Text = "xrTableCell20";
     this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell20.Weight = 0.48750786663434209D;
     //
     // xtcSyndicate
     //
     this.xtcSyndicate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "Rep06.Txt")});
     this.xtcSyndicate.Name = "xtcSyndicate";
     this.xtcSyndicate.StylePriority.UseTextAlignment = false;
     this.xtcSyndicate.Text = "xtcSyndicate";
     this.xtcSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xtcSyndicate.Weight = 0.68562530528061683D;
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 6.41667F;
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // xlDofatSarf
     //
     this.xlDofatSarf.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlDofatSarf.LocationFloat = new DevExpress.Utils.PointFloat(507.7519F, 82.35413F);
     this.xlDofatSarf.Name = "xlDofatSarf";
     this.xlDofatSarf.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlDofatSarf.SizeF = new System.Drawing.SizeF(148.4289F, 23.00001F);
     this.xlDofatSarf.StylePriority.UseFont = false;
     this.xlDofatSarf.StylePriority.UseTextAlignment = false;
     this.xlDofatSarf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(656.1807F, 82.35413F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(129.2915F, 23F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "كشف تفريغ اجمالي";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xpbLogo
     //
     this.xpbLogo.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Image", null, "AppOptions.CompanyLogo")});
     this.xpbLogo.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 10.00001F);
     this.xpbLogo.Name = "xpbLogo";
     this.xpbLogo.SizeF = new System.Drawing.SizeF(100F, 80F);
     this.xpbLogo.Sizing = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // xlSyndicate
     //
     this.xlSyndicate.Font = new System.Drawing.Font("Times New Roman", 14F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xlSyndicate.LocationFloat = new DevExpress.Utils.PointFloat(213.5138F, 82.35413F);
     this.xlSyndicate.Name = "xlSyndicate";
     this.xlSyndicate.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xlSyndicate.SizeF = new System.Drawing.SizeF(254.6546F, 23F);
     this.xlSyndicate.StylePriority.UseFont = false;
     this.xlSyndicate.StylePriority.UseTextAlignment = false;
     this.xlSyndicate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel3
     //
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(468.1685F, 82.35413F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(39.58331F, 23F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "لنقابة";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(889.4178F, 39F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(216.6667F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text = "ادارة المعـــــاشـــــات";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(948.7929F, 10.00001F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text = "نقابة المهن التعليمية";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 26.20837F;
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // dsReports
     //
     this.dsReports.DataSetName = "dsReports";
     this.dsReports.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pramSyndicateId
     //
     this.pramSyndicateId.Description = "الفرعية";
     dynamicListLookUpSettings1.DataAdapter = null;
     dynamicListLookUpSettings1.DataMember = null;
     dynamicListLookUpSettings1.DataSource = this.XPCDSyndicate;
     dynamicListLookUpSettings1.DisplayMember = "Syndicate";
     dynamicListLookUpSettings1.ValueMember = "SyndicateId";
     this.pramSyndicateId.LookUpSettings = dynamicListLookUpSettings1;
     this.pramSyndicateId.Name = "pramSyndicateId";
     this.pramSyndicateId.Type = typeof(int);
     this.pramSyndicateId.ValueInfo = "0";
     //
     // pramDofatSarfId
     //
     this.pramDofatSarfId.Description = "دفعة الصرف";
     dynamicListLookUpSettings2.DataAdapter = null;
     dynamicListLookUpSettings2.DataMember = null;
     dynamicListLookUpSettings2.DataSource = this.XPTBLDofatSarf;
     dynamicListLookUpSettings2.DisplayMember = "DofatSarf";
     dynamicListLookUpSettings2.ValueMember = "DofatSarfId";
     this.pramDofatSarfId.LookUpSettings = dynamicListLookUpSettings2;
     this.pramDofatSarfId.Name = "pramDofatSarfId";
     this.pramDofatSarfId.Type = typeof(int);
     this.pramDofatSarfId.ValueInfo = "0";
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel7,
     this.xrLabel11,
     this.xrLabel10,
     this.xrLabel8});
     this.ReportFooter.HeightF = 56.00002F;
     this.ReportFooter.Name = "ReportFooter";
     //
     // xrLabel7
     //
     this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(255.2224F, 33.00002F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(208.1542F, 23F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text = "مدير المعاشات";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel11
     //
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(255.2224F, 10.00002F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(208.1542F, 23F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "يعتــــــــمد";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel10
     //
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(548.9724F, 10.00002F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(208.1542F, 23F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "مراجع المعاشات";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLabel8
     //
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 14F);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(856.264F, 10F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(129.2915F, 23F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "عضو المعاشات";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // calcTotal
     //
     this.calcTotal.DataMember = "Rep06";
     this.calcTotal.Expression = "[monymonth] - [calcEstktaaTotal]";
     this.calcTotal.FieldType = DevExpress.XtraReports.UI.FieldType.Double;
     this.calcTotal.Name = "calcTotal";
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable2,
     this.xpbLogo,
     this.xrLabel2,
     this.xrLabel3,
     this.xlSyndicate,
     this.xrLabel1,
     this.xrLabel9,
     this.xlDofatSarf});
     this.PageHeader.HeightF = 175.5209F;
     this.PageHeader.Name = "PageHeader";
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
     | DevExpress.XtraPrinting.BorderSide.Right)
     | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(9.999998F, 125.5209F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow3,
     this.xrTableRow5});
     this.xrTable2.SizeF = new System.Drawing.SizeF(1125F, 50.00001F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UsePadding = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell1,
     this.xrTableCell2,
     this.xrTableCell7,
     this.xrTableCell8});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight = 0.49180337657569523D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text = "الاستقطاعات";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight = 1.7827872889487095D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight = 0.49180367676143083D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight = 0.69166602740911332D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell14,
     this.xrTableCell22,
     this.xrTableCell23,
     this.xrTableCell24,
     this.xrTableCell25,
     this.xrTableCell26,
     this.xrTableCell27});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.Text = "الصافي";
     this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight = 0.49180342081319461D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.StylePriority.UseTextAlignment = false;
     this.xrTableCell22.Text = "الجمله";
     this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell22.Weight = 0.49180340230052311D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.StylePriority.UseTextAlignment = false;
     this.xrTableCell23.Text = "استبعادات";
     this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell23.Weight = 0.43032798449421039D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.StylePriority.UseTextAlignment = false;
     this.xrTableCell24.Text = "رسم";
     this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell24.Weight = 0.43032808037691861D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "اشتراكات";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell25.Weight = 0.43032795139228613D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.StylePriority.UseTextAlignment = false;
     this.xrTableCell26.Text = "جملة المعاش";
     this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell26.Weight = 0.49180324697395272D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.StylePriority.UseTextAlignment = false;
     this.xrTableCell27.Text = "البيان";
     this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell27.Weight = 0.69166628334386271D;
     //
     // rep06TableAdapter
     //
     this.rep06TableAdapter.ClearBeforeFill = true;
     //
     // calcEstktaaTotal
     //
     this.calcEstktaaTotal.DataMember = "Rep06";
     this.calcEstktaaTotal.DisplayName = "calcEstktaaTotal";
     this.calcEstktaaTotal.Expression = "[eshtrakmonth] + [rsmmonth] + [estktaa]";
     this.calcEstktaaTotal.FieldType = DevExpress.XtraReports.UI.FieldType.Double;
     this.calcEstktaaTotal.Name = "calcEstktaaTotal";
     //
     // XRep06
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.topMarginBand1,
     this.bottomMarginBand1,
     this.ReportFooter,
     this.PageHeader});
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
     this.calcEstktaaTotal,
     this.calcTotal});
     this.DataMember = "Rep06";
     this.DataSource = this.dsReports;
     this.DrawGrid = false;
     this.Landscape = true;
     this.Margins = new System.Drawing.Printing.Margins(12, 12, 6, 26);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
     this.pramSyndicateId,
     this.pramDofatSarfId});
     this.ReportPrintOptions.DetailCountOnEmptyDataSource = 10;
     this.Version = "12.2";
     this.ParametersRequestBeforeShow += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestBeforeShow);
     this.ParametersRequestSubmit += new System.EventHandler<DevExpress.XtraReports.Parameters.ParametersRequestEventArgs>(this.XRep01_ParametersRequestSubmit);
     ((System.ComponentModel.ISupportInitialize)(this.XPCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLDofatSarf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsReports)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMSData = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditMMashatId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.XPCSTBLMashat = new DevExpress.Xpo.XPServerCollectionSource(this.components);
     this.sessionTBLMashat = new DevExpress.Xpo.Session(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMashHala = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmemo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditmemo = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colDocDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.tblProofDocTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TBLProofDocTableAdapter();
     this.tblProofDocbindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditMMashatId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCSTBLMashat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLMashat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditmemo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tblProofDocbindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.LSMSData;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemDateEditDMY,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditmemo,
     this.repositoryItemGridLookUpEditMMashatId});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // LSMSData
     //
     this.LSMSData.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLProofDoc);
     this.LSMSData.KeyExpression = "ProofDocId";
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatId,
     this.colmemo,
     this.colDocDate,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "اسم العضو";
     this.colMMashatId.ColumnEdit = this.repositoryItemGridLookUpEditMMashatId;
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.ReadOnly = true;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     this.colMMashatId.Width = 150;
     //
     // repositoryItemGridLookUpEditMMashatId
     //
     this.repositoryItemGridLookUpEditMMashatId.AutoHeight = false;
     this.repositoryItemGridLookUpEditMMashatId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditMMashatId.DataSource = this.XPCSTBLMashat;
     this.repositoryItemGridLookUpEditMMashatId.DisplayMember = "MMashatName";
     this.repositoryItemGridLookUpEditMMashatId.Name = "repositoryItemGridLookUpEditMMashatId";
     this.repositoryItemGridLookUpEditMMashatId.ValueMember = "MMashatId";
     this.repositoryItemGridLookUpEditMMashatId.View = this.gridView1;
     //
     // XPCSTBLMashat
     //
     this.XPCSTBLMashat.ObjectType = typeof(RetirementCenter.DataSources.dsQueries.TBLMashatDataTable);
     this.XPCSTBLMashat.Session = this.sessionTBLMashat;
     //
     // sessionTBLMashat
     //
     this.sessionTBLMashat.TrackPropertiesModifications = false;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colsarfnumber,
     this.colMashHala,
     this.colSyndicate,
     this.colSubCommitte,
     this.colyasref});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "الاسم";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 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 = 0;
     //
     // 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 = 2;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 3;
     //
     // 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 = 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;
     //
     // colmemo
     //
     this.colmemo.AppearanceCell.Options.UseTextOptions = true;
     this.colmemo.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmemo.AppearanceHeader.Options.UseTextOptions = true;
     this.colmemo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmemo.Caption = "ملاحظات";
     this.colmemo.ColumnEdit = this.repositoryItemMemoExEditmemo;
     this.colmemo.FieldName = "memo";
     this.colmemo.Name = "colmemo";
     this.colmemo.OptionsColumn.ReadOnly = true;
     this.colmemo.Visible = true;
     this.colmemo.VisibleIndex = 1;
     //
     // repositoryItemMemoExEditmemo
     //
     this.repositoryItemMemoExEditmemo.AutoHeight = false;
     this.repositoryItemMemoExEditmemo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditmemo.Name = "repositoryItemMemoExEditmemo";
     //
     // colDocDate
     //
     this.colDocDate.AppearanceCell.Options.UseTextOptions = true;
     this.colDocDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDocDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colDocDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDocDate.Caption = "التاريخ";
     this.colDocDate.ColumnEdit = this.repositoryItemDateEditDMY;
     this.colDocDate.FieldName = "DocDate";
     this.colDocDate.Name = "colDocDate";
     this.colDocDate.OptionsColumn.ReadOnly = true;
     this.colDocDate.Visible = true;
     this.colDocDate.VisibleIndex = 2;
     this.colDocDate.Width = 81;
     //
     // 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()});
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.OptionsColumn.ReadOnly = true;
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 3;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.OptionsColumn.ReadOnly = true;
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 4;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 5;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 6;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "اسم الشهر";
     this.gridColumn2.FieldName = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // tblProofDocTableAdapter
     //
     this.tblProofDocTableAdapter.ClearBeforeFill = true;
     //
     // tblProofDocbindingSource
     //
     this.tblProofDocbindingSource.DataMember = "TBLProofDoc";
     this.tblProofDocbindingSource.DataSource = this.dsRetirementCenter;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // TBLProofDocFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TBLProofDocFrm";
     this.Text = "بيان المعاش";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditMMashatId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XPCSTBLMashat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sessionTBLMashat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditmemo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tblProofDocbindingSource)).EndInit();
     this.ResumeLayout(false);
 }