JPanel panel = new JPanel(new BorderLayout(12, 12));
JLabel label = new JLabel("Please specify the location and name of the file to export to.");
panel.add(label, BorderLayout.NORTH);
JPanel entryPanel = new JPanel(new BorderLayout(12, 12));
pathNameField = new JTextField();
pathNameField.addCaretListener(new CaretListener() {
/**
* Called when the caret position is updated.
*
* @param e the caret event
*/