I have the follwoing macro, which closes the current workbook.

How would I need to adapt this if I wanted it to close the application instead of the workbook?

Sub CloseForceSave()
     'Save the workbook, then close it
    ThisWorkbook.Close savechanges:=True
End Sub