CoeurdeLeon 8 Posted September 16 What File Open dialog supports preview of the file to be opened. I am using Delphi 12.2. Thank you in advance. Share this post Link to post
Uwe Raabe 2057 Posted September 16 TFileOpenDialog supports the same previews as Windows Explorer. Share this post Link to post
CoeurdeLeon 8 Posted September 16 I would like to clarify. I am looking for a Dialog that allows a user to select a file and that file content is displayed to the right. This allows the user to select the file knowing he has the right file. What delphi dialog achieves this objective? Thank you in advance. Share this post Link to post
CoeurdeLeon 8 Posted September 16 "TFileOpenDialog supports the same previews as Windows Explorer." Uwe I have tried this and cannot see a preview of the file. What am I doing wrong? Share this post Link to post
CoeurdeLeon 8 Posted September 16 Uwe Forgive me for this misplaced comment, but THANK YOU FOR EVERTHING YOU DO. Dick Maley Share this post Link to post
Dave Nottage 557 Posted September 16 (edited) 46 minutes ago, CoeurdeLeon said: I have tried this and cannot see a preview of the file. What am I doing wrong? Set the fdoForcePreviewPaneOn flag on in the Options property. It should be noted however, that this will work only where preview of the selected file type is supported. Edited September 16 by Dave Nottage Share this post Link to post
Uwe Raabe 2057 Posted September 17 10 hours ago, CoeurdeLeon said: I have tried this and cannot see a preview of the file. What am I doing wrong? You might have missed to make the preview pane visible, either by clicking the corresponding symbol or by setting the appropriate option ad Dave already mentioned. Share this post Link to post
Uwe Raabe 2057 Posted September 17 9 hours ago, Dave Nottage said: It should be noted however, that this will work only where preview of the selected file type is supported. Of course, if there is no code to create a preview it obviously cannot be shown. In case you think about creating your own previews used by Windows Explorer, I once wrote an article about how to do that with Delphi: Windows 7 Previews – the Delphi Way (not sure if that is still valid for more recent Windows versions, though). 1 Share this post Link to post
pyscripter 689 Posted September 17 48 minutes ago, Uwe Raabe said: In case you think about creating your own previews used by Windows Explorer SVG Shell Extensions contains examples of how to create Windows File Explorer extensions, both preview and thumbnail. 1 Share this post Link to post