How to run any file from MS Access VBA

Use ..

Private Sub Form_Close()
Dim strFile As String

strFile = "target file .. like  c:\x.txt"
Shell strFile
End Sub

You may also like...