Issue while Calling External Procedure

srikanthkotha

New Member
Hi,

I have written program which calls external procedure when a button is triggered. External procedure contains a registration form. When I execute external program independently, it is working fine. When it is called from Main program, all statements in external procedure are executed but not allowed to perform registration. Could you please correct me on this. Below is the call statement.
Code:
ON CHOOSE OF signin DO:
  RUN r-bnksignin.p.
END.

Also trigger is executing only first time. Next time on wards trigger is not working.
Thanks & Regards

Srikanth
 
Thank You Cringer. I tried running procedure persistently.
I have attached code for main program and subprograms. Please review. Please find below details as well
Progress Version: Open Edge 11.2.0
OS : Windows 8
 

Attachments

Hi,
This issue is corrected. I have changed form definition in sub program as below .

WITH FRAME sign-frm SIZE 80 BY 25 SIDE-LABELS.

Old Code:

WITH FRAME sign-frm SIZE 80 BY 25
WITH 1 DOWN NO-BOX KEEP-TAB-ORDER OVERLAY
SIDE-LABELS NO-UNDERLINE THREE-D AT COL 1 ROW 1 SCROLLABLE .
 
Back
Top