I have a button with action listener. When action is performed I call a method to show a label with my message using:
Actionperformed(){
ShowMessage();
PerformAction();
}
NOTE: This code is just an example.
The problem is the message never shows even though the action is performed.
Any help will be appreciated. Thanks in advance