Click here to Skip to main content
15,902,842 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CSplitterWnd Pin
ov12-Jul-01 4:40
ov12-Jul-01 4:40 
GeneralRe: CSplitterWnd Pin
Tomasz Sowinski12-Jul-01 7:13
Tomasz Sowinski12-Jul-01 7:13 
GeneralRUN APPLICATION from SCREEN SAVER Pin
12-Jul-01 3:55
suss12-Jul-01 3:55 
GeneralRe: RUN APPLICATION from SCREEN SAVER Pin
Paolo Messina12-Jul-01 10:48
professionalPaolo Messina12-Jul-01 10:48 
GeneralFrame windows Pin
Troels_Gram12-Jul-01 2:21
Troels_Gram12-Jul-01 2:21 
GeneralRe: Frame windows Pin
Tomasz Sowinski12-Jul-01 2:34
Tomasz Sowinski12-Jul-01 2:34 
GeneralCFileFind (Maybe I'll get an answer this time) Pin
Michael Martin12-Jul-01 2:14
professionalMichael Martin12-Jul-01 2:14 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Tomasz Sowinski12-Jul-01 2:30
Tomasz Sowinski12-Jul-01 2:30 
You should use BOOL value returned from FindFile:
BOOL bWorking = finder.FindFile("D:\\dir\\ReadMe.txt");
	while (bWorking)
	{
		bWorking = finder.FindNextFile();
		if (!finder.IsDots() &&	!finder.IsDirectory())    
		{        
			CString strMsg = finder.GetFilePath();        
			strMsg += " found.";        
			AfxMessageBox(strMsg, MB_OK | MB_APPLMODAL | MB_ICONSTOP);    
		}
	} 
	finder.Close();


Tomasz Sowinski -- http://www.shooltz.com
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Michael Martin12-Jul-01 3:37
professionalMichael Martin12-Jul-01 3:37 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Tomasz Sowinski12-Jul-01 3:49
Tomasz Sowinski12-Jul-01 3:49 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Michael Martin12-Jul-01 3:53
professionalMichael Martin12-Jul-01 3:53 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Tomasz Sowinski12-Jul-01 4:06
Tomasz Sowinski12-Jul-01 4:06 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Michael Martin12-Jul-01 4:18
professionalMichael Martin12-Jul-01 4:18 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Tomasz Sowinski12-Jul-01 4:25
Tomasz Sowinski12-Jul-01 4:25 
GeneralRe: CFileFind (Maybe I'll get an answer this time) Pin
Michael Dunn12-Jul-01 6:11
sitebuilderMichael Dunn12-Jul-01 6:11 
GeneralDevelop with style Pin
- Emanuele -12-Jul-01 1:59
- Emanuele -12-Jul-01 1:59 
GeneralRe: Develop with style Pin
Tomasz Sowinski12-Jul-01 2:06
Tomasz Sowinski12-Jul-01 2:06 
GeneralRe: Develop with style Pin
NormDroid12-Jul-01 2:09
professionalNormDroid12-Jul-01 2:09 
Generalwhere can find the fastest "LineTO" code? ro how to do! Pin
G.Richard11-Jul-01 23:35
G.Richard11-Jul-01 23:35 
GeneralRe: where can find the fastest Pin
Tomasz Sowinski12-Jul-01 1:01
Tomasz Sowinski12-Jul-01 1:01 
GeneralRe: where can find the fastest Pin
G.Richard12-Jul-01 20:01
G.Richard12-Jul-01 20:01 
GeneralRe: where can find the fastest Pin
Tomasz Sowinski12-Jul-01 23:44
Tomasz Sowinski12-Jul-01 23:44 
GeneralTranspareten window -(CBitmap::BitBlt) Pin
11-Jul-01 23:12
suss11-Jul-01 23:12 
GeneralRe: Transpareten window -(CBitmap::BitBlt) Pin
Tomasz Sowinski12-Jul-01 1:11
Tomasz Sowinski12-Jul-01 1:11 
GeneralRe: Transpareten window -(CBitmap::BitBlt) Pin
12-Jul-01 1:40
suss12-Jul-01 1:40 

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.