Hi,
very nice codes...
I found one bug in RTFtable
VB Code:
Public Sub InsertTable(RTB As RichTextBox) 'set column widths For c = 1 To mvarColumns strInsert = strInsert & "\cellx" w = mvarxLeft For i = 1 To c [COLOR=Red]w = w + mvarclsColumn(c).xWidth[/COLOR] Next i strInsert = strInsert & CStr(w) Next c
If you have all columns same size you can't see difference, but
must be:
w = w + mvarclsColumn(i).xWidth




Reply With Quote