#1   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 65
Default format toolbar disappear

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD


  #2   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 35,218
Default format toolbar disappear

Did you mean you can NOT make it appear?

Maybe you could try this macro:

Option Explicit
Sub testme()
With Application.CommandBars("Formatting")
.Visible = True
.Enabled = True
End With
End Sub



SpeeD wrote:

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 65
Default format toolbar disappear

Hi Dave.

I rely can´t make it appear!!
Your code return´s me a Messege:

Automation error
Unspecified error

Im´completely in the dark with this one....
i´ve installed this morning an trial addin and it started this problem...

SpeeD


"Dave Peterson" wrote:

Did you mean you can NOT make it appear?

Maybe you could try this macro:

Option Explicit
Sub testme()
With Application.CommandBars("Formatting")
.Visible = True
.Enabled = True
End With
End Sub



SpeeD wrote:

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 35,218
Default format toolbar disappear

What version of excel are you using?

If it's xl2007, then there is no formatting toolbar.

If it's xl2003, I'm not sure why it doesn't work for you.

Maybe it's a language difference???

For me (xl2003 in USA English), my Formatting toolbar has an index of 4.

What do you see when you run this?

msgbox Application.CommandBars(4).name

If it looks like it would translate to Formatting, then you can use (4) or what
you see in that msgbox.

=======
If worse comes to worse, you can delete the file that holds the toolbar. Any
changes that you've made to customize the toolbar will have to be recreated,
though.

If you want to try:

Close excel
use windows search to look for *.xlb
Delete (or move) any that you find.

And remember to look through hidden folders, too. People can have trouble
finding them.

If you can't find your files using windows start button|Search, then you could
use an old DOS command to search and delete/move them

Windows Start button|Run
type:
CMD
(to get to the Command prompt)

C:
(to get to the C: drive--change this to the drive that excel is installed on)

cd\
(to get to the root directory)

dir *.xlb /s

The /s says to search subfolders, too.

Make a note of the locations of the found files.

Then delete/move them.

=======
Then try to restart excel to test.


SpeeD wrote:

Hi Dave.

I rely can´t make it appear!!
Your code return´s me a Messege:

Automation error
Unspecified error

Im´completely in the dark with this one....
i´ve installed this morning an trial addin and it started this problem...

SpeeD

"Dave Peterson" wrote:

Did you mean you can NOT make it appear?

Maybe you could try this macro:

Option Explicit
Sub testme()
With Application.CommandBars("Formatting")
.Visible = True
.Enabled = True
End With
End Sub



SpeeD wrote:

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 65
Default format toolbar disappear

Hi Dave.

Your right. iv´ve tried the Msgbox command and it return "Formatting", but
ivé tried´the following and i can´t make it appear anyway!

Application.CommandBars(4).Visible = True
Application.CommandBars("Formatting").Visible = True

What shloud i do? if i erase the xlb how can i find another that is ok?

Thanks SpeeD




"Dave Peterson" wrote:

What version of excel are you using?

If it's xl2007, then there is no formatting toolbar.

If it's xl2003, I'm not sure why it doesn't work for you.

Maybe it's a language difference???

For me (xl2003 in USA English), my Formatting toolbar has an index of 4.

What do you see when you run this?

msgbox Application.CommandBars(4).name

If it looks like it would translate to Formatting, then you can use (4) or what
you see in that msgbox.

=======
If worse comes to worse, you can delete the file that holds the toolbar. Any
changes that you've made to customize the toolbar will have to be recreated,
though.

If you want to try:

Close excel
use windows search to look for *.xlb
Delete (or move) any that you find.

And remember to look through hidden folders, too. People can have trouble
finding them.

If you can't find your files using windows start button|Search, then you could
use an old DOS command to search and delete/move them

Windows Start button|Run
type:
CMD
(to get to the Command prompt)

C:
(to get to the C: drive--change this to the drive that excel is installed on)

cd\
(to get to the root directory)

dir *.xlb /s

The /s says to search subfolders, too.

Make a note of the locations of the found files.

Then delete/move them.

=======
Then try to restart excel to test.


SpeeD wrote:

Hi Dave.

I rely can´t make it appear!!
Your code return´s me a Messege:

Automation error
Unspecified error

Im´completely in the dark with this one....
i´ve installed this morning an trial addin and it started this problem...

SpeeD

"Dave Peterson" wrote:

Did you mean you can NOT make it appear?

Maybe you could try this macro:

Option Explicit
Sub testme()
With Application.CommandBars("Formatting")
.Visible = True
.Enabled = True
End With
End Sub



SpeeD wrote:

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD

--

Dave Peterson


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 65
Default format toolbar disappear

Hi Dave....

well, i´ve moved the .xlb and everything is alright! thanks a lot!
.... long time since i´ve made something in DOS... Those where the days....
or not!!

Thanks Dave!

SpeeD

"Dave Peterson" wrote:

What version of excel are you using?

If it's xl2007, then there is no formatting toolbar.

If it's xl2003, I'm not sure why it doesn't work for you.

Maybe it's a language difference???

For me (xl2003 in USA English), my Formatting toolbar has an index of 4.

What do you see when you run this?

msgbox Application.CommandBars(4).name

If it looks like it would translate to Formatting, then you can use (4) or what
you see in that msgbox.

=======
If worse comes to worse, you can delete the file that holds the toolbar. Any
changes that you've made to customize the toolbar will have to be recreated,
though.

If you want to try:

Close excel
use windows search to look for *.xlb
Delete (or move) any that you find.

And remember to look through hidden folders, too. People can have trouble
finding them.

If you can't find your files using windows start button|Search, then you could
use an old DOS command to search and delete/move them

Windows Start button|Run
type:
CMD
(to get to the Command prompt)

C:
(to get to the C: drive--change this to the drive that excel is installed on)

cd\
(to get to the root directory)

dir *.xlb /s

The /s says to search subfolders, too.

Make a note of the locations of the found files.

Then delete/move them.

=======
Then try to restart excel to test.


SpeeD wrote:

Hi Dave.

I rely can´t make it appear!!
Your code return´s me a Messege:

Automation error
Unspecified error

Im´completely in the dark with this one....
i´ve installed this morning an trial addin and it started this problem...

SpeeD

"Dave Peterson" wrote:

Did you mean you can NOT make it appear?

Maybe you could try this macro:

Option Explicit
Sub testme()
With Application.CommandBars("Formatting")
.Visible = True
.Enabled = True
End With
End Sub



SpeeD wrote:

Hi

my format toolbar has disappeared. I can make it appear in the usual
manner... right-click-toolbars or view-tollbars.

How can i make it appear? VBA?

Thanks
SpeeD

--

Dave Peterson


--

Dave Peterson

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
Standard Toolbar buttons disappear. Jim W Setting up and Configuration of Excel 7 August 6th 08 06:08 PM
Activating wrap text format causes my text to disappear, why? Oli Excel Discussion (Misc queries) 2 March 5th 07 10:46 PM
how can I let the toolbar disappear Stefan Excel Discussion (Misc queries) 1 October 10th 06 04:04 AM
Why does the Data Analysis Toolbar Disappear Vinnie Excel Discussion (Misc queries) 1 October 7th 05 07:04 PM
"Format" Toolbar Bill Martin -- (Remove NOSPAM from address) Excel Discussion (Misc queries) 4 May 25th 05 03:19 PM


All times are GMT +1. The time now is 11:32 PM.

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

About Us

"It's about Microsoft Excel"