Click here to Skip to main content
15,929,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionEmbeded explorer - how? Pin
19-Jul-01 14:34
suss19-Jul-01 14:34 
GeneralProblem in Print Preview Pin
19-Jul-01 11:10
suss19-Jul-01 11:10 
Questionhow can I search a file without extension Pin
19-Jul-01 10:51
suss19-Jul-01 10:51 
AnswerRe: how can I search a file without extension Pin
Carlos Antollini19-Jul-01 11:01
Carlos Antollini19-Jul-01 11:01 
GeneralRe: how can I search a file without extension Pin
19-Jul-01 11:36
suss19-Jul-01 11:36 
GeneralRe: how can I search a file without extension Pin
Carlos Antollini19-Jul-01 11:45
Carlos Antollini19-Jul-01 11:45 
GeneralRe: how can I search a file without extension Pin
19-Jul-01 12:03
suss19-Jul-01 12:03 
GeneralRe: how can I search a file without extension Pin
Carlos Antollini19-Jul-01 12:13
Carlos Antollini19-Jul-01 12:13 
You can use GetCurrentDirectory

char szCurrentDir[_MAX_DIR];

::GetCurrentDirectory(sizeof(szCurrentDir), szCurrentDir);
//Now you have the currentdir in the szCurrentDir variable.

CString strFind = _T(szCurrentDir + "\\*.*");

And make the same that the others samples.

Cheers!!!
Big Grin | :-D

Carlos Antollini.
GeneralRe: how can I search a file without extension Pin
Steve T19-Jul-01 12:38
Steve T19-Jul-01 12:38 
GeneralRe: how can I search a file without extension Pin
Ben Burnett19-Jul-01 11:48
Ben Burnett19-Jul-01 11:48 
AnswerRe: how can I search a file without extension Pin
Steve T19-Jul-01 12:10
Steve T19-Jul-01 12:10 
GeneralSimple variable question. Pin
John Uhlenbrock19-Jul-01 10:10
John Uhlenbrock19-Jul-01 10:10 
GeneralRe: Simple variable question. Pin
Carlos Antollini19-Jul-01 10:33
Carlos Antollini19-Jul-01 10:33 
QuestionPointers anyone? Pin
Frank Deo19-Jul-01 9:48
Frank Deo19-Jul-01 9:48 
AnswerRe: Pointers anyone? Pin
Ben Burnett19-Jul-01 11:54
Ben Burnett19-Jul-01 11:54 
GeneralRe: Pointers anyone? Pin
Frank Deo19-Jul-01 12:13
Frank Deo19-Jul-01 12:13 
GeneralRe: Pointers anyone? Pin
Christian Graus19-Jul-01 12:27
protectorChristian Graus19-Jul-01 12:27 
GeneralRe: Pointers anyone? Pin
Frank Deo19-Jul-01 12:38
Frank Deo19-Jul-01 12:38 
GeneralRe: Pointers anyone? Pin
Christian Graus19-Jul-01 12:50
protectorChristian Graus19-Jul-01 12:50 
GeneralRe: Pointers anyone? Pin
Frank Deo19-Jul-01 13:04
Frank Deo19-Jul-01 13:04 
GeneralRe: Pointers anyone? Pin
Christian Graus19-Jul-01 13:11
protectorChristian Graus19-Jul-01 13:11 
GeneralRe: Pointers anyone? Pin
Frank Deo19-Jul-01 13:25
Frank Deo19-Jul-01 13:25 
GeneralRe: Pointers anyone? Pin
Mike Burston19-Jul-01 13:19
Mike Burston19-Jul-01 13:19 
GeneralRe: Pointers anyone? Pin
Frank Deo19-Jul-01 13:27
Frank Deo19-Jul-01 13:27 
QuestionIs it impossible that exe file will return a value ??? Pin
19-Jul-01 9:02
suss19-Jul-01 9:02 

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.