Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
7answers
1k views

Does Swing support Windows 7-style file choosers?

I just added a standard "Open file" dialog to a small desktop app I'm writing, based on the JFileChooser entry of the Swing Tutorial. It's generating a window that looks like this: but I would ...
5
votes
1answer
313 views

GTK+ Filechooser to open both files and folders

How do I get my filechooser to be able to select both files and folders when the open button on the filechooser dialog is hit ? I want to squeeze the ability to open files and filders in just one ...
4
votes
4answers
426 views

choosing a file in python - simple GUI

I would like to use the simplest library to choose a file in local directories. My program has nothing to do with a fancy user interface. It can take all the input from the console. I don't want users ...
1
vote
0answers
12 views

File Writer illigal escape characters?

i dont know whats wrong with code. Im exporting things to a csv file (that works) now i want to add a file chooser so the user can choose where to save the csv file... but it doestn want to work... I ...
1
vote
0answers
140 views

Swing FileChooser / FileFilter [closed]

Possible Duplicate: adjust selected File to FileFilter in a JFileChooser I have a JFileChooser with a FileFilter (txt, doc, odt) and I want to save an existing file. So I open the file ...
1
vote
1answer
164 views

FileChooser onFocus of text box C++

I want to bypass the need for a button to invoke a FileChooser dialog in my application, so I'm setting it so that when the text box gains focus, the FileChooser just launches automatically. This is ...
1
vote
1answer
67 views

How do I return filename on label after selected in cocoa?

I'm working on an encrypting application, and I have implemented a file chooser. After I select the file, I want to be able to return the filename onto a label right next to the "choose file" button. ...
1
vote
2answers
493 views

Problem with loading image in java with FileChooser

I have write a class filechooser where I can choose files. I had searched for a class that loads images but nothing. My filechooser class can made a panel with button open and save. When I press ...
1
vote
1answer
568 views

pyGTK/GTK filechooser - Is it possible to validate user entry before file or folder is written to disc?

I would like to validate the users choice of folder name in a gtk.FileChooser dialogue when creating a new folder. I tried connecting to the dialogue 'response' signal, but it is already too late, the ...
1
vote
1answer
160 views

Enable GtkFileChooserDialog to select files OR folders

Using GTK+'s GtkFileChooserDialog, how can I allow the user to select a file or a folder (both are valid here). The actions available are mutually exclusive.
1
vote
3answers
405 views

java file picker with inline thumbnails

I need a nautilus-style file picker in java, where the files are shown "gallery-style" with a customisable thumbnail for each file. Is it possible to make the standard open file dialog do this? If ...
1
vote
3answers
1k views

Using a FileDialog to choose a file of a certain extension

I am trying to use a FileDialog file chooser because I really need java app to have the native apple file chooser (I know we all hate hate the lack of portability but this is what I need). I am ...
0
votes
0answers
10 views

Server Side File Browsing

I'm working on a web app that reads data from a set of text files and maps it to a MySQL database. Currently, the form requires manual input of the file path, but I would like to add a file chooser ...
0
votes
0answers
16 views

Expand extra widget in FileChooserDialog

I have a FileChooserDialog and since I wanted to provide advanced options I added a VBox with set_extra_widget. Inside the VBox there is a ComboBox and an Expander. I'd like to have the ComboBox on ...
0
votes
1answer
106 views

using the filechooser dialog with glade

I would like to ask if anyone knows how to use the filechooser dialog in glade and pygtk. (It should be very similar in any of the language bindings, and that is why I didn't specify the language.) ...
0
votes
0answers
71 views

File Browser to access any HTTP URL(Sharepoint URL) and select a file from the list of all the files present in the URL location

I need java code to do the below operation 1)I need to access to a share point location using http url given as input.(for example in my input.jsp i will take the http url of the sharepoint location ...
0
votes
1answer
114 views

SFML and GTK+ - GtkFileChooserDialog

I'm writing an app using SFML and I want to use GTK+ to create file chooser dialogs. I have this code: gtk_init(&argc, &argv); GtkWidget *dialog; dialog = gtk_file_chooser_dialog_new ("Open ...
0
votes
2answers
355 views

Get ID of Button for Switch Statement: MFC

Language: Visual C++, MFC Environment: Visual Studio 2005 I have a dialog that requires the user to set file paths for six different settings. Each text box has a browse button which launches a file ...
0
votes
1answer
72 views

Filechooser: get selected postfix

I have the following Method. In the fileschooser I can select a file or just type in the name to create a new one. This is working fine. But how can I check programmatically which extension was chosen ...
0
votes
1answer
71 views

Problem loading image in the correct frame

This is my code from the main frame window: public class DynamicalSystem { public static void createAndShowGraphic() { //Create and set up the window. JFrame frame = new ...
0
votes
1answer
60 views

how to auto-select source file when build a install packet

i have the following requirement: two folders A and B, for file a, if it exists in A, we build it into our install packet, otherwise we use file a in folder B as the default selection. how to ...
0
votes
3answers
266 views

Autocomplete in a Java File Chooser

I'm looking for a way to add auto complete functionality in Java a File Chooser Dialog. Seems Java Swing JFileChooser doesn't support that. The only alternative I found is gtk FileChooser I would love ...
0
votes
2answers
88 views

An error about listview

I tried to make a file choose following the below link http://www.dreamincode.net/forums/topic/190013-creating-simple-file-chooser/ However, I got the error "Your content must have a ListView whose ...
0
votes
1answer
74 views

JFileChooser or need to use something else

I am plannind to do a POC and the basic requirements for my application: I am trying to import a file (or) files - Option for MultiSelect - Options for thumbnails (apart from Details and List) mainly ...
0
votes
2answers
941 views

How to set gtk file chooser button default to user's home folder

I've got a gtk file chooser button on my application I am writing in c# using Mono Develop. I would like to set the file chooser's default location to the users' home directory regardless of what user ...
0
votes
1answer
265 views

Can AWT file choosers not access Aliases in OSX?

I need to use AWT file choosers for my java app because we want to give users the native mac file chooser. Yes I know abut quaqua and we use it, but it does not use the native file chooser and mac ...
0
votes
2answers
1k views

FileChooser to select a directory, not a file

My code processes all the files in a folder on a Windows box. I want to offer the user (who happens to also be me) the option to select the folder to be processed, using the standard File Chooser ...