Search results

  1. Gasoline

    DO block for single statement - pros and cons

    Hi, I've been trying to find out if it is good or bad, to put a single statement within a DO block. E.g. IF iValue > 1000 THEN DO: ASSIGN iHighValue = iHighValue + 1. END.versus IF iValue > 1000 THEN ASSIGN iHighValue = iHighValue + 1.The only information I've found is that the DO -...
  2. Gasoline

    XML output on separate lines

    Hi, I have generated an XML-file with line breaks after each node according to Knowledge base solution P110416. (Inserting a text node containing a linefeed character after each node). The generated xml file also has a doctype declaration and a stylesheet reference tag. These are still...
Top