ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   File-Save (https://www.excelbanter.com/excel-programming/307849-re-file-save.html)

Chip Pearson

File-Save
 
In the ThisWorkbook code module (not a regular code module) use
code like the following:

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel
As Boolean)
Dim PW As String
PW = InputBox("Enter a password")
If PW = "" Then
' no password entered, cancel save
Cancel = True
Else
' do something with PW
End If
End Sub



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com






"savehelp" wrote in message
...
When the user cliks on File Save, I want to interrupt and ask

for a password.
Can someone please help!!!





All times are GMT +1. The time now is 11:44 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com