No toolbars or menus?

  • Thread starter Thread starter stealthnet
  • Start date Start date
S

stealthnet

For the past week I have been using the BSG Online simulation -- it i
an online strategy game for business students. Since using thi
program, all of the menus and toolbars have disappeared (I'm guessin
because of macros?). I've tried opening different excel files to n
avail. Any suggestions? Thanks in advance.


Rober
 
The following simple macro will attempt to make the menus and toolbars
re-appear.

Sub Auto_Open()
With Application
.CommandBars(1).Visible = True
.CommandBars("Formatting").Visible = True
.CommandBars("Standard").Visible = True
.DisplayFormulaBar = True
.DisplayStatusBar = True
End With
End Sub

For your convenience, you can download the file from the URL below:
http://www.vonixx.com/menu/reset_menus.xls

After downloading the file, just open the file and the Auto_Open macro will
execute automatically.

Good luck.

Regards,
Edwin Tam
(e-mail address removed)
http://www.vonixx.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top