I\'m developing a desktop application using javafx v8.0.40. I have created an exe file with inno 5. When I run exe file in my computer, it is installed and run without any p
I could not fix the problem, but I found a way around it. I used notepad to create a batch file to launch the app. First I used cd to get to the directory of the .jar file and then used java -jar to launch the app. It should look something like this:
cd C:\[wherever your project folder is located]\[name of project]\dist
java -jar [name of project].jar
Save it as a .bat file on the desktop, launch the batch file and your program will boot!