• Hi Julian,

    I am trying to manage table borders in code individually. The code I am using is:

    Dim TextCursor As IWPTextCursor = Memo.TextCursor
    Dim curpar As IWPParInterface
    curpar = Memo.CurrPar
    curpar.ParASet(60, 0)
    curpar.ParASet(61, 0)
    curpar.ParASet(62, 0)
    curpar.ParASet(63, 0)

    It isn't doing anything. How do I show/hide the borders on a table in code.

    VB thanks.

    Rob