Is it permissible to combine conditions with AND in the statement like this:
 
IF x=1 AND y=2 THEN
...
ENDIF
 
or is it better to break it into two parts:
 
IF x=1 THEN
  IF y=2 THEN
...
  ENDIF
ENDIF
 
I don't remember having any problems in the past but one particular piece of code seems only to work the second way at the moment and I can't find any other error.
 
(This is an error that's been around for a while so it's not an upgrade problem.)
 
Regards,
Alastair.
 
----------------------------------
A D B Burr,
St. Albans, UK.
----------------------------------
[EMAIL PROTECTED]
----------------------------------

Reply via email to