disable the warnings

pikkas

New member
Joined
Sep 23, 2007
Messages
3
Programming Experience
Beginner
i m making an application which append data to an excel file. when the command workbook.close() is executed then excel application warn me if i want to save the data. how can i disable this warning dialog from excel?
 
workbook.close has a boolean optional parameter to tell it to savechanges, if you are appending, you probably want to save what you appended?

VB.NET:
 workbook.close(True)
 
Back
Top