I have a JFrame application. It's not within a project. I would like to create an exe from it. I am using jexegen with the following commands: jexegen /out:Maths1.exe /main:Maths1 Maths1.class Maths1$EventListen.class
and yet the exe that is created does not start. It displays a message but I the screen does not stay long enough for me to see it. I have not made any changes in my source code to accomodate the exe. When I read up on it over the internet none of the articles mentioned needing to change the source code, and none of their examples had anything in their source code that accomodated an exe. The application is GUI, it takes in user input and writes to a *.csv file which it creates if there is none there. Can someone help me out?