in reply to Re^3: Headings in Perl6::Form
in thread Headings in Perl6::Form

Thanks again! This works, but each field replaced with the non-breaking space prints as a "?' which is not visually appealing. I did, however, find a slightly different solution which works for me.

Following the documentation, I was trying to append a "\r" to each field to get a blank line after each row. Using a single "\r" didn't give me the blank line, but I noticed that it did get rid of the '?' in the blank columns. I discovered that if I appended "\r\r" I both got rid of the '?' in the blank columns and I got my blank line after each row. I'm a happy camper!