create table in word with ado recordset limits text to 255 characters

E

everettwelch

...I think.

Using the following code:

Set rst = New Recordset
rst.Open strSQL, CurrentProject.Connection

With CreateTableFromRecordset( _
objWord.ActiveDocument.Bookmarks("BugTable").Range, rst
True)
 
Top