Click here to Skip to main content
15,911,531 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help on List View Pin
Michael P Butler20-Jul-03 4:25
Michael P Butler20-Jul-03 4:25 
GeneralRe: Help on List View Pin
Ilushka20-Jul-03 20:59
Ilushka20-Jul-03 20:59 
GeneralWM_TIMER and DoModal in Windows XP vs Windows 2000 Pin
lionelzero19-Jul-03 23:34
lionelzero19-Jul-03 23:34 
GeneralRe: WM_TIMER and DoModal in Windows XP vs Windows 2000 Pin
Michael P Butler20-Jul-03 4:28
Michael P Butler20-Jul-03 4:28 
GeneralRe: WM_TIMER and DoModal in Windows XP vs Windows 2000 Pin
lionelzero21-Jul-03 8:56
lionelzero21-Jul-03 8:56 
GeneralRe: WM_TIMER and DoModal in Windows XP vs Windows 2000 Pin
Michael P Butler21-Jul-03 9:17
Michael P Butler21-Jul-03 9:17 
QuestionFind files with CFileFind? Pin
Dominik Reichl19-Jul-03 21:37
Dominik Reichl19-Jul-03 21:37 
AnswerRe: Find files with CFileFind? Pin
Ryan Binns19-Jul-03 22:12
Ryan Binns19-Jul-03 22:12 
OK. As written, it will always skip the first file it finds. This is because you find the first file, enter the loop, and immediately find the next file without using the first one. Write your loop like this:
chk_w = ff.FindFile(szThis, 0);
while(chk_w == TRUE)
{
   m_listLang.AddString(ff.GetFileTitle());
   chk_w = ff.FindNextFile();
}
Hope this helps,

Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"

GeneralRe: Find files with CFileFind? Pin
Dominik Reichl19-Jul-03 22:27
Dominik Reichl19-Jul-03 22:27 
GeneralRe: Find files with CFileFind? Pin
Ryan Binns19-Jul-03 22:29
Ryan Binns19-Jul-03 22:29 
GeneralRe: Find files with CFileFind? Pin
Dominik Reichl19-Jul-03 22:31
Dominik Reichl19-Jul-03 22:31 
GeneralRe: Find files with CFileFind? Pin
Ryan Binns19-Jul-03 22:33
Ryan Binns19-Jul-03 22:33 
GeneralRe: Find files with CFileFind? Pin
Dominik Reichl19-Jul-03 22:38
Dominik Reichl19-Jul-03 22:38 
GeneralRe: Find files with CFileFind? Pin
Ryan Binns19-Jul-03 22:43
Ryan Binns19-Jul-03 22:43 
GeneralRe: Find files with CFileFind? Pin
Dominik Reichl19-Jul-03 22:42
Dominik Reichl19-Jul-03 22:42 
GeneralRe: Find files with CFileFind? Pin
Ryan Binns19-Jul-03 22:44
Ryan Binns19-Jul-03 22:44 
AnswerRe: Find files with CFileFind? Pin
wb20-Jul-03 2:29
wb20-Jul-03 2:29 
GeneralPlease Help I deleted my resource.h file Pin
19-Jul-03 17:08
suss19-Jul-03 17:08 
GeneralRe: Please Help I deleted my resource.h file Pin
Tom Archer19-Jul-03 17:49
Tom Archer19-Jul-03 17:49 
GeneralRe: Please Help I deleted my resource.h file Pin
Member 43419219-Jul-03 18:40
Member 43419219-Jul-03 18:40 
GeneralRe: Please Help I deleted my resource.h file Pin
Tom Archer20-Jul-03 3:04
Tom Archer20-Jul-03 3:04 
GeneralRe: Please Help I deleted my resource.h file Pin
Taka Muraoka20-Jul-03 4:52
Taka Muraoka20-Jul-03 4:52 
GeneralAbout RUNTIME_CLASS Pin
FlyingDancer19-Jul-03 16:14
FlyingDancer19-Jul-03 16:14 
GeneralRe: About RUNTIME_CLASS Pin
Tom Archer19-Jul-03 17:35
Tom Archer19-Jul-03 17:35 
GeneralRe: About RUNTIME_CLASS Pin
FlyingDancer19-Jul-03 18:56
FlyingDancer19-Jul-03 18:56 

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.