View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Edwin Tam[_7_] Edwin Tam[_7_] is offline
external usenet poster
 
Posts: 94
Default No toolbars or menus?

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

http://www.vonixx.com



"stealthnet" wrote:


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


Robert


--
stealthnet
------------------------------------------------------------------------
stealthnet's Profile: http://www.excelforum.com/member.php...o&userid=31746
View this thread: http://www.excelforum.com/showthread...hreadid=514611