Hi,
My requirement is very simple i guess.
In a check box click I want to display a message box with Yes and No button. If user clicks on Yes it performs certain activities and if clicks on No then performs certain activities.
Please advice.
Regards,
Arindam
0
Answers
It answers my question.
I used this code :
bAnswer := DIALOG.CONFIRM('Question', TRUE);
MESSAGE(FORMAT(bAnswer));
It returns me 'Yes' or 'No', depends on the selection.