I'm using the following code to write records to Word 2016 from a table, however my header row is not displaying. Any thoughts?
Function Export2DOC(sQuery As String) Dim oWord As Object Dim oWordDoc As Object Dim oWordTbl As Object Dim bWordOpened As Boolean Dim db As DAO.Database Dim rs As DAO.Recordset Dim iCols As Integer Dim iRecCount As Integer Dim iFldCount As Integer Dim i As Integer Dim j As Integer Const wdPrintView = 3 Const wdWord9TableBehavior = 1 Const wdAutoFitFixed = 0 'Start Word On Error Resume Next Set oWord = GetObject("Word.Application") 'Bind to existing instance of Word If Err.Number <> 0 Then 'Could not get instance of Word, so create a new one Err.Clear On Error GoTo Error_Handler Set oWord = CreateObject("Word.application") bWordOpened = False Else 'Word was already running bWordOpened = True End If On Error GoTo Error_Handler oWord.Visible = False 'Keep Word hidden until we are done with our manipulation Set oWordDoc = oWord.Documents.Add 'Start a new document 'Open our SQL Statement, Table, Query Set db = CurrentDb Set rs = db.OpenRecordset("tblSearch") With rs If .RecordCount <> 0 Then .MoveLast 'Ensure proper count iRecCount = .RecordCount 'Number of records returned by the table/query .MoveFirst iFldCount = .Fields.Count 'Number of fields/columns returned by the table/query oWord.ActiveWindow.View.Type = wdPrintView 'Switch to print preview mode (not req'd just a personal preference) oWord.ActiveDocument.Tables.Add Range:=oWord.Selection.Range, NumRows:=iRecCount, NumColumns:= _ iFldCount, DefaultTableBehavior:=wdWord9TableBehavior, AutoFitBehavior:= _ wdAutoFitFixed 'Build our Header Row Set oWordTbl = oWordDoc.Tables(1) For i = 0 To iFldCount - 1 oWordTbl.Cell(1, i + 1) = rs.Fields(i).Name Next i i = 1 ' first row of data goes in 2nd row of table 'Build our data rows Set oWordTbl = oWordDoc.Tables(1) Do Until rs.EOF = True For j = 0 To iFldCount - 1 oWordTbl.Cell(i, j + 1) = Nz(rs.Fields(j).Value, "") Next j .MoveNext i = i + 1 Loop Else MsgBox "There are no records returned by the specified queries/SQL statement.", vbCritical + vbOKOnly, "No data to generate an Word spreadsheet with" GoTo Error_Handler_Exit End If End With ' oWordDoc.Close True, sFileName 'Save and close 'Close Word if is wasn't originally running ' If bWordOpened = False Then ' oWord.Quit ' End IfError_Handler_Exit: On Error Resume Next oWord.Visible = True 'Make Word visible to the user rs.Close Set rs = Nothing Set db = Nothing Set oWordTbl = Nothing Set oWordDoc = Nothing Set oWord = Nothing Exit FunctionError_Handler: MsgBox "The following error has occured" & vbCrLf & vbCrLf & _ "Error Number: " & Err.Number & vbCrLf & _ "Error Source: Export2DOC" & vbCrLf & _ "Error Description: " & Err.Description _ , vbOKOnly + vbCritical, "An Error has Occured!" Resume Error_Handler_ExitEnd Function