Formatting posts

TomBascom

Curmudgeon
Did I fat-finger something somewhere or has something happened that now requires posts be composed by embedding html tags?

The default (or my default at least) seems to now be to run everything together.

I don't see anything in my profile or any other options to control this but perhaps I'm blind...
 
Test

Code:
DEFINE VARIABLE iCount AS INTEGER    NO-UNDO.
OUTPUT TO CountyCoutReport.
FOR EACH customer NO-LOCK BREAK BY country:
    icount = 0.
    FOR EACH bCustomer WHERE Customer.Country = bCustomer.Country
        NO-LOCK:
        icount = icount + 1.
    END.
    IF FIRST-OF(country) THEN
        PUT UNFORMATTED Customer.Country FORMAT "X(30)".
    IF LAST-OF(Country) THEN
        PUT UNFORMATTED iCount FORMAT "zzzzz" SKIP.
END.
OUTPUT CLOSE.

yadadayada
 

TomBascom

Curmudgeon
I had "full wysiwyg" enabled.

Let's see what dialing it back a notch accomplishes...

Ah -- that seems to have done the trick.
 
Top