Restoring toolbar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In attempting to learn vba macros I downloaded one that creates a custom
toolbar. it has changed / eliminated my top row toolbar (file, edit
view,tools, help ) I cant find an option to restore back to default
settings.
Thanks in advance
Duane
 
Go into the VBIDE, and in the immediate window enter

Application.Commandbars("Worksheet Menu Bar").Enabled = True

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
thanks

Bob Phillips said:
Go into the VBIDE, and in the immediate window enter

Application.Commandbars("Worksheet Menu Bar").Enabled = True

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)
 
Back
Top