int res = fcChooseFolder.showOpenDialog(this);
if (res == JFileChooser.APPROVE_OPTION) {
cfg.setLastOpenDialogPath(fcChooseFolder.getCurrentDirectory());
try {
DBaseParser dbParser = new DBaseParser(fcChooseFolder.getSelectedFile());
dbParser.run();
} catch (ClipsException ex) {
MessageBox.showException(ex);
}
}