Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
avi avi is offline
external usenet poster
 
Posts: 195
Default Stubborn toolbar

Hello,

Excel 2010 loads automatically 2 pld toolbars in the add-in tab
whatever I do

I've looked everywhere in all possible directories (xlstatrt, addins
in office, c:/users....) but did not find any trace of the toolbars

Is there anything I can do to remove the toolbars? What could trigger
Excel to load them even if no workbook is opened and they do not
appear in the projects vba?

Thanks

Avi
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,514
Default Stubborn toolbar

After serious thinking avi wrote :
Hello,

Excel 2010 loads automatically 2 pld toolbars in the add-in tab
whatever I do

I've looked everywhere in all possible directories (xlstatrt, addins
in office, c:/users....) but did not find any trace of the toolbars

Is there anything I can do to remove the toolbars? What could trigger
Excel to load them even if no workbook is opened and they do not
appear in the projects vba?

Thanks

Avi


One possibility is that the projects using the toolbars did not remove
them at shutdown.

Another possibility is that they're custom toolbars 'attached' to
workbooks and also they were not removed when the attached workbook
closed.

Another possibility is that Excel crashed while the toolbars were in
use, and so have been added to the tlb file.

Try deleting the toolbars, close Excel, reopen Excel and see if they
persist. (This may require looping the CommandBars collection to
generate a list of their names)

It's also possible they belong to ComAddins and so will not appear in
the VBE.

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


  #3   Report Post  
Posted to microsoft.public.excel.programming
avi avi is offline
external usenet poster
 
Posts: 195
Default Stubborn toolbar

On 24 juil, 19:10, GS wrote:
After serious thinking avi wrote :

Hello,


Excel 2010 loads automatically 2 pld toolbars in the add-in tab
whatever I do


I've looked everywhere in all possible directories (xlstatrt, addins
in office, c:/users....) but did not find any trace of the toolbars


Is there anything I can do to remove the toolbars? What could trigger
Excel to load them even if no workbook is opened and they do not
appear in the projects vba?


Thanks


Avi


One possibility is that the projects using the toolbars did not remove
them at shutdown.

Another possibility is that they're custom toolbars 'attached' to
workbooks and also they were not removed when the attached workbook
closed.

Another possibility is that Excel crashed while the toolbars were in
use, and so have been added to the tlb file.

Try deleting the toolbars, close Excel, reopen Excel and see if they
persist. (This may require looping the CommandBars collection to
generate a list of their names)

It's also possible they belong to ComAddins and so will not appear in
the VBE.

--
Garry

Free usenet access athttp://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


Many thanks

"One possibility is that the projects using the toolbars did not
remove
them at shutdown" was indeed the problem

Avi

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,514
Default Stubborn toolbar

avi laid this down on his screen :
On 24 juil, 19:10, GS wrote:
After serious thinking avi wrote :

Hello,


Excel 2010 loads automatically 2 pld toolbars in the add-in tab
whatever I do


I've looked everywhere in all possible directories (xlstatrt, addins
in office, c:/users....) but did not find any trace of the toolbars
Is there anything I can do to remove the toolbars? What could trigger
Excel to load them even if no workbook is opened and they do not
appear in the projects vba?


Thanks


Avi


One possibility is that the projects using the toolbars did not remove
them at shutdown.

Another possibility is that they're custom toolbars 'attached' to
workbooks and also they were not removed when the attached workbook
closed.

Another possibility is that Excel crashed while the toolbars were in
use, and so have been added to the tlb file.

Try deleting the toolbars, close Excel, reopen Excel and see if they
persist. (This may require looping the CommandBars collection to
generate a list of their names)

It's also possible they belong to ComAddins and so will not appear in
the VBE.

--
Garry

Free usenet access athttp://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


Many thanks

"One possibility is that the projects using the toolbars did not
remove
them at shutdown" was indeed the problem

Avi


You're welcome! Glad to help...

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 259
Default Stubborn toolbar

Avi

This may be triggered via a registry key, I don't know which one exactly,
but it may be worth exploring that as a possible culprit.

HTH
Mick




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 31
Default Stubborn toolbar

On Jul 24, 8:15*am, avi wrote:
Hello,

Excel 2010 loads automatically 2 pld toolbars in the add-in tab
whatever I do

I've looked everywhere in all possible directories (xlstatrt, addins
in office, c:/users....) but did not find any trace of the toolbars

Is there anything I can do to remove the toolbars? What could trigger
Excel to load them even if no workbook is opened and they do not
appear in the projects vba?

Thanks

Avi


Several solutions: right click on the toolbars and select the delete
option. If they re-appear when you re-open Excel, then do File (Office
button in 2007), Options, Add-ins. On the right click Go beside
"Manage Excel Add-ins". Uncheck add-ins that are checked. Repeat but
change the dropdown to "Manage COM add-ins". If you need one of the
checked add-ins, obviously keep it.

If that doesn't sole, use the XLB File Deleter at
http://www.add-ins.com/xlb_file_deleter.htm and see if deleting the
toolbar file solves.

Robert Flanagan
Add-ins.com LLC
http://www.add-ins.com
Productivity add-ins and downloadable books on VB macros for Excel
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35
Default Stubborn toolbar

Maybe this is irrelevant but I do remember having once stubborn
toolbars appear unwantedly.
So I had to run below code before activating the worksheet. Rgds.

Sub delbar()
Application.CommandBars("Standard").Visible = True
Application.CommandBars("Standard").Visible = False
End Sub
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Stubborn cell formatting. m_joy Excel Worksheet Functions 1 September 27th 09 06:23 PM
Stubborn Excel Options VBA_Newbie79[_2_] Excel Programming 11 November 16th 07 12:44 AM
Stubborn Date Format OrientalPearl Excel Programming 12 April 4th 06 05:42 AM
Stubborn toolbars in Excel 007 Excel Discussion (Misc queries) 9 December 11th 04 02:02 PM
stubborn macro josie Excel Programming 2 September 28th 04 02:07 PM


All times are GMT +1. The time now is 07:00 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"