Sometimes strange things happen in Eclipse. Like this one in WindowBuilder, the best tool for designing GUIs in Eclipse (via).
WeiterlesenKategorie: Programmieren
Java: Handle Exceptions from Threads
In this post I want to describe handling exceptions from threads with the ThreadGroup class and the uncaughtExceptionHandler. First we
WeiterlesenDynamically create QR codes using PHP
Today I wrote a blog entry about QR codes in our eKiwi.de blog. There we where using an online tool
WeiterlesenJava/RCP – okPressed in JFace dialog
Sometimes JFace and RCP are not straightforward. At least not for me. For example the JFace dialog: It features an
WeiterlesenC#–Read STDOUT from a console application
Recently I needed to start a console application from C#, wait until the execution has finished and read the output
WeiterlesenJava: Check if your code is running in Eclipse
Sometimes, for example during debugging, it is useful to check if your code is running from the Eclipse IDE to
WeiterlesenRCP Application Set Title of Application Window
To dynamically set the title of a RCP application, the following code snippet is useful: private String fileName = "unknown.daf";
WeiterlesenJava – Load text file to string
Most common in programming is to load text files to a string. Since this usually involves some lines of code,
WeiterlesenJava/SWT GUI Access from Thread
A thread in Java cannot directly access the GUI. With the following snippet, the access is possible: Call from the
WeiterlesenRemove unwanted actions in RCP application
In my current RCP application some unwanted Eclipse actions showed up in the toolbar and menubar: How to get rid
Weiterlesen