Hello,
I have a simple problem but just can't get it solved...
I wrote a java application which just calls some shell-commands from a cocoa / Java Gui.
After pressing a button I use the following code:
statusText.setStringValue ("Starting ...");
my Code ...
statusText.setStringValue("OK");
My Problem is that the Refresh of the Gui e.g. the statusText-Field refreshed not after "Starting ...".
It refreshes after the whole part of the application has ended.
What's wrong how can I force an refresh??
Mark