Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to display an error message on screen?

Former Member
0 Kudos

Hi experts,

In screen painter, how to display an error message in the message area just below the screen?

Thanks!

5 REPLIES 5

JozsefSzikszai
Active Contributor
0 Kudos

hi,

you do that in the source code (not in the screen painter), with the normal MESSAGE statement (like any other cases).

hope this helps

ec

Former Member
0 Kudos

hi,

use

message 'hello' type 's' display like 'e'.

Edited by: Amit Gupta on Aug 27, 2008 3:07 PM

Former Member
0 Kudos

hi wuyia,.

Write like this;

Message 'Process completed Successfuly' TYPE 'S'.
Message 'Want to Overwrite Value' TYPE 'W'.
Message 'Press enter to continue' TYPE 'I'.
Message 'Invalid Input' TYPE 'E'.

S - Success

W - Warning

I - Information

E - Error

You can adjust your GUI option to display the message in a Popup or in the status bar.

Regards

Karthik D

0 Kudos

hi,

may i know where to adjust the GUI option to display the message in Pop up.

thanks.

Former Member
0 Kudos

Define the message-id at the top of the code.

Then use message type e for displaying error message.