|
|
Subject:
Customizing Excel Toolbars
Category: Computers > Programming Asked by: ny_insomniac-ga List Price: $20.00 |
Posted:
05 Feb 2004 10:57 PST
Expires: 06 Mar 2004 10:57 PST Question ID: 303813 |
I wrote an Excel (2000) application that customizes the excel toolbar, hides the formula bar, changes some settings, etc. The problem is that after using my application, and they want to use normal Excel, Excel remembers my settings and the standard toolbars and formula bars are hidden. Is there a way to change the Excel settings without having them saved as a default? Or a different solution to my problem that will allow users to use my app and Excel without having to reconfigure all the time? |
|
Subject:
Re: Customizing Excel Toolbars
Answered By: hammer-ga on 05 Feb 2004 11:23 PST |
When you exit your application, you can run a routine that resets all the Toolbars to their uncustomized state. The information below is from an Excel FAQ and provides VBA to do this. Excel 97/2000 Developer FAQ http://www.j-walk.com/ss/excel/faqs/xl97faq8.htm --------------------------------- I've made lots of changes to Excel's toolbars. How can I restore all of these toolbars to their original state? You can use the Customize dialog box and reset each one manually. Or, run the subroutine listed below. Sub ResetAllToolbars() For Each tb In CommandBars If tb.Type = msoBarTypeNormal Then If tb.BuiltIn Then tb.Reset End If Next tb End Sub ----------------------------------------- Search terms: excel toolbar restore custom Good luck with your Excel project! - Hammer | |
| |
|
|
There are no comments at this time. |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |