Hi,
Something like this?
Private Sub CommandButton1_Click()
' Set reference to 'Microsoft Word xx.0 Object Library'' via VBE > Tools > References.'
Dim wdApp As Word.Application
Dim wdDoc As Word.Document
Dim bWeStartedWord As Boolean
On Error Resume Next
Set wdApp = GetObject(, "Word.Application")
On Error GoTo 0
If wdApp Is Nothing Then
Set wdApp = CreateObject("Word.Application")
bWeStartedWord = True
End If
wdApp.Visible = True 'optional, not required
wdApp.Activate 'optional, not required
' On Error GoTo ExitPoint 'commented-out during debugging.
Set wdDoc = wdApp.Documents.Open("K:\Control_Centre\Fatal_Collision_Photo_Album.doc")
wdDoc.Tables(1).Cell(1, 2).Range.Text = TextBox1.Value 'Location
wdDoc.Tables(2).Cell(1, 2).Range.Text = TextBox2.Value 'Day
wdDoc.Tables(2).Cell(1, 4).Range.Text = TextBox3.Value 'Date
wdDoc.Tables(2).Cell(1, 6).Range.Text = TextBox4.Value 'Time
wdDoc.Tables(3).Cell(1, 2).Range.Text = TextBox5.Value 'Collision Ref No. (left)
wdDoc.Tables(3).Cell(1, 4).Range.Text = TextBox6.Value 'Collision Ref No. (right)
wdDoc.Close SaveChanges:=True 'Close file and Save changes
ExitPoint:
If bWeStartedWord Then wdApp.Quit
Set wdDoc = Nothing
Set wdApp = Nothing
Unload Me
End Sub
Hope that helps.
Cheers
Rich