The following Java FileDialog does work; except the window is behind all the other windows on the desktop.
FileDialog fd = new FileDialog(new Frame(), “Please choose file:”, FileDialog.LOAD);
fd.show();
How can I get it to show in front of the other windows?
Thanks, Neil.