I want to display CFileDialog like the image below in Windows 7.

desired dialog

As per msdn

if OFN_ENABLETEMPLATE is set and OFN_EXPLORER flag is not set, the system uses the template to create an old-style dialog box that replaces the default dialog box.

But even after doing that what I get is something like this. The one I get

Please help!

link|improve this question

link to msdn is malformed, why do you keep returning it to a text instead of link? – unkulunkulu Jul 28 '11 at 8:48
stackoverflow does not allow more than two hyperlinks! and they don't allow images to users reputation below 10. so i used hyperlinks for two images and i had to make the msdn link text. only the http:// portion is missing. – rageshctech Jul 28 '11 at 8:53
Why do you want the old windows xp style one instead of the windows 7 equivalent? – Jon Cage Jul 28 '11 at 9:02
Because my client wants it like that :( – rageshctech Jul 28 '11 at 9:05
@rageshtech, yes, but I edited the post, then you edited it back. – unkulunkulu Jul 28 '11 at 9:06
show 4 more comments
feedback

2 Answers

up vote 3 down vote accepted

Try this:

CFileDialog fd(1,0,0,0,0,0,0,FALSE);
fd.m_ofn.lStructSize = sizeof(OPENFILENAME_NT4);
fd.DoModal();

The last parameter to CTOR specifies Vista-style to be false, and structure size of sizeofed with to reflect NT4 file-dialog.

link|improve this answer
Thanks Bro! Worked like magic! :) – rageshctech Jul 28 '11 at 12:59
feedback

I don't think you can. That windows belong to OS and is not implemented anymore. The the closest thing you can use is the old-style dialog box.

You can try to customize this one by hooking the window but it's not easy and I don't thing it worth.

link|improve this answer
Actually the first image is the one dialog that another applicaiton displays in Windows 7! I wanna know whether I can display CFileDialog from my application like that! Please check the two images. – rageshctech Jul 28 '11 at 9:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.