Esempio n. 1
0
 private void Save_Click(object sender, EventArgs e)
 {
     if (saveFileDialog.ShowDialog() == DialogResult.OK)
     {
         try
         {
             ToolsFile file = new ToolsFile(saveFileDialog.FileName);
             file.WriteStr(OutputA.Text + " " + OutputB.Text + " " + OutputSum.Text);
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message, "ошибка");
         }
     }
 }
Esempio n. 2
0
 private void save_Click(object sender, EventArgs e)
 {
     if (saveFileDialog.ShowDialog() == DialogResult.OK)
     {
         try
         {
             ToolsFile toolsFile = new ToolsFile(saveFileDialog.FileName);
             toolsFile.WriteArr2(DataGridViewUtils.GridToArray2 <string>(Input));
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message, "ошибка");
         }
     }
 }
Esempio n. 3
0
 private void OpenB_Click(object sender, EventArgs e)
 {
     if (openFileDialog.ShowDialog() == DialogResult.OK)
     {
         try
         {
             ToolsFile file = new ToolsFile(openFileDialog.FileName);
             int[,] Arr2 = file.ReadArr2();
             DataGridViewUtils.Array2ToGrid(InputB, Arr2);
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message, "ошибка");
         }
     }
 }
Esempio n. 4
0
    private void RenderDocuments()
    {
        this.LtDocumentsList.Text = string.Empty;
        this.LtDocuments.Text     = string.Empty;

        var files      = UploadFile.GetByItem(ItemIdentifiers.Proccess, this.processId, this.company.Id);
        var res        = new StringBuilder();
        var resList    = new StringBuilder();
        int contCells  = 0;
        var extensions = ToolsFile.ExtensionToShow;

        foreach (var file in files)
        {
            decimal finalSize  = ToolsFile.FormatSize((decimal)file.Size);
            string  fileShowed = string.IsNullOrEmpty(file.Description) ? file.FileName : file.Description;
            if (fileShowed.Length > 15)
            {
                fileShowed = fileShowed.Substring(0, 15) + "...";
            }

            string viewButton = string.Format(
                CultureInfo.InvariantCulture,
                @"<div class=""col-sm-2 btn-success"" onclick=""ShowPDF('{0}');""><i class=""icon-eye-open bigger-120""></i></div>",
                file.FileName
                );

            string listViewButton = string.Format(
                CultureInfo.InvariantCulture,
                @"<span class=""btn btn-xs btn-success"" onclick=""ShowPDF('{0}');"">
                            <i class=""icon-eye-open bigger-120""></i>
                        </span>",
                file.FileName);

            var fileExtension = Path.GetExtension(file.FileName);

            if (!extensions.Contains(fileExtension))
            {
                viewButton     = "<div class=\"col-sm-2\">&nbsp;</div>";
                listViewButton = "<span style=\"margin-left:30px;\">&nbsp;</span>";
            }

            res.AppendFormat(
                CultureInfo.InvariantCulture,
                @"<div id=""{0}"" class=""col-sm-3 document-container"">
                        <div class=""col-sm-6"">&nbsp</div>
                        {10}
                        <div class=""col-sm-2 btn-info""><a class=""icon-download bigger-120"" href=""/DOCS/{3}/{4}"" target=""_blank"" style=""color:#fff;""></a></div>
                        <div class=""col-sm-2 btn-danger"" onclick=""DeleteUploadFile({0},'{1}');""><i class=""icon-trash bigger-120""></i></div>
                        <div class=""col-sm-12 iconfile"" style=""max-width: 100%;"">
                            <div class=""col-sm-4""><img src=""/images/FileIcons/{2}.png"" /></div>
                            <div class=""col-sm-8 document-name"">
                                <strong title=""{1}"">{9}</strong><br />
                                {7}: {5:dd/MM/yyyy}
                                {8}: {6:#,##0.00} MB
                            </div>
                        </div>
                    </div>",
                file.Id,
                string.IsNullOrEmpty(file.Description) ? file.FileName : file.Description,
                file.Extension,
                this.company.Id,
                file.FileName,
                file.CreatedOn,
                finalSize,
                this.Dictionary["Item_Attachment_Header_CreateDate"],
                this.Dictionary["Item_Attachment_Header_Size"],
                fileShowed,
                viewButton);

            resList.AppendFormat(
                CultureInfo.InvariantCulture,
                @"<tr id=""tr{2}"">
                    <td>{1}</td>
                    <td align=""center"" style=""width:90px;"">{4:dd/MM/yyyy}</td>
                    <td align=""right"" style=""width:120px;"">{5:#,##0.00} MB</td>
                    <td style=""width:150px;"">
                        {6}
                        <span class=""btn btn-xs btn-info"">
                            <a class=""icon-download bigger-120"" href=""/DOCS/{3}/{0}"" target=""_blank"" style=""color:#fff;""></a>
                        </span>
                        <span class=""btn btn-xs btn-danger"" onclick=""DeleteUploadFile({2},'{1}');"">
                            <i class=""icon-trash bigger-120""></i>
                        </span>
                    </td>
                </tr>",
                file.FileName,
                string.IsNullOrEmpty(file.Description) ? file.FileName : file.Description,
                file.Id,
                this.company.Id,
                file.CreatedOn,
                finalSize,
                listViewButton);

            contCells++;
            if (contCells == 4)
            {
                contCells = 0;
                res.Append("<div style=\"clear:both\">&nbsp;</div>");
            }
        }

        this.LtDocuments.Text     = res.ToString();
        this.LtDocumentsList.Text = resList.ToString();
    }
Esempio n. 5
0
        static void FileWriteArr2(string[,] Arr2, string Path)
        {
            ToolsFile file = new ToolsFile(Path);

            file.WriteArr2(Arr2);
        }
Esempio n. 6
0
        static string[,] FileReadArr2(string Path)
        {
            ToolsFile file = new ToolsFile(Path);

            return(file.ReadArr2());
        }