Hello all,
I have a browse button which allows users to select a Word rtfdocument. I then loadthe selected fileinto a RichTextBox control using the following code:
Code Block
With New IO.StreamReader(UserSelectedFileNameAndPath)
Me.RichTextBox1.Rtf = .ReadToEnd
.Close()
.Dispose()
End With
The problem is that the Word tables are not displayed correctly. It appears that column widths are calculated incorrectly so that header textand data ends up being displayed to the right of the table rectangles.
How can I fix this? Thanks in advance for any ideas and/or suggestions!