OK, I have figured out how to access the FileDialog window withBut, my problem is that it allows any file to be selected because the File Type dropdown box only has All Files as a valid value. How can I add a different value to the File Type dropdown box?
FileDialog fd = new FileDialog(new Frame(),"File Picker"); fd.setLocation(100, 100); fd.setVisible(true);