[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Running an Individual Program in a Progress Developer Studio Project

  • Thread starter Thread starter Sanjeva Manchala
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top