diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-24 17:42:20 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-24 17:42:20 +0300 |
commit | 20cfbfcca3a779c04aecdca5e4b465651e2be42a (patch) | |
tree | 5d9c814fd023395d894ce36a9040cf7f7330198c /Source/Forms | |
parent | 24024b5729c1c44bb01cb29813868743d1753e31 (diff) |
New release
Diffstat (limited to 'Source/Forms')
-rw-r--r-- | Source/Forms/Dialog.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Forms/Dialog.cs b/Source/Forms/Dialog.cs index 1953816..170cc81 100644 --- a/Source/Forms/Dialog.cs +++ b/Source/Forms/Dialog.cs @@ -11,7 +11,7 @@ namespace RehauSku.Forms using (OpenFileDialog dialog = new OpenFileDialog()) { - dialog.Filter = "Все файлы (*.*)|*.*"; + dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm"; if (dialog.ShowDialog() == DialogResult.OK) { @@ -28,7 +28,7 @@ namespace RehauSku.Forms using (OpenFileDialog dialog = new OpenFileDialog()) { - dialog.Filter = "Все файлы (*.*)|*.*"; + dialog.Filter = "Файлы Excel (*.xls;*.xlsx;*.xlsm)|*.xls;*.xlsx;*.xlsm"; dialog.Multiselect = true; if (dialog.ShowDialog() == DialogResult.OK) |