View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
John John is offline
external usenet poster
 
Posts: 2,069
Default macro to exit design mode

keep the procedure in standard module and call it from open event

Private Sub Workbook_Open()
Call ExitDesignMode
End Sub
--
jb


"cm" wrote:

one more thing - need this to run on workbook_open -- get an error of 'with
block variable not set' -- what do I need to edit?



cm


"john" wrote:

see if this helps:

Sub ExitDesignMode()

With CommandBars("Exit Design Mode").Controls(1)
If .State = msoButtonDown Then .Execute
End With

End Sub
--
jb


"cm" wrote:

I am creating protected worksheets for users. When some users open them,
their Excel is already in Design Mode.

I need code to 'exit' design mode automatically. Can anyone advise please?

--

cm