Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.application.errors,microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Toolbars spontaneously appearing

Which toolbars? My guess is the Control Toolbox and the associated Design
Mode toolbar? See
http://word.tips.net/Pages/T001596_S...Toolbar.ht ml

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Me" wrote in message
...
Hi all,

I'm using MS Office 2003 on an XP OS. Whenever I start Word by double
clicking the shortcut to a document that I have previously
saved to the HDD, I find that two unwanted toolbars appear in the middle
of the open window. Toolbars that I have never used.
Nothing I do seems to stop them from appearing each and every time I open
this document. What's up with that? Hope someone can
give me some good advice that will eliminate them permanently.

All assistance is greatly appreciated,

Cheers
Buck



  #2   Report Post  
Posted to microsoft.public.word.application.errors,microsoft.public.word.newusers
Me[_2_] Me[_2_] is offline
external usenet poster
 
Posts: 2
Default Toolbars spontaneously appearing

Hi all,

I'm using MS Office 2003 on an XP OS. Whenever I start Word by double clicking the shortcut to a document that I have previously
saved to the HDD, I find that two unwanted toolbars appear in the middle of the open window. Toolbars that I have never used.
Nothing I do seems to stop them from appearing each and every time I open this document. What's up with that? Hope someone can
give me some good advice that will eliminate them permanently.

All assistance is greatly appreciated,

Cheers
Buck


  #3   Report Post  
Posted to microsoft.public.word.application.errors,microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Toolbars spontaneously appearing

Tools Options Security Macro Security Security Level - Medium
Tools Options Security Macro Security Trusted Publishers Check
both 'Trust all installed add-ins and templates' and 'Trust access to Visual
Basic Project'.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Me" wrote in message
...
Hi Graham, thanks for your help.

I tried to run the Macro that you specify on the website, but I get this
error message:


Run-time error '6068':

Programmatic assess to Visual Basic Project is not trusted.



Then when I click Debug it shows the following:


Sub MFC_sort()
'
' MFC_sort Macro
' Macro recorded 12/31/2009 by Mike the Kiwi
'
Sub CloseDesignWindows()
Dim K As Long
With ActiveDocument.VBProject == WITH THIS LINE
HIGHLIGHTED IN YELLOW
For K = 1 To .VBComponents.Count
With .VBComponents(K)
If .HasOpenDesigner Then .DesignerWindow.Close
End With
Next
End With
End Sub
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 1/3/2010 by Mike the Kiwi
'
End Sub






"Graham Mayor" wrote in message
...
Which toolbars? My guess is the Control Toolbox and the associated Design
Mode toolbar? See
http://word.tips.net/Pages/T001596_S...Toolbar.ht ml

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Me" wrote in message
...
Hi all,

I'm using MS Office 2003 on an XP OS. Whenever I start Word by double
clicking the shortcut to a document that I have previously
saved to the HDD, I find that two unwanted toolbars appear in the middle
of the open window. Toolbars that I have never used.
Nothing I do seems to stop them from appearing each and every time I
open this document. What's up with that? Hope someone can
give me some good advice that will eliminate them permanently.

All assistance is greatly appreciated,

Cheers
Buck







  #4   Report Post  
Posted to microsoft.public.word.application.errors,microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Toolbars spontaneously appearing

I posted a tad hastily. You have also enclosed a macro within a macro.
Change what you posted, to what is on the web site i.e.

Sub CloseDesignWindows()
Dim K As Long
With ActiveDocument.VBProject
For K = 1 To .VBComponents.Count
With .VBComponents(K)
If .HasOpenDesigner Then .DesignerWindow.Close
End With
Next
End With
End Sub

http://www.gmayor.com/installing_macro.htm


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Me" wrote in message
...
Hi Graham, thanks for your help.

I tried to run the Macro that you specify on the website, but I get this
error message:


Run-time error '6068':

Programmatic assess to Visual Basic Project is not trusted.



Then when I click Debug it shows the following:


Sub MFC_sort()
'
' MFC_sort Macro
' Macro recorded 12/31/2009 by Mike the Kiwi
'
Sub CloseDesignWindows()
Dim K As Long
With ActiveDocument.VBProject == WITH THIS LINE
HIGHLIGHTED IN YELLOW
For K = 1 To .VBComponents.Count
With .VBComponents(K)
If .HasOpenDesigner Then .DesignerWindow.Close
End With
Next
End With
End Sub
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 1/3/2010 by Mike the Kiwi
'
End Sub






"Graham Mayor" wrote in message
...
Which toolbars? My guess is the Control Toolbox and the associated Design
Mode toolbar? See
http://word.tips.net/Pages/T001596_S...Toolbar.ht ml

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Me" wrote in message
...
Hi all,

I'm using MS Office 2003 on an XP OS. Whenever I start Word by double
clicking the shortcut to a document that I have previously
saved to the HDD, I find that two unwanted toolbars appear in the middle
of the open window. Toolbars that I have never used.
Nothing I do seems to stop them from appearing each and every time I
open this document. What's up with that? Hope someone can
give me some good advice that will eliminate them permanently.

All assistance is greatly appreciated,

Cheers
Buck







  #5   Report Post  
Posted to microsoft.public.word.application.errors,microsoft.public.word.newusers
Terry Farrell Terry Farrell is offline
external usenet poster
 
Posts: 2,904
Default Toolbars spontaneously appearing

Your computer calendar seems to be up the creek so that you are posting a
day in advance - even NZ hasn't started 4 January at this time.

--
Terry Farrell - MSWord MVP

"Me" wrote in message
...
Hi Graham, thanks for your help.

I tried to run the Macro that you specify on the website, but I get this
error message:


Run-time error '6068':

Programmatic assess to Visual Basic Project is not trusted.



Then when I click Debug it shows the following:


Sub MFC_sort()
'
' MFC_sort Macro
' Macro recorded 12/31/2009 by Mike the Kiwi
'
Sub CloseDesignWindows()
Dim K As Long
With ActiveDocument.VBProject == WITH THIS LINE
HIGHLIGHTED IN YELLOW
For K = 1 To .VBComponents.Count
With .VBComponents(K)
If .HasOpenDesigner Then .DesignerWindow.Close
End With
Next
End With
End Sub
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 1/3/2010 by Mike the Kiwi
'
End Sub






"Graham Mayor" wrote in message
...
Which toolbars? My guess is the Control Toolbox and the associated Design
Mode toolbar? See
http://word.tips.net/Pages/T001596_S...Toolbar.ht ml

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Me" wrote in message
...
Hi all,

I'm using MS Office 2003 on an XP OS. Whenever I start Word by double
clicking the shortcut to a document that I have previously
saved to the HDD, I find that two unwanted toolbars appear in the middle
of the open window. Toolbars that I have never used.
Nothing I do seems to stop them from appearing each and every time I
open this document. What's up with that? Hope someone can
give me some good advice that will eliminate them permanently.

All assistance is greatly appreciated,

Cheers
Buck







  #6   Report Post  
Posted to microsoft.public.word.application.errors,microsoft.public.word.newusers
Me[_2_] Me[_2_] is offline
external usenet poster
 
Posts: 2
Default Toolbars spontaneously appearing

Hi Graham, thanks for your help.

I tried to run the Macro that you specify on the website, but I get this error message:


Run-time error '6068':

Programmatic assess to Visual Basic Project is not trusted.



Then when I click Debug it shows the following:


Sub MFC_sort()
'
' MFC_sort Macro
' Macro recorded 12/31/2009 by Mike the Kiwi
'
Sub CloseDesignWindows()
Dim K As Long
With ActiveDocument.VBProject == WITH THIS LINE HIGHLIGHTED IN YELLOW
For K = 1 To .VBComponents.Count
With .VBComponents(K)
If .HasOpenDesigner Then .DesignerWindow.Close
End With
Next
End With
End Sub
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 1/3/2010 by Mike the Kiwi
'
End Sub






"Graham Mayor" wrote in message ...
Which toolbars? My guess is the Control Toolbox and the associated Design Mode toolbar? See
http://word.tips.net/Pages/T001596_S...Toolbar.ht ml

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Me" wrote in message ...
Hi all,

I'm using MS Office 2003 on an XP OS. Whenever I start Word by double clicking the shortcut to a document that I have
previously
saved to the HDD, I find that two unwanted toolbars appear in the middle of the open window. Toolbars that I have never used.
Nothing I do seems to stop them from appearing each and every time I open this document. What's up with that? Hope someone can
give me some good advice that will eliminate them permanently.

All assistance is greatly appreciated,

Cheers
Buck





Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to keep toolbars from appearing and lock in place Phrank New Users 1 May 30th 07 04:26 PM
Get rid of the automatic appearing Adobe toolbars in MSWord PDub Microsoft Word Help 2 August 17th 06 05:37 AM
Formatting spontaneously disappears Jauchart Microsoft Word Help 1 June 7th 06 08:01 PM
How do I keep certain toolbars from appearing whenever I open Word David Liang Microsoft Word Help 2 December 28th 05 04:25 PM
2 toolbars appearing HT New Users 9 June 12th 05 09:50 AM


All times are GMT +1. The time now is 10:04 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"