I got a very strange problem. I develope a program which schould show an Alert (javafx.scene.control.Alert) to the user.
In the IDE (Eclipse-Luna) it works fine. To run the programm, a .exe file is building and install on my pc. Installing the .exe file works perfect. After starting the programm, a error occures which confuses me.
The error which is shown above (screenshot from my pc), is the position in the program where the Alert should be shown.
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Information Dialog");
alert.setHeaderText("Look, an Information Dialog");
alert.setContentText("I have a great message for you!");
alert.showAndWait();
Technical information:
- Windows 7 (64bit)
- JDK 1.8.0_65
- Inno Setup 5
- Eclipse Luna(4.4)
I'm really confused... Can any one help me??