Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+20 votes

The notification says, "Unable To Launch. The selection cannot be launched, and there are no recent launches." Has this happened to anyone else? It wont let me run any of my projects.

asked in CSC211_Winter2018 by (1 point)

1 Answer

+13 votes

Did you create a Java Project, rather than a generic "Project"?

Did you not put the .java files inside the "src" folder within your project?

Are you lacking a proper main method, with the correct syntax?

public static void main(String args[]) {
...
}
answered by (508 points)
...