Hi everyone,
I've written some code in the OnQueryClosePage trigger of a page.
IF CloseAction IN [ACTION::OK,ACTION::LookupOK] THEN BEGIN
fctXXX();
Rec.NEXT;
END;
The code in fctXXX() is executed but the page closes anyway (whether there is a next record or not).
Is there a way to prevent the page from closing if there is a next record?
Thanks in advance
I've written some code in the OnQueryClosePage trigger of a page.
IF CloseAction IN [ACTION::OK,ACTION::LookupOK] THEN BEGIN
fctXXX();
Rec.NEXT;
END;
The code in fctXXX() is executed but the page closes anyway (whether there is a next record or not).
Is there a way to prevent the page from closing if there is a next record?
Thanks in advance