Tagged Questions
topendialog is a non visual VCL component wrapping a file-selection dialog. It is defined in Dialogs.pas.
14
votes
1answer
258 views
Why is trying to open a TOpenDialog spawning a ton of threads?
I've got a very simple form with a TOpenDialog and a button on it. When I press the button, it calls Execute on the dialog. If I watch in the debugger, the act of opening the dialog box spawns ...
6
votes
3answers
3k views
Delphi 7 and Vista/Windows 7 common dialogs - events do not work
I'm trying to modify the Delphi 7 Dialogs.pas to access the newer Windows 7 Open/Save dialog boxes (see Creating Windows Vista Ready Applications with Delphi). I can display the dialogs using the ...
5
votes
1answer
1k views
Custom preview for open dialog using Delphi
I need to preview several CAD formats in the file open dialog box in Windows 7 / Vista. In the past I used a Delphi Preview Open Dialog and I could register and implement the CAD format that I had to ...
4
votes
4answers
1k views
What is the most common way to create a folder selection dialog using Delphi?
There doesn't appear to be a simple component available to create a folder selection dialog in Delphi 2009, although a file selection dialog is provided by way of the TOpenDialog.
What is the most ...
2
votes
1answer
446 views
Open / save file dialog set focus to the file list view
is it possible to open TOpenDialog, TSaveDialog with focus set to the file list view instead of file name edit box ?
Thanks a lot
Regards
1
vote
4answers
454 views
How to set a sorting mode in Open Dialog
A user can manually sort files in a standard Windows Open Dialog (in "Details" view mode) by Name, Date or Size by clicking on the corresponding column header. How to set a sorting mode in Open Dialog ...
1
vote
2answers
276 views
is there a way to disable the hint for a TOpenDialog in delphi
i have a TOpenDialog component i am creating on runtime and i want to disable the hint that pops up over files when it is used. i have not written any exrta code for this than creating the object, ...
1
vote
5answers
2k views
Delphi 7 - Embedded file open dialog in a form
Does anyone know if it is possible to embed a file open dialog inside your own form?
We have a tabbed dialog and on one of the tabs we want the user to be able to browse for a file with the same ...
0
votes
1answer
44 views
How I could to forbid show of hidden/system files in TOpenDialog?
I try to write a prog for safe deleting files. Howewer, I have a problem with deleting sysem files (recycle bin etc.). Now my question is. Which way to hidden files (from users) at this dialog. Other ...
0
votes
1answer
249 views
Draw a “TPanel” in WINAPI?
I want to extend an open/save dialog with a "drop-box" which should look like a TPanel (bevel). The code is already there - I use CreateWindowEx() with WNDCLASS name "Edit".
I have searched for a ...
0
votes
1answer
197 views
GetDir in Delphi2010 not working under Windows 7?
I have the following sequence of commands in Delphi2010:
var netdir:string;
....
OpenDialog1.InitialDir:=netdir;
....
OpenDialog1.Execute...
....
GetDir(0,netdir);
....
After ...
0
votes
1answer
405 views
TOpenDialog in Delphi - how to open only file with given name
User should open only "KLADR.DBF" file. I'm setting "Filter" property to "kladr.dbf" and dialog shows only required file, but in the same directory there are another ".DBF" file (STREET.DBF) and user ...
-1
votes
1answer
178 views
Delphi 5 TOpenDialog Options Wont Work [closed]
begin
opendialog := TFileOpenDialog.Create(this);
opendialog.options := (ofAllowMultiSelect);
// Display the open file dialog
if not opendialog.Execute then
begin
...