I know I can format the colors of the rows and header in LS. How can I get rid of the lines between the cells? The table is only used for formatting. Thanks for the help.
Subject: Remove lines in table in LotusScript`
You can’t. The best way to do this is to create a “seed” table in a rich text field somewhere and use AppendRTItem to get the table into your new document, then use AppendRow to add to that table. The table and cell outlines will be governed by the seed table, so if you create a table with no outlines and add to it, your completed table will not have outlines either.
Subject: RE: Remove lines in table in LotusScript`
Thanks Stan. Not crazy about the answer, but at least there is a solution…