Dear all

I am currently working on a macro that will allow me to send documents through Lotus Notes

However, I ran into a blocking point, and was not able to find anything on the net - here the extract that I need expanding on..

sub LN
dim rtStyle as object
dim sFormattedText as variant

sFormattedText = "My text"

            rtStyle.Bold = True
            If Replace(bal, ",", "") < 0 Then
                rtStyle.NotesColor = 2
                Else
                rtStyle.NotesColor = 9
            End If
            rtItem.AppendStyle rtStyle
            rtItem.AppendText sFormattedText

end sub
what I need, for formatting purposes, is to insert tabstops at certain points - but I was not able to find how to write this.
Im a guessing it should be something like rtStyle.TabStop - but I just can't figure it out

Any help is appreciated

FD