2022-01-09 15:47:54 +03:00
|
|
|
|
using Microsoft.Office.Interop.Excel;
|
|
|
|
|
using System.Collections.Generic;
|
2021-12-24 16:22:03 +03:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2022-02-02 09:46:47 +03:00
|
|
|
|
namespace RehauSku.Interface
|
2021-12-24 16:22:03 +03:00
|
|
|
|
{
|
|
|
|
|
static class Dialog
|
|
|
|
|
{
|
|
|
|
|
public static string GetFilePath()
|
|
|
|
|
{
|
|
|
|
|
string filePath = string.Empty;
|
|
|
|
|
|
|
|
|
|
using (OpenFileDialog dialog = new OpenFileDialog())
|
|
|
|
|
{
|
2021-12-24 17:42:20 +03:00
|
|
|
|
dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm";
|
2021-12-24 16:22:03 +03:00
|
|
|
|
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
filePath = dialog.FileName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return filePath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string[] GetMultiplyFiles()
|
|
|
|
|
{
|
|
|
|
|
List<string> fileNames = new List<string>();
|
|
|
|
|
|
|
|
|
|
using (OpenFileDialog dialog = new OpenFileDialog())
|
|
|
|
|
{
|
2021-12-24 17:42:20 +03:00
|
|
|
|
dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm";
|
2021-12-24 16:22:03 +03:00
|
|
|
|
dialog.Multiselect = true;
|
|
|
|
|
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
foreach (string file in dialog.FileNames)
|
|
|
|
|
{
|
|
|
|
|
fileNames.Add(file);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fileNames.ToArray();
|
|
|
|
|
}
|
2022-01-09 15:47:54 +03:00
|
|
|
|
|
|
|
|
|
public static void SaveWorkbookAs()
|
|
|
|
|
{
|
2022-02-02 17:58:54 +03:00
|
|
|
|
Workbook workbook = AddIn.Excel.ActiveWorkbook;
|
2022-01-09 15:47:54 +03:00
|
|
|
|
|
2022-02-02 17:58:54 +03:00
|
|
|
|
using (SaveFileDialog dialog = new SaveFileDialog())
|
|
|
|
|
{
|
|
|
|
|
dialog.FileName = workbook.Name;
|
|
|
|
|
dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm";
|
|
|
|
|
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
workbook.Close(false);
|
|
|
|
|
}
|
2022-01-09 15:47:54 +03:00
|
|
|
|
|
2022-02-02 17:58:54 +03:00
|
|
|
|
string fileName = dialog.FileName;
|
2022-01-09 15:47:54 +03:00
|
|
|
|
|
2022-02-02 17:58:54 +03:00
|
|
|
|
workbook.SaveAs(fileName);
|
|
|
|
|
}
|
2022-01-09 15:47:54 +03:00
|
|
|
|
}
|
2021-12-24 16:22:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|