Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I was wondering if there was amethod of capturing the SaveAs and disabling it
before the user tries to use it? I have this code for the Save but it still allows the user to use SaveAs. Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If Application.UserName < "rcj" Then Cancel = True MsgBox "Sorry, But You Don't Have Permission To Save This File", vbExclamation, "Invalid Permission" End If 'MsgBox Application.UserName End Sub Thanks In Advance, Rob |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This should stop any File|Save or File|SaveAs.
Maybe you turned off events (application.enableevents = false) and forgot to reenable it??? Or maybe the workbook was opened and macros were disabled??? Rob wrote: I was wondering if there was amethod of capturing the SaveAs and disabling it before the user tries to use it? I have this code for the Save but it still allows the user to use SaveAs. Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If Application.UserName < "rcj" Then Cancel = True MsgBox "Sorry, But You Don't Have Permission To Save This File", vbExclamation, "Invalid Permission" End If 'MsgBox Application.UserName End Sub Thanks In Advance, Rob -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sweet It Works. Thanks.
"Dave Peterson" wrote: This should stop any File|Save or File|SaveAs. Maybe you turned off events (application.enableevents = false) and forgot to reenable it??? Or maybe the workbook was opened and macros were disabled??? Rob wrote: I was wondering if there was amethod of capturing the SaveAs and disabling it before the user tries to use it? I have this code for the Save but it still allows the user to use SaveAs. Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) If Application.UserName < "rcj" Then Cancel = True MsgBox "Sorry, But You Don't Have Permission To Save This File", vbExclamation, "Invalid Permission" End If 'MsgBox Application.UserName End Sub Thanks In Advance, Rob -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Saveas VBA question | Excel Discussion (Misc queries) | |||
Another SaveAs Question | Excel Programming | |||
worksheet saveas question | Excel Programming | |||
SaveAs Question | Excel Programming | |||
Question Using SaveAs Method | Excel Programming |