S
Sanjeva Manchala
Guest
Hello, If you are looking for simple display of a message statement using alert box try the below code in custom.p and then you can run the file from editor context menu options saying Run As > Progress OpenEdge Application. You can find the same in attached screenshot. Also let us know what errors are you seeing when you run the fil. Sample code: DEFINE VARIABLE a AS INTEGER NO-UNDO . DEFINE VARIABLE b AS INTEGER NO-UNDO . DEFINE VARIABLE res AS INTEGER NO-UNDO . ASSIGN a = 10 b = 20 . res = a + b. MESSAGE res VIEW-AS ALERT-BOX . Thanks, Sanjeev
Continue reading...
Continue reading...