+ Reply to Thread
Results 1 to 8 of 8

Force "Save As" in Prompt Before Close - X Button

Hybrid View

  1. #1
    Valued Forum Contributor tehneXus's Avatar
    Join Date
    04-12-2013
    Location
    Hamburg, Germany
    MS-Off Ver
    Work: MS-Office 2010 32bit @ Win8 32bit / Home: MS-Office 2016 32bit @ Win10 64bit
    Posts
    944

    Re: Force "Save As" in Prompt Before Close - X Button

    For the saveas issue try:
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
        Dim vSaveAs, sInfo1(1 To 2), sInfo2(1 To 2)
        On Error GoTo ErrHandler
        
        Application.EnableEvents = False
        Application.DisplayAlerts = False
        
        Select Case MsgBox("Want to save your change to '" & Me.Name & "' to a file?", vbYesNoCancel + vbExclamation, "Microsoft Excel")
            Case vbCancel
                Cancel = True
                GoTo ErrHandler
            Case vbNo
                Cancel = True
                ActiveWorkbook.Close False
            Case vbYes
                sInfo1(1) = Me.Name
                sInfo1(2) = Me.Path
                vSaveAs = Application.Dialogs(xlDialogSaveAs).Show(arg1:=Me.Name)
                Select Case vSaveAs
                    Case False
                        Cancel = True
                    Case Else
                        sInfo2(1) = ActiveWorkbook.Name
                        sInfo2(2) = ActiveWorkbook.Path
                        ActiveWorkbook.SaveAs Filename:=vSaveAs
                        ActiveWorkbook.Close False
                End Select
        End Select
        Err.Clear
    ErrHandler:
        With Err
            If .Number <> 0 Then
                MsgBox "Nr.: " & .Number & vbLf & .Description
            End If
        End With
        Application.DisplayAlerts = True
        Application.EnableEvents = True
    End Sub
    For the other one: I don't see a possibility to tell the excel application to check the file location of a file you double clicked to open and set readOnly appropriately in VBA. Maybe somebody else has an idea?
    Please use [CODE]-TAGS
    When your problem is solved mark the thread SOLVED
    If an answer has helped you please click to give reputation
    Read the FORUM RULES

  2. #2
    Registered User
    Join Date
    05-30-2013
    Location
    São Paulo, Brazil
    MS-Off Ver
    Excel 2010
    Posts
    12

    Re: Force "Save As" in Prompt Before Close - X Button

    Really thank you tehneXus. That was exactly what I needed.

    But i found a issue. I created a XLAM addin, and added to THIS WORKBOOK (not to a module). When I close the spreadsheet (saving or not, the application remains opened (the XLAM addin - Want to save your change to Book1.XLAM to a File).
    Then a I try to close it and the the save prompt is shown again.

    If I choose YES, I get a error: Nr.:91 Object variable or With block variable not set.

    If a choose NO, I got: N.:1004. Unable to get the Show property of the Dialog class.

    I replaced ActiveWorkbook to ThisWorkbook, and the error was gone, but if I choose NO in the SAVE AS prompt, i get the SAVE prompt again (and then, can overwrite the file).

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1