“Excel VBA fechar sem salvar” Respostas de código

Excel VBA fechar sem salvar

ActiveWorkbook.Close savechanges:=False
VasteMonde

Excel VBA Prevent Saving Work Book

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Cancel = True                       ' Cancels in any case
    ' Or :
    If SaveAsUI Then Cancel = True      ' Cancels only if saving is asked by user, not via code
End Sub

' Prevents Excel from requesting a save before closing
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Application.ThisWorkbook.Saved = True
End Sub
VasteMonde

Respostas semelhantes a “Excel VBA fechar sem salvar”

Perguntas semelhantes a “Excel VBA fechar sem salvar”

Mais respostas relacionadas para “Excel VBA fechar sem salvar” em VBA

Procure respostas de código populares por idioma

Procurar outros idiomas de código