Click here to Skip to main content
15,922,533 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRepost. Pin
CPallini20-Aug-08 22:08
mveCPallini20-Aug-08 22:08 
AnswerRe: Repost. Pin
NewVC++20-Aug-08 22:28
NewVC++20-Aug-08 22:28 
GeneralRe: Repost. Pin
CPallini20-Aug-08 22:36
mveCPallini20-Aug-08 22:36 
GeneralRe: Repost. Pin
NewVC++20-Aug-08 23:47
NewVC++20-Aug-08 23:47 
GeneralRe: Repost. Pin
toxcct20-Aug-08 23:52
toxcct20-Aug-08 23:52 
GeneralRe: Repost. Pin
CPallini20-Aug-08 23:56
mveCPallini20-Aug-08 23:56 
QuestionRe: Repost. Pin
David Crow21-Aug-08 3:35
David Crow21-Aug-08 3:35 
AnswerRe: Repost. Pin
NewVC++21-Aug-08 18:19
NewVC++21-Aug-08 18:19 
i am useing FindFirstFile() code is here


hFind=FindFirstFile(szRootpath, &FindFileData);



if (INVALID_HANDLE_VALUE == hFind)

{

// return FALSE;

}




// List all the files in the directory .

do

{


//ignore the sub directories

if (strcmp(FindFileData.cFileName,_T(".")) && strcmp(FindFileData.cFileName,_T("..")))

{

m_ListCountries.AddString(FindFileData.cFileName);

// AfxMessageBox(FindFileData.cFileName);
m_tree.InsertItem(FindFileData.cFileName);

}

//AfxMessageBox("helloP");

// AfxMessageBox(FindFileData.cFileName);



}while (FindNextFile(hFind, &FindFileData) != 0);



FindClose(hFind);

}
GeneralRe: Repost. Pin
David Crow22-Aug-08 8:09
David Crow22-Aug-08 8:09 
QuestionWhat Functions are called Pin
Taruni20-Aug-08 20:05
Taruni20-Aug-08 20:05 
AnswerRe: What Functions are called Pin
Hamid_RT20-Aug-08 20:24
Hamid_RT20-Aug-08 20:24 
GeneralRe: What Functions are called Pin
Taruni20-Aug-08 20:57
Taruni20-Aug-08 20:57 
GeneralRe: What Functions are called Pin
toxcct20-Aug-08 21:16
toxcct20-Aug-08 21:16 
AnswerRe: What Functions are called Pin
Rajesh R Subramanian20-Aug-08 20:26
professionalRajesh R Subramanian20-Aug-08 20:26 
AnswerRe: What Functions are called Pin
Naveen20-Aug-08 22:20
Naveen20-Aug-08 22:20 
AnswerRe: What Functions are called Pin
SRKSHOME20-Aug-08 23:45
SRKSHOME20-Aug-08 23:45 
JokeRe: What Functions are called Pin
toxcct21-Aug-08 0:05
toxcct21-Aug-08 0:05 
QuestionCan i color Background of Menu Bar? Pin
Le@rner20-Aug-08 19:56
Le@rner20-Aug-08 19:56 
AnswerRe: Can i color Background of Menu Bar? Pin
Hamid_RT20-Aug-08 20:04
Hamid_RT20-Aug-08 20:04 
AnswerRe: Can i color Background of Menu Bar? Pin
Jijo.Raj20-Aug-08 20:15
Jijo.Raj20-Aug-08 20:15 
AnswerRe: Can i color Background of Menu Bar? Pin
vikas amin4-Sep-08 13:19
vikas amin4-Sep-08 13:19 
QuestionIXMLHttpRequest sending request? Pin
ritz123420-Aug-08 19:28
ritz123420-Aug-08 19:28 
AnswerRe: IXMLHttpRequest sending request? Pin
vikas amin4-Sep-08 13:16
vikas amin4-Sep-08 13:16 
Questionapplication crash whle passing parameter to modeless dialog Pin
ptr_Electron20-Aug-08 19:03
ptr_Electron20-Aug-08 19:03 
AnswerSorry Ignor my previous post, Tried to Delete,Delete Button is missing Pin
ptr_Electron20-Aug-08 19:08
ptr_Electron20-Aug-08 19:08 

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.