aboutsummaryrefslogtreecommitdiff
path: root/Source/Forms
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-12-24 17:42:20 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-12-24 17:42:20 +0300
commit20cfbfcca3a779c04aecdca5e4b465651e2be42a (patch)
tree5d9c814fd023395d894ce36a9040cf7f7330198c /Source/Forms
parent24024b5729c1c44bb01cb29813868743d1753e31 (diff)
New release
Diffstat (limited to 'Source/Forms')
-rw-r--r--Source/Forms/Dialog.cs4
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)