C # One of the reasons why the filtering effect cannot be achieved after the filter attribute is set in openfiledialog

Source: Internet
Author: User

Here, the RichTextBox Control is used as an example >>>

When processing the load event in the class corresponding to the form, you can set the filter attribute for openfiledialog:

Private void form1_load (Object sender, eventargs e) {openfiledialog1.filename = ""; openfiledialog1.initialdirectory = @ "E: \"; openfiledialog1.filter = "text file | *. TXT | RTF File | *. RTF | all files | *. * "; openfiledialog1.filterindex = 2; savefiledialog1.filename = convert. tostring (datetime. now. ticks); // set a default file name for the saved file: savefiledialog1.filter = "text file | *. TXT | RTF File | *. RTF | all files | *. * "; savefiledialog1.filterindex = 2 ;}

If you accidentally write the above line of code as follows:

Openfiledialog1.filter = "text file | *. TXT | RTF File | *. RTF | all files | *. * "; savefiledialog1.filter =" text file | *. TXT | RTF File | *. RTF | all files | *. *";

At first glance, there is no difference between the two lines of code and the above Code. TXT and *. the keyword "rtf" is followed by a space. Although only one space is added, the filter attribute will become

The normal running effect is:

When comparing the filter option boxes of the two images, you will find significant differences.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.