private void ExportToExcel()
 {
     try
     {
         if (fill != null && fill.Count > 0)
         {
             //var datax = dataLoad.Skip(index).Take(Core.LimitDisplayExportExcel).ToList();
             //index += Core.LimitDisplayExportExcel;
             bool check = WriteReportHelper.ExportMonopoly(fill, filepath);
             GC.Collect();
             statusMain.Invoke(new MethodInvoker(delegate
             {
                 lbOperation.Text = "Export to excel is successfull";
             }));
         }
         toolMain.Invoke(new MethodInvoker(delegate
         {
             btnExport.Enabled = true;
         }));
     }
     catch (Exception)
     {
         throw;
     }
 }