Citect has
confirmed this to be a problem and as a work around the following
functions have to be modified in the CSV_MultiMonitors.ci file in
CSV_Include project. Add the IsError() function (in red) as shown
below.
INT
|
FUNCTION
|
_msLastPageQue_ArraySet(INT
iIndex1, INT iIndex2, INT iIndex3, STRING sValue)
|
|
ErrSet(1);
|
|
msLastPageQue[iIndex1][iIndex2][iIndex3]
= sValue;
|
msLastPageQue_[iIndex1][iIndex2][iIndex3]
= StrMid(sValue, 127, 127);
|
IsError();
// Clear any errors.
|
|
ErrSet(0);
|
RETURN
0;
|
END
|
PRIVATE
|
_msRecentAction_ArraySet(INT
iIndex, STRING sValue)
|
|
ErrSet(1);
|
|
msRecentAction[iIndex]
= sValue;
|
msRecentAction_[iIndex]
= StrMid(sValue, 127, 127);
|
IsError();
// Clear any errors.
|
|
ErrSet(0);
|
RETURN
0;
|
END
|
|