I need to browse a folder only for rtf files
-
I need to browse a folder only for rtf files, i'm not interested in other files like image,etc.How can i do this?and also i need to search for a specific folder, not file like My Documents,in order to get the path.SHGetFolderLocation( or something like this) doesn't work.How can i do this?Thanks a lot.
-
I need to browse a folder only for rtf files, i'm not interested in other files like image,etc.How can i do this?and also i need to search for a specific folder, not file like My Documents,in order to get the path.SHGetFolderLocation( or something like this) doesn't work.How can i do this?Thanks a lot.
-
I need to browse a folder only for rtf files, i'm not interested in other files like image,etc. >
static char BASED_CODE szFilter[] = "RTF Files (*.rtf)|*.rtf||"; CFileDialog BrowseDlg(TRUE,NULL,NULL,OFN_FILEMUSTEXIST,szFilter,NULL); BrowseDlg.DoModal();
-
I need to browse a folder only for rtf files, i'm not interested in other files like image,etc. >
static char BASED_CODE szFilter[] = "RTF Files (*.rtf)|*.rtf||"; CFileDialog BrowseDlg(TRUE,NULL,NULL,OFN_FILEMUSTEXIST,szFilter,NULL); BrowseDlg.DoModal();