Is there a reason not to use the native file dialogs on Windows? If not, with attached patch they could be enabled.
Peter
Index: src/frontends/qt4/FileDialog.C =================================================================== --- src/frontends/qt4/FileDialog.C (revision 16431) +++ src/frontends/qt4/FileDialog.C (working copy) @@ -31,7 +31,7 @@ * * Therefore there is a tradeoff in enabling or disabling this (JMarc) */ -#ifdef Q_WS_MACX +#if defined(Q_WS_MACX) || defined(Q_WS_WIN) #define USE_NATIVE_FILEDIALOG 1 #endif