Subj : Re: New Explorer Open/Save dialog To : borland.public.cpp.borlandcpp From : Max Dupilka Date : Wed Feb 11 2004 01:05 pm Thank you for all you suggestions. This is how I got it to work. I have been using Borland's TOpenSaveDialog class. I notice in your code you use the API "GetOpenFileName" call. I tried using this call and things work! It appears the Borland class does not access the latest dialogs. Is this a common problem with Borland? When I use the Windows API I do not need to define WINVER or the _WIN32_WINNT. Thanks for all the help (and the code) Max Ed Mulroy [TeamB] wrote: > In the group > > borland.public.attachments > > I have posted two messages in that group with the titles "TextCvt Zip File" > and "TextCvt Dialog Pic". > > The Dialog Pic message has an attachment which is a screen shot of the file > selection dialog the program presents. > > The Zip File message has an attachment which is a zip file containing what > you need to build a little utility called textcvt.exe, a file which uses the > file selection dialog of the style you desire. It is nothing special, just > a small utility whose function is not important to this discussion other > than that it uses the GetOpenFileName function. > > To build it unpack the zip file into a new directory, make that directory > the default one and give this command > > make -f textcvt.mak > (the space after the -f and the extension .mak are optional) > > My system is set up to have WINVER set to 0x400. If your system is not then > it may not have the new style dialog. Compare the EXE you build on your > machine to the EXE from the ZIP file and confirm that the one from the ZIP > does what you were asking. > > If your build does not have that then add the following to the make file: > > On the bcc32 command line add this > > -DWINVER=0x0400 > > On the ilink32 command line add this: > > -V4.0 > > Let me know how it works out. > > . Ed > > >>Max Dupilka wrote in message >>news:402958ab$1@newsgroups.borland.com... >> >>...I tried both suggestions and still get the old style window. >>I am trying to get the latest view with the large History, Desktop, >>etc. buttons down the left side. Also, is it possible to center >>these common dialogs on the page? > > > .