The opendialog tag has no wiki summary.
4
votes
2answers
144 views
How can I show only certain file extensions in an open-file dialog?
When I open a folder with an OpenDialog, how can I filter it so users can view only certain files (e.g., Stringgrid, *.sg) and the files with any other extension do not appear in the dialog window?
3
votes
4answers
1k views
want to get a list of all files of directory in Delphi
I am working with delphi, I want a list of all files of a directory when I execute openpicturedialog.
i.e., When open dialog is executed and
i select one file from it, I want the
list ...
1
vote
1answer
471 views
Application hangs when Open/Save dialog in windows 7
I have an application written by Delphi 7 and this application works fine in windows XP. Now i has upgrade my pc to windows 7 and everythings works fine with this application except when i click the ...
1
vote
2answers
286 views
getOpenFileNames dialog is not centered to the main window
Why the opened dialog is not centered to the main window?
void MainWindow::on_FileOpenAction_triggered()
{
QStringList fileNames = QFileDialog::getOpenFileNames(
this,
"Open ...
1
vote
4answers
4k views
How to find modal dialog opener from javascript?
I have a page that opens a modal dialog. After the operations done on dialog I want to refresh the opener page. But when I open the popup by using "openDialog" I cannot access to the opener by using ...
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
0answers
37 views
How to prevent display of hidden files in SWT open dialog?
I am developing a Java application with SWT and using org.eclipse.swt.widgets.FileDialog class for file input like this:
FileDialog dialog = new FileDialog(shell, SWT.OPEN);
String[] filterNames = ...
0
votes
2answers
44 views
How can I see system files in standard file dialog? [closed]
I can see hidden files, but cannot see superhidden.
0
votes
1answer
206 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
193 views
Automate open dialog box
Is there any way to automate a opening files with open dialog box on Mac OS? The application asks user to open files with the standard open dialog box. But I need open files automatically.
The idea ...