Hi Group
Is it possible to close a workbook if the user does not enable macros. If
so, how would this be achieved? Any help would be very much appreciated as
it is important that my user cannot bypass enableing macros.
Many thanks
Graham
Hi Group
Is it possible to close a workbook if the user does not enable macros. If
so, how would this be achieved? Any help would be very much appreciated as
it is important that my user cannot bypass enableing macros.
Many thanks
Graham
It's not possible, since macros would have to be enabled to automate
closure.
What is often suggested is to have all sheets hidden except a "splash"
sheet, saying "you must enable macros to use this workbook." You could
then use a Workbook_Open() event to unhide the working sheets and hide
the splash sheet. Use a Workbook_BeforeSave macro to unhide the splash
sheet, hide the working sheets, save the file, then reverse the process
again. You can set the visibility of the working sheets to xlVeryHidden
to prevent them from being listed in the Format/Sheet/Unhide dialog.
Note that this will only be a convenience to your users, not provide any
real security. Anyone with enough ability to find these newsgroups will
be able to find ways to bypass your protection scheme.
In article <dh1pde$plg$1@nwrdmz01.dmz.ncs.ea.ibs-infra.bt.com>,
"Graham Fowler" <janandgraham@btinternet.com> wrote:
> Is it possible to close a workbook if the user does not enable macros. If
> so, how would this be achieved? Any help would be very much appreciated as
> it is important that my user cannot bypass enableing macros.
protect the Splash Sheet which tells the user that macros must be enabled &
Set other Sheets to xlSheetVeryHidden
then try this macro...
Private Sub Workbook_Open()
' this activates if macro's Enabled..!
' otherwise only splash screen Visible
For Each sh In Sheets
sh.Visible = True
Next sh
Sheets("Sheet1").Visible = xlVeryHidden ' Hide Splash Sheet if macro's
Enabled
End Sub
HTH
Andrew
"Graham Fowler" <janandgraham@btinternet.com> wrote in message
news:dh1pde$plg$1@nwrdmz01.dmz.ncs.ea.ibs-infra.bt.com...
| Hi Group
| Is it possible to close a workbook if the user does not enable macros. If
| so, how would this be achieved? Any help would be very much appreciated as
| it is important that my user cannot bypass enableing macros.
| Many thanks
| Graham
|
|
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks