I was able to reproduce this bug. Thanks for the input. As a workaround for now, please put some dymmy statement before the SET For example, : // : Dim (msg, string, "Initial strFooBar value.") : : onerrorgoto SetLabel : raiseerror 1 : goto End : : SetLabel: : Dim dummy, number : set msg, "Hello World!" : messagebox msg : : End: : // : We have seen with version 3.2.4 that if we have a SET statement immediately : following an error handling label LABEL. The error msg is "An error : occurred while executing 24x7 script.". : This JAL script demos the problem: // : Dim (msg, string, "Initial strFooBar value.") : onerrorgoto SetLabel : raiseerror 1 : goto End : SetLabel: set msg, "Hello World!" : messagebox msg : End: //
|