Accord Learning notes for Windows programming

Source: Internet
Author: User
How to open the system
OpenFileName OPFN;  WCHAR strfilename[max_path];//Store file name  //Initialize  zeromemory (&opfn, sizeof (OPENFILENAME));  opfn.lstructsize = sizeof (OPENFILENAME);//structure size  //Set filter  Opfn.lpstrfilter = L "All files \0*.*\0 text file \0*.txt\0mp3 file \ 0*.mp3\0 ";  The default filter index is set to 1  opfn.nfilterindex = 1;  The field of the file name must first subscript character the first word to  opfn.lpstrfile = strFileName;  Opfn.lpstrfile[0] = ' + ';  Opfn.nmaxfile = sizeof (strFileName);  Set the flag bit to check if the directory or file exists  OPFN. Flags = Ofn_filemustexist | Ofn_pathmustexist;  Opfn.lpstrinitialdir = NULL;  The Display dialog box lets the user select  the file if (GetOpenFileName (&OPFN))  {  //Displays the file path in the text box  //hwnd Hedt = GetDlgItem (hdlg, Idc_edtfilename);  SendMessage (hwnd, Wm_settext, NULL, (LPARAM) strFileName);  }  

File Selection window

Accord Learning notes for Windows programming

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.