RP1America
Technical User
I have a command button on an Excel sheet that runs some code and then saves the workbook. I need for any other save options to be disabled.
In my code below, I think my issue may have to do with bSave and me not understanding how the boolean value works. Any advice?
I have this in a module, run by my on sheet command button:
And this in ThisWorkbook:
In my code below, I think my issue may have to do with bSave and me not understanding how the boolean value works. Any advice?
I have this in a module, run by my on sheet command button:
Code:
Public Sub SaveExit()
Dim bSave As Boolean
bSave = True
'code...
End Sub
And this in ThisWorkbook:
Code:
Option Explicit
Public WithEvents App As Excel.Application
Public Sub Workbook_Open()
Set App = Application
Application.CommandBars("File").Controls("Save As...").Enabled = False
Application.CommandBars("File").Controls("Save").Enabled = False
Options.SaveInterval = 0
End Sub
Public Sub Workbook_Close()
Set App = Nothing
ActiveWorkbook.Saved = True
Options.SaveInterval = 10
End Sub
Public Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Dim bSave As Boolean
If bSave = True Then
Exit Sub
Else
Cancel = True
MsgBox "You must use the Save & Exit command button on the Dashboard Worksheet"
End If
End Sub