Click here to Skip to main content
15,891,423 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Access Denied in Local System Account Service Pin
bob1697214-Sep-10 3:19
bob1697214-Sep-10 3:19 
GeneralRe: Access Denied in Local System Account Service Pin
gothic_coder14-Sep-10 20:52
gothic_coder14-Sep-10 20:52 
GeneralRe: Access Denied in Local System Account Service Pin
bob1697220-Sep-10 4:59
bob1697220-Sep-10 4:59 
QuestionUngroup Excel columns Pin
Mugdha_Aditya12-Sep-10 19:23
Mugdha_Aditya12-Sep-10 19:23 
AnswerRe: Ungroup Excel columns Pin
Niklas L13-Sep-10 2:23
Niklas L13-Sep-10 2:23 
GeneralRe: Ungroup Excel columns Pin
Mugdha_Aditya13-Sep-10 3:32
Mugdha_Aditya13-Sep-10 3:32 
QuestionChoosing files from a directory Pin
Danzy8312-Sep-10 11:36
Danzy8312-Sep-10 11:36 
AnswerRe: Choosing files from a directory Pin
Luc Pattyn12-Sep-10 12:03
sitebuilderLuc Pattyn12-Sep-10 12:03 
There is no immediate support for what you want. The FindFirstFile API takes a single API, much like Windows Explorer lets you search for one thing at a time. The filter may contain wildcards, but does not support alternatives.

The obvious solution to such limitation is to have a loop, that iterates over your alternatives; so it would search all *.wav, then all *.wma, then... However it is up to you to add such loop.

There is one alternative that may or may not suit your app: you could relax the filter so all required files match, possibly yielding false positives, which you then have to skip by adding some tests. That could boil down to searching for *.*, then checking the extension is one of some. The disadvantage is you get a lot of matches; the advantage is the filesystem is searched only once.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


GeneralRe: Choosing files from a directory Pin
Danzy8312-Sep-10 12:58
Danzy8312-Sep-10 12:58 
GeneralRe: Choosing files from a directory Pin
Luc Pattyn12-Sep-10 13:04
sitebuilderLuc Pattyn12-Sep-10 13:04 
GeneralRe: Choosing files from a directory Pin
Danzy8312-Sep-10 13:40
Danzy8312-Sep-10 13:40 
GeneralRe: Choosing files from a directory Pin
Luc Pattyn12-Sep-10 13:57
sitebuilderLuc Pattyn12-Sep-10 13:57 
GeneralRe: Choosing files from a directory Pin
Danzy8312-Sep-10 14:12
Danzy8312-Sep-10 14:12 
GeneralRe: Choosing files from a directory Pin
Richard MacCutchan12-Sep-10 23:06
mveRichard MacCutchan12-Sep-10 23:06 
GeneralRe: Choosing files from a directory Pin
Rick York13-Sep-10 6:42
mveRick York13-Sep-10 6:42 
GeneralRe: Choosing files from a directory Pin
Richard MacCutchan13-Sep-10 9:17
mveRichard MacCutchan13-Sep-10 9:17 
AnswerRe: Choosing files from a directory Pin
«_Superman_»12-Sep-10 18:45
professional«_Superman_»12-Sep-10 18:45 
QuestionHow to move buttons to the left side? Pin
coolhem11-Sep-10 15:40
coolhem11-Sep-10 15:40 
AnswerRe: How to move buttons to the left side? Pin
Code-o-mat12-Sep-10 22:31
Code-o-mat12-Sep-10 22:31 
AnswerRe: How to move buttons to the left side? Pin
Eugen Podsypalnikov13-Sep-10 0:32
Eugen Podsypalnikov13-Sep-10 0:32 
GeneralRe: How to move buttons to the left side? Pin
coolhem13-Sep-10 4:34
coolhem13-Sep-10 4:34 
GeneralRe: How to move buttons to the left side? Pin
Eugen Podsypalnikov13-Sep-10 5:14
Eugen Podsypalnikov13-Sep-10 5:14 
QuestionHow to tile multiple windows in a single view Pin
Vaclav_11-Sep-10 8:59
Vaclav_11-Sep-10 8:59 
AnswerRe: How to tile multiple windows in a single view Pin
ShanghaiDan11-Sep-10 9:57
ShanghaiDan11-Sep-10 9:57 
AnswerRe: How to tile multiple windows in a single view Pin
«_Superman_»12-Sep-10 18:50
professional«_Superman_»12-Sep-10 18:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.