How to make it so that after I entered the changes in the Excel file, the program did not ask "to save the changes or not." I need the changes not to be saved

  • What does have a delphi Do you open an Excel document through Delphi using OLE? - ReinRaus
  • You can even turn off the following messages: ExcelOLE.Application.DisplayAlerts = False - ReinRaus

1 answer 1

exelapp.workbooks[1].Close(SaveChanges:=False);