File Open Dialog with Encodings combobox under Vista. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:58:41Z http://stackoverflow.com/feeds/question/1076827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1076827/file-open-dialog-with-encodings-combobox-under-vista 1 File Open Dialog with Encodings combobox under Vista. MarkF 2009-07-02T21:48:39Z 2009-07-03T07:23:42Z <p>I currently use the TOpenTextFileDialog as it has the Encodings option, but under Vista it appears using the older open dialog style. I'd like the new style open dialog, but with an encoding combobox that I can fill with custom strings. Basically I want the exact open dialog that Notepad shows under Vista. Of course I also need the corresponding save dialog as well. </p> <p>I've done some research and it seems that the OFN_ENABLETEMPLATE flag causes the Vista common dialog to fall back to the old style. Unfortunately that's also the flag that lets the TOpenTextFileDialog modify the window to add the encodings combobox (if I understand things properly.) </p> <p>Does anyone have a suggestion on how to get what I want under Vista but still have it work under XP? I assume that Windows 7 will have the same issue. I'm using D2009. Thanks for any suggestions or help!</p> http://stackoverflow.com/questions/1076827/file-open-dialog-with-encodings-combobox-under-vista/1078164#1078164 2 Answer by mghie for File Open Dialog with Encodings combobox under Vista. mghie 2009-07-03T07:23:42Z 2009-07-03T07:23:42Z <p>With Vista a new way of dealing with file dialogs has been introduced, for more information google for the <code>IFileDialog</code> interface or have a look at <a href="http://akirabbq.spaces.live.com/blog/cns!CEB8A04DC43BCEE9!283.entry" rel="nofollow">this blog post</a>. As you say yourself, using the <code>OFN_ENABLETEMPLATE</code> flag causes the Vista common dialog to fall back to the old style.</p> <p>With Delphi 2007 and 2009 you can use the <code>TFileOpenDialog</code> and <code>TFileSaveDialog</code> in the <em>Vista Dialogs</em> components category. To make your application compatible with pre-Vista Windows versions you should keep using the <code>TOpenTextFileDialog</code> for those, and check at runtime whether you are on Vista and can use the new dialogs:</p> <pre><code>if Win32MajorVersion &gt;= 6 then begin // use TFileOpenDialog // ... end else begin // use TOpenTextFileDialog // ... end; </code></pre> <p>Now you only need to add the customization to the Vista dialog. <a href="http://akirabbq.spaces.live.com/blog/cns!CEB8A04DC43BCEE9!283.entry" rel="nofollow">The blog post</a> shows how to do this, by adding a handler for <code>OnExecute</code> of the dialog (because at the time when this is called the <code>IFileDialog</code> interface has been set up already), querying the <code>Dialog</code> member of the file dialog for the <code>IFileDialogCustomize</code> interface, and using this to add the additional controls.</p>