Click here to Skip to main content
15,916,030 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: c++ to hex Pin
User 665815-Dec-02 12:01
User 665815-Dec-02 12:01 
GeneralATL/WTL Windows and fonts Pin
Jörgen Sigvardsson15-Dec-02 7:58
Jörgen Sigvardsson15-Dec-02 7:58 
GeneralRe: ATL/WTL Windows and fonts Pin
Jörgen Sigvardsson15-Dec-02 8:09
Jörgen Sigvardsson15-Dec-02 8:09 
GeneralFindFirstFile problem Pin
Rickard Andersson2015-Dec-02 7:43
Rickard Andersson2015-Dec-02 7:43 
GeneralRe: FindFirstFile problem Pin
Chris Losinger15-Dec-02 7:45
professionalChris Losinger15-Dec-02 7:45 
GeneralRe: FindFirstFile problem Pin
Rickard Andersson2015-Dec-02 7:50
Rickard Andersson2015-Dec-02 7:50 
GeneralRe: FindFirstFile problem Pin
#realJSOP15-Dec-02 7:50
professional#realJSOP15-Dec-02 7:50 
GeneralRe: FindFirstFile problem Pin
Rickard Andersson2015-Dec-02 7:53
Rickard Andersson2015-Dec-02 7:53 
John Simmons / outlaw programmer wrote:
Try reversing the code in the while block

YES!!
Thanks!

void CGDlg::OnButton1() 
{
	WIN32_FIND_DATA wfd;
	HANDLE hRes = FindFirstFile("C:\\Documents and Settings\\dator19\\Skrivbord\\MUMMEL\\*.txt", &wfd);
	BOOL bOk = (hRes != INVALID_HANDLE_VALUE);
	while(bOk)
	{
		m_ListBox1.AddString(wfd.cFileName);
		bOk = FindNextFile(hRes, &wfd);
	}
}


Rickard Andersson@Suza Computing
C# and C++ programmer from SWEDEN!

UIN: 50302279
E-Mail: nikado@pc.nu
Speciality: I love C#, ASP.NET and C++!

GeneralRe: FindFirstFile problem Pin
Rickard Andersson2015-Dec-02 7:59
Rickard Andersson2015-Dec-02 7:59 
GeneralRe: FindFirstFile problem Pin
Chris Losinger15-Dec-02 8:19
professionalChris Losinger15-Dec-02 8:19 
GeneralRe: FindFirstFile problem Pin
Jörgen Sigvardsson15-Dec-02 7:51
Jörgen Sigvardsson15-Dec-02 7:51 
GeneralOperatingSystemSimulator Pin
sikrip15-Dec-02 7:30
sikrip15-Dec-02 7:30 
GeneralRe: OperatingSystemSimulator Pin
zenboy15-Dec-02 13:57
zenboy15-Dec-02 13:57 
General_tsplitpath(..) API Pin
sedonya15-Dec-02 7:05
sedonya15-Dec-02 7:05 
GeneralRe: _tsplitpath(..) API Pin
Michael Dunn15-Dec-02 12:02
sitebuilderMichael Dunn15-Dec-02 12:02 
GeneralDirectShow: playing wmv Pin
hdi99kf@syd.kth.se15-Dec-02 6:28
hdi99kf@syd.kth.se15-Dec-02 6:28 
GeneralGDI question Pin
Shah Shehpori15-Dec-02 6:15
sussShah Shehpori15-Dec-02 6:15 
GeneralRe: GDI question Pin
Paul M Watt15-Dec-02 17:50
mentorPaul M Watt15-Dec-02 17:50 
GeneralPoliticalamity Pin
Kevnar15-Dec-02 5:52
Kevnar15-Dec-02 5:52 
GeneralRe: Politicalamity Pin
Michael Dunn15-Dec-02 6:28
sitebuilderMichael Dunn15-Dec-02 6:28 
GeneralRe: Politicalamity Pin
Kevnar15-Dec-02 6:50
Kevnar15-Dec-02 6:50 
GeneralRe: Politicalamity Pin
Christian Graus15-Dec-02 10:57
protectorChristian Graus15-Dec-02 10:57 
GeneralRe: Politicalamity Pin
ColinDavies15-Dec-02 14:26
ColinDavies15-Dec-02 14:26 
GeneralRe: Politicalamity Pin
Kevnar15-Dec-02 15:57
Kevnar15-Dec-02 15:57 
GeneralRe: Politicalamity Pin
Christian Graus15-Dec-02 10:54
protectorChristian Graus15-Dec-02 10:54 

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.