J
Jeff Ledbetter
Guest
Hi. OE 11.3.2. Why is the following code displaying both my caught error AND then the standard error output? Shouldn't the CATCH cause the other to be supressed? DEFINE TEMP-TABLE ttRow FIELD RowIdent AS CHARACTER INDEX ttRow1 IS UNIQUE RowIdent. DEFINE VARIABLE i AS INTEGER NO-UNDO. FOR EACH sports2000.customer NO-LOCK ON ERROR UNDO, THROW: CREATE ttRow. ASSIGN ttRow.Rowident = "1". END. CATCH e AS PROGRESS.Lang.SysError: MESSAGE "I got it! " SKIP(1) e:GetMessage(1) VIEW-AS ALERT-BOX. END CATCH.
Continue reading...
Continue reading...