The nearest Word equivalent of that would be:
Code:
Private Sub Document_Open()
If Date > DateSerial(2014, 7, 10) Then
With ThisDocument
.Saved = True
Kill .FullName
Application.Quit
End With
End If
End Sub
As I've already said, though, you can't delete an open document.