Hi Ira and Sigurd >> I have tried the Html generator - and it looks fine except for some dates. >> If we choose "from" dates or "between" dates, the second dates are not >> displayed properly - they are cut off. Ira, in 3.05 the dates in the HTML were left justified. On the 4th Jan I sent you a simple formula that you could use not only to achieve the right justification of "short" dates, but would also extend the width of the date field for "long" dates of more than 15 characters, iff you used the whole date as is without truncating it. At the time we also had a discussion about date formatting in general. if ( strlen(DisplayString) < 15 ) { LeadingSpaces = 15 - strlen(DisplayString) ; } else { LeadingSpaces = 0 ; } My suggestion was that if the date was longer than 15 characters, the place/misc field would be shifted to the right in order to accomodate the longer date. I think this is an acceptable compromise, so that "long" dates can be seen in full, while still keeping the normal width of the date column reasonably small (15 characters), which is enough to display single full dates even if prefixed with "abt" etc. So I too was disappointed to to see that "long" dates were still chopped off. Perhaps Ira just forgot to remove the line truncating the date to 15 characters, which is now not needed. John