if (sampleJComboBox.getSelectedIndex() == 0) {
editSampleJButton.setEnabled(false);
} else if (sampleJComboBox.getSelectedIndex() == sampleJComboBox.getItemCount() - 1) {
editSampleJButton.setEnabled(false);
sampleJComboBox.setSelectedIndex(0);
new NewSampleDialog(this, true);
} else {
editSampleJButton.setEnabled(true);
}
validateInput();