I know this has been asked many times, but I am missing something. I can close my file, but would like to close the window application it created as well. I seem to be stuck, can anyone help me out?
Here is what I've come up with,
' close form
Unload Send_to_information
'close document/workbook
ActiveDocument.ActiveWindow.Close savechanges:=False
'
'close word App
Dim wordapp As Object
Set wordapp = CreateObject("Word.Application")
wordapp.Quit (wdDoNotSaveChanges)
Set wordapp = Nothing
End Sub
Thanks,
BsurfN99
Here is what I've come up with,
' close form
Unload Send_to_information
'close document/workbook
ActiveDocument.ActiveWindow.Close savechanges:=False
'
'close word App
Dim wordapp As Object
Set wordapp = CreateObject("Word.Application")
wordapp.Quit (wdDoNotSaveChanges)
Set wordapp = Nothing
End Sub
Thanks,
BsurfN99