You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm also seeing that after I type in my password, hitting the enter button does not cause the form to submit. Not sure if this constitutes a separate issue, or if it's arising from the fact that the elements are not grouped (which is the case for some other languages)
Capture the username and password via a dialog box during program start, rather than at the top of the program. This is actually a better behaviour. That way you can also have a listener run for the enter key within the dialog box, so if I hit enter it automatically goes over to login behaviour?
in LoginListener, actionPerformed, try
comboBox.setEnabled(true);
btnSelectFolder.setEnabled(true);
btnSelectFiles.setEnabled(true);
Combine all under another method to not lose track of important elements
The text was updated successfully, but these errors were encountered: