CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 1999
    Posts
    1

    Help: Saving different file types

    I did search this site so i hope i'm not repeating a common post:

    I can't seem to figure out how to save in multiple name types in MFC's Save As dialog box. It only has the *.* All Files option and the option you put in during the beginning.

    Any help would be appreciated, thanks. =)

    (= plenTpak =)

  2. #2
    Guest

    Re: Help: Saving different file types

    Try something like this:
    CFileDialog dlg( true, ".doc", NULL,
    OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST| OFN_ALLOWMULTISELECT ,
    "Microsoft Word Files (*.doc)|*.doc|All Files (*.*)|*.*||" );



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured