04-18-2013 01:20 PM
When I generate a "Standard Report" (to a printer or PDF) with the attached code, the output looks like this:
If I instead use the same code to generate an HTML report, the output looks like this:
Can anyone explain why the HTML output has had the extra spaces stripped out of it?
Is there anything I can do to prevent it from happening?
VI is attached (LV v11.0.1f2) but this is what it looks like...
04-18-2013 02:12 PM
If you look at your html source the spaces are there. The problem is the way html is rendered it removes the spaces. You will either need to add in <pre> </pre> tags to tell the browser to include those spaces, or insert the string which the browser interprets as a single space.
Regards,
Steve
04-18-2013 03:09 PM
@SteveBale wrote:
If you look at your html source the spaces are there. The problem is the way html is rendered it removes the spaces. You will either need to add in <pre> </pre> tags to tell the browser to include those spaces, or insert the string which the browser interprets as a single space.
Regards,
Steve
OK, thanks. I guess I'll end up living with it the way that it is because