Keep opening OpenFileDialog until selecting valid file












4















I have code that opens the OpenFileDialog, I'm checking the size of the file to make sure it doesn't exceed specific limit.
But, if the user selected a big sized file I need to warn him and lead him back to the dialog to select a different file or click cancel.



This is what I've tried:



        OpenFileDialog dialog = new OpenFileDialog();
dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
while (dialog.ShowDialog() != DialogResult.Cancel)
{
var size = new FileInfo(dialog.FileName).Length;
if (size > 250000)
{
MessageBox.Show("File size exceeded");
continue;
}
}


EDIT:
I also tried the following code but it opens the dialog each time the ShowDialog is called. So, if the user selected a file 3x the size the limit, the dialog will appear 3 times.



  OpenFileDialog dialog = new OpenFileDialog();
dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
dialog.FileOk += delegate(object s, CancelEventArgs ev)
{
var size = new FileInfo(dialog.FileName).Length;
if (size > 250000)
{
XtraMessageBox.Show("File size");
dialog.ShowDialog();
}
};
if (dialog.ShowDialog() == DialogResult.OK)
{
XtraMessageBox.Show("File Selected");
}









share|improve this question





























    4















    I have code that opens the OpenFileDialog, I'm checking the size of the file to make sure it doesn't exceed specific limit.
    But, if the user selected a big sized file I need to warn him and lead him back to the dialog to select a different file or click cancel.



    This is what I've tried:



            OpenFileDialog dialog = new OpenFileDialog();
    dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
    while (dialog.ShowDialog() != DialogResult.Cancel)
    {
    var size = new FileInfo(dialog.FileName).Length;
    if (size > 250000)
    {
    MessageBox.Show("File size exceeded");
    continue;
    }
    }


    EDIT:
    I also tried the following code but it opens the dialog each time the ShowDialog is called. So, if the user selected a file 3x the size the limit, the dialog will appear 3 times.



      OpenFileDialog dialog = new OpenFileDialog();
    dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
    dialog.FileOk += delegate(object s, CancelEventArgs ev)
    {
    var size = new FileInfo(dialog.FileName).Length;
    if (size > 250000)
    {
    XtraMessageBox.Show("File size");
    dialog.ShowDialog();
    }
    };
    if (dialog.ShowDialog() == DialogResult.OK)
    {
    XtraMessageBox.Show("File Selected");
    }









    share|improve this question



























      4












      4








      4


      3






      I have code that opens the OpenFileDialog, I'm checking the size of the file to make sure it doesn't exceed specific limit.
      But, if the user selected a big sized file I need to warn him and lead him back to the dialog to select a different file or click cancel.



      This is what I've tried:



              OpenFileDialog dialog = new OpenFileDialog();
      dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
      while (dialog.ShowDialog() != DialogResult.Cancel)
      {
      var size = new FileInfo(dialog.FileName).Length;
      if (size > 250000)
      {
      MessageBox.Show("File size exceeded");
      continue;
      }
      }


      EDIT:
      I also tried the following code but it opens the dialog each time the ShowDialog is called. So, if the user selected a file 3x the size the limit, the dialog will appear 3 times.



        OpenFileDialog dialog = new OpenFileDialog();
      dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
      dialog.FileOk += delegate(object s, CancelEventArgs ev)
      {
      var size = new FileInfo(dialog.FileName).Length;
      if (size > 250000)
      {
      XtraMessageBox.Show("File size");
      dialog.ShowDialog();
      }
      };
      if (dialog.ShowDialog() == DialogResult.OK)
      {
      XtraMessageBox.Show("File Selected");
      }









      share|improve this question
















      I have code that opens the OpenFileDialog, I'm checking the size of the file to make sure it doesn't exceed specific limit.
      But, if the user selected a big sized file I need to warn him and lead him back to the dialog to select a different file or click cancel.



      This is what I've tried:



              OpenFileDialog dialog = new OpenFileDialog();
      dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
      while (dialog.ShowDialog() != DialogResult.Cancel)
      {
      var size = new FileInfo(dialog.FileName).Length;
      if (size > 250000)
      {
      MessageBox.Show("File size exceeded");
      continue;
      }
      }


      EDIT:
      I also tried the following code but it opens the dialog each time the ShowDialog is called. So, if the user selected a file 3x the size the limit, the dialog will appear 3 times.



        OpenFileDialog dialog = new OpenFileDialog();
      dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
      dialog.FileOk += delegate(object s, CancelEventArgs ev)
      {
      var size = new FileInfo(dialog.FileName).Length;
      if (size > 250000)
      {
      XtraMessageBox.Show("File size");
      dialog.ShowDialog();
      }
      };
      if (dialog.ShowDialog() == DialogResult.OK)
      {
      XtraMessageBox.Show("File Selected");
      }






      c# .net while-loop openfiledialog






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 25 at 21:56









      E. Earl

      137113




      137113










      asked Oct 7 '12 at 4:54









      Nour SabounyNour Sabouny

      2,92332850




      2,92332850
























          4 Answers
          4






          active

          oldest

          votes


















          7














          You are half-way there, the FileOk event is what you want to use. What you are missing is setting the e.Cancel property to true. That keeps the dialog opened and avoids you having to display it over and over again. Like this:



                  OpenFileDialog dialog = new OpenFileDialog();
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.FileOk += delegate(object s, CancelEventArgs ev) {
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000) {
          MessageBox.Show("Sorry, file is too large");
          ev.Cancel = true; // <== here
          }
          };
          if (dialog.ShowDialog() == DialogResult.OK) {
          MessageBox.Show(dialog.FileName + " selected");
          }





          share|improve this answer
























          • Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

            – Nour Sabouny
            Oct 8 '12 at 4:40



















          1














          ev.Cancel = true; Check if following piece of code serves your purpose?



              public void SomeMethod()
          {
          OpenFileDialog dialog = new OpenFileDialog();
          dialog.FileOk += new CancelEventHandler(dialog_FileOk);
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.ShowDialog();
          }

          void dialog_FileOk(object sender, CancelEventArgs e)
          {
          OpenFileDialog dialog = sender as OpenFileDialog;
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000)
          {
          MessageBox.Show("File size exceeded");
          e.Cancel = true;
          }

          }





          share|improve this answer


























          • Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

            – Nour Sabouny
            Oct 7 '12 at 13:29



















          0














          Yes as far as your requirement is concern, this is OK but in general opening Dialog after showing a prompt for Size is not the best way. Instead a prompt should be displayed, best is to display the validation error on the size from the main window. And it should be User's duty to select the proper file again by opening the File Dialog again according to Usability principles of HCI.






          share|improve this answer
























          • Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

            – Nour Sabouny
            Oct 8 '12 at 4:43



















          0














          Add a handler to FileDialog.FileOk and let verify the file size inside their.






          share|improve this answer
























          • Thanks, but see the new version of the question.

            – Nour Sabouny
            Oct 7 '12 at 13:33











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f12766216%2fkeep-opening-openfiledialog-until-selecting-valid-file%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          7














          You are half-way there, the FileOk event is what you want to use. What you are missing is setting the e.Cancel property to true. That keeps the dialog opened and avoids you having to display it over and over again. Like this:



                  OpenFileDialog dialog = new OpenFileDialog();
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.FileOk += delegate(object s, CancelEventArgs ev) {
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000) {
          MessageBox.Show("Sorry, file is too large");
          ev.Cancel = true; // <== here
          }
          };
          if (dialog.ShowDialog() == DialogResult.OK) {
          MessageBox.Show(dialog.FileName + " selected");
          }





          share|improve this answer
























          • Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

            – Nour Sabouny
            Oct 8 '12 at 4:40
















          7














          You are half-way there, the FileOk event is what you want to use. What you are missing is setting the e.Cancel property to true. That keeps the dialog opened and avoids you having to display it over and over again. Like this:



                  OpenFileDialog dialog = new OpenFileDialog();
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.FileOk += delegate(object s, CancelEventArgs ev) {
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000) {
          MessageBox.Show("Sorry, file is too large");
          ev.Cancel = true; // <== here
          }
          };
          if (dialog.ShowDialog() == DialogResult.OK) {
          MessageBox.Show(dialog.FileName + " selected");
          }





          share|improve this answer
























          • Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

            – Nour Sabouny
            Oct 8 '12 at 4:40














          7












          7








          7







          You are half-way there, the FileOk event is what you want to use. What you are missing is setting the e.Cancel property to true. That keeps the dialog opened and avoids you having to display it over and over again. Like this:



                  OpenFileDialog dialog = new OpenFileDialog();
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.FileOk += delegate(object s, CancelEventArgs ev) {
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000) {
          MessageBox.Show("Sorry, file is too large");
          ev.Cancel = true; // <== here
          }
          };
          if (dialog.ShowDialog() == DialogResult.OK) {
          MessageBox.Show(dialog.FileName + " selected");
          }





          share|improve this answer













          You are half-way there, the FileOk event is what you want to use. What you are missing is setting the e.Cancel property to true. That keeps the dialog opened and avoids you having to display it over and over again. Like this:



                  OpenFileDialog dialog = new OpenFileDialog();
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.FileOk += delegate(object s, CancelEventArgs ev) {
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000) {
          MessageBox.Show("Sorry, file is too large");
          ev.Cancel = true; // <== here
          }
          };
          if (dialog.ShowDialog() == DialogResult.OK) {
          MessageBox.Show(dialog.FileName + " selected");
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 7 '12 at 14:32









          Hans PassantHans Passant

          794k10913172102




          794k10913172102













          • Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

            – Nour Sabouny
            Oct 8 '12 at 4:40



















          • Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

            – Nour Sabouny
            Oct 8 '12 at 4:40

















          Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

          – Nour Sabouny
          Oct 8 '12 at 4:40





          Bingo, +1 for the correct answer, actually my approach is correct but it lack the else break; after the (if). but it makes the dialog flash, your way will keep the dialog opened and show the message before closing. Thanks a lot.

          – Nour Sabouny
          Oct 8 '12 at 4:40













          1














          ev.Cancel = true; Check if following piece of code serves your purpose?



              public void SomeMethod()
          {
          OpenFileDialog dialog = new OpenFileDialog();
          dialog.FileOk += new CancelEventHandler(dialog_FileOk);
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.ShowDialog();
          }

          void dialog_FileOk(object sender, CancelEventArgs e)
          {
          OpenFileDialog dialog = sender as OpenFileDialog;
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000)
          {
          MessageBox.Show("File size exceeded");
          e.Cancel = true;
          }

          }





          share|improve this answer


























          • Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

            – Nour Sabouny
            Oct 7 '12 at 13:29
















          1














          ev.Cancel = true; Check if following piece of code serves your purpose?



              public void SomeMethod()
          {
          OpenFileDialog dialog = new OpenFileDialog();
          dialog.FileOk += new CancelEventHandler(dialog_FileOk);
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.ShowDialog();
          }

          void dialog_FileOk(object sender, CancelEventArgs e)
          {
          OpenFileDialog dialog = sender as OpenFileDialog;
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000)
          {
          MessageBox.Show("File size exceeded");
          e.Cancel = true;
          }

          }





          share|improve this answer


























          • Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

            – Nour Sabouny
            Oct 7 '12 at 13:29














          1












          1








          1







          ev.Cancel = true; Check if following piece of code serves your purpose?



              public void SomeMethod()
          {
          OpenFileDialog dialog = new OpenFileDialog();
          dialog.FileOk += new CancelEventHandler(dialog_FileOk);
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.ShowDialog();
          }

          void dialog_FileOk(object sender, CancelEventArgs e)
          {
          OpenFileDialog dialog = sender as OpenFileDialog;
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000)
          {
          MessageBox.Show("File size exceeded");
          e.Cancel = true;
          }

          }





          share|improve this answer















          ev.Cancel = true; Check if following piece of code serves your purpose?



              public void SomeMethod()
          {
          OpenFileDialog dialog = new OpenFileDialog();
          dialog.FileOk += new CancelEventHandler(dialog_FileOk);
          dialog.Filter = "Jpeg files, PDF files, Word files|*.jpg;*.pdf;*.doc;*.docx";
          dialog.ShowDialog();
          }

          void dialog_FileOk(object sender, CancelEventArgs e)
          {
          OpenFileDialog dialog = sender as OpenFileDialog;
          var size = new FileInfo(dialog.FileName).Length;
          if (size > 250000)
          {
          MessageBox.Show("File size exceeded");
          e.Cancel = true;
          }

          }






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Oct 8 '12 at 9:36

























          answered Oct 7 '12 at 5:25









          RockWorldRockWorld

          1,11121022




          1,11121022













          • Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

            – Nour Sabouny
            Oct 7 '12 at 13:29



















          • Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

            – Nour Sabouny
            Oct 7 '12 at 13:29

















          Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

          – Nour Sabouny
          Oct 7 '12 at 13:29





          Actually I tried similar way but it's opening the dialog once for each wrong file selected, I will edit the question to add the code.

          – Nour Sabouny
          Oct 7 '12 at 13:29











          0














          Yes as far as your requirement is concern, this is OK but in general opening Dialog after showing a prompt for Size is not the best way. Instead a prompt should be displayed, best is to display the validation error on the size from the main window. And it should be User's duty to select the proper file again by opening the File Dialog again according to Usability principles of HCI.






          share|improve this answer
























          • Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

            – Nour Sabouny
            Oct 8 '12 at 4:43
















          0














          Yes as far as your requirement is concern, this is OK but in general opening Dialog after showing a prompt for Size is not the best way. Instead a prompt should be displayed, best is to display the validation error on the size from the main window. And it should be User's duty to select the proper file again by opening the File Dialog again according to Usability principles of HCI.






          share|improve this answer
























          • Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

            – Nour Sabouny
            Oct 8 '12 at 4:43














          0












          0








          0







          Yes as far as your requirement is concern, this is OK but in general opening Dialog after showing a prompt for Size is not the best way. Instead a prompt should be displayed, best is to display the validation error on the size from the main window. And it should be User's duty to select the proper file again by opening the File Dialog again according to Usability principles of HCI.






          share|improve this answer













          Yes as far as your requirement is concern, this is OK but in general opening Dialog after showing a prompt for Size is not the best way. Instead a prompt should be displayed, best is to display the validation error on the size from the main window. And it should be User's duty to select the proper file again by opening the File Dialog again according to Usability principles of HCI.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 7 '12 at 5:09









          Furqan SafdarFurqan Safdar

          12.4k114680




          12.4k114680













          • Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

            – Nour Sabouny
            Oct 8 '12 at 4:43



















          • Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

            – Nour Sabouny
            Oct 8 '12 at 4:43

















          Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

          – Nour Sabouny
          Oct 8 '12 at 4:43





          Your rather correct, but closing the dialog and then showing a validation error icon, forces the user to open the dialog again, browse to the same folder and check again, which makes it harder for him.

          – Nour Sabouny
          Oct 8 '12 at 4:43











          0














          Add a handler to FileDialog.FileOk and let verify the file size inside their.






          share|improve this answer
























          • Thanks, but see the new version of the question.

            – Nour Sabouny
            Oct 7 '12 at 13:33
















          0














          Add a handler to FileDialog.FileOk and let verify the file size inside their.






          share|improve this answer
























          • Thanks, but see the new version of the question.

            – Nour Sabouny
            Oct 7 '12 at 13:33














          0












          0








          0







          Add a handler to FileDialog.FileOk and let verify the file size inside their.






          share|improve this answer













          Add a handler to FileDialog.FileOk and let verify the file size inside their.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 7 '12 at 5:27









          dotINSolutiondotINSolution

          21415




          21415













          • Thanks, but see the new version of the question.

            – Nour Sabouny
            Oct 7 '12 at 13:33



















          • Thanks, but see the new version of the question.

            – Nour Sabouny
            Oct 7 '12 at 13:33

















          Thanks, but see the new version of the question.

          – Nour Sabouny
          Oct 7 '12 at 13:33





          Thanks, but see the new version of the question.

          – Nour Sabouny
          Oct 7 '12 at 13:33


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f12766216%2fkeep-opening-openfiledialog-until-selecting-valid-file%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter