I have this code:

type
    dbgOptions = (dbgAMI, dbgRemoteLinks);

var
  dbgActiveOptions: set of dbgOptions;


procedure SetupDefaultvars;
begin
  dbgActiveOptions := [];
end;

Running the code below produces this error message:
rcacsbilling.pas(3660,25) Error: Identifier not found "dbgRemoteLinks"

      if [dbgRemoteLinks] in dbgActiveOptions then
        mmoURLPageContent.Lines.AddStrings(procList);

Is that the wrong syntax in FreePascal?



-- 
Frank Church

=======================
http://devblog.brahmancreations.com
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to