This Add-In gives the user a custom favorites ribbon. Key distinctive attributes include dedicated buttons for changing the visibility/sort order of sheets, copying visible cells, Excel's camera feature, Snipping Tool, Problem Steps Recorder (PSR) and Windows Calculator. It is written in 3 different versions as a VSTO Add-In in C# and VB.NET as well as a VBA Add-In. The most complete version is C#.
🆕 I'm currently working on the Web Add-In in JavaScript.
Instructions for installation of VBA and VSTO versions.
How to install the VBA version
- Download the VBA Add-In file .
- Copy the file to the XLSTART folder on your computer.
%AppData%\Microsoft\Excel\XLSTART\
- Close all open instances of Excel and then launch Excel. The new ribbon should appear.
How to install the VSTO version
Software | Dependency | Project |
---|---|---|
Microsoft Visual Studio | Solution | VSTO |
Microsoft Office Developer Tools | Solution | VSTO |
Microsoft Excel | Project | VBA, VSTO |
Visual Basic for Applications | Code | VBA |
Extensible Markup Language (XML) | Ribbon | VBA, VSTO |
Snagit | Read Me | VBA, VSTO |
Badges (Library, Custom, Star/Fork) | Read Me | VBA, VSTO |
Term | Meaning |
---|---|
COM | Component Object Model (COM) is a binary-interface standard for software components introduced by Microsoft in 1993. It is used to enable inter-process communication and dynamic object creation in a large range of programming languages. COM is the basis for several other Microsoft technologies and frameworks, including OLE, OLE Automation, ActiveX, COM+, DCOM, the Windows shell, DirectX, UMDF and Windows Runtime. |
VBA | Visual Basic for Applications (VBA) is an implementation of Microsoft's event-driven programming language Visual Basic 6 and uses the Visual Basic Runtime Library. However, VBA code normally can only run within a host application, rather than as a standalone program. VBA can, however, control one application from another using OLE Automation. VBA can use, but not create, ActiveX/COM DLLs, and later versions add support for class modules. |
VSTO | Visual Studio Tools for Office (VSTO) is a set of development tools available in the form of a Visual Studio add-in (project templates) and a runtime that allows Microsoft Office 2003 and later versions of Office applications to host the .NET Framework Common Language Runtime (CLR) to expose their functionality via .NET. |
XML | Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable.The design goals of XML emphasize simplicity, generality, and usability across the Internet. It is a textual data format with strong support via Unicode for different human languages. Although the design of XML focuses on documents, the language is widely used for the representation of arbitrary data structures such as those used in web services. |
This Excel ribbon named “Favorites” is inserted after the “Home” tab when Excel opens.
- Save (Ctrl + S)
- Save As (F12)
- Undo (Ctrl + Z)
- Copy (Ctrl + C)
- Cut (Ctrl + X)
- Paste (Ctrl + V)
- Spelling (F7)
- Show the Sheet tab of the page setup dialog box
- Preview (Ctrl + F2)
- Print (Ctrl + P)
- New file
- Open (Ctrl + O)
- Close file
- Open the properties of the file
- Open the options dialog box
- Exit the application
- The Windows Calculator runs in standard mode, which resembles a four-function calculator. More advanced functions are available in scientific mode, including logarithms, numerical base conversions, some logical operators, operator precedence, radian, degree and gradians support as well as simple single-variable statistical functions
- Force the Calculation. Even if the Calculation option is set for Manual, you can force a calculation.
- The camera tool allows you to take a snapshot of any selected range of data, table, or graph, and paste it as a linked picture. The pasted snapshot can be formatted and resized using picture tools. They can be copied and pasted into Word and PowerPoint documents as well. The image is automatically refreshed if the data changes.
- Capture all or part of your PC screen, add notes, save the snip, or email it from the Snipping Tool window. You can capture any of the following types of snips:
- Free-form snip. Draw a free-form shape around an object.
- Rectangular snip. Drag the cursor around an object to form a rectangle.
- Window snip. Select a window, such as a browser window or dialog box, that you want to capture.
- Full-screen snip. Capture the entire screen.
- Steps Recorder (called Problems Steps Recorder in Windows 7), is a program that helps you troubleshoot a problem on your device by recording the exact steps you took when the problem occurred. You can then send this record to a support professional to help them diagnose the problem.
- Types of VSTO Settings
- Application Settings
- These settings can only be changed in the project and need to be redeployed
- They will appear disabled in the form
- User Settings
- These settings can be changed by the end-user
- They will appear enabled in the form
- Application Settings
- VBA Settings
- To add a new setting
ThisWorkbook.CustomDocumentProperties.Add _ Name:="App_ReleaseDate" _ , LinkToContent:=False _ , Type:=msoPropertyTypeDate _ , Value:="31-Jul-2017 1:05pm"
- To update a setting
ThisWorkbook.CustomDocumentProperties.Item("App_ReleaseDate").Value = "31-Jul-2017 1:05pm"
- To delete a setting
ThisWorkbook.CustomDocumentProperties.Item("App_ReleaseDate").Delete
- To add a new setting
- Opens the how to guide in a browser
- Opens the new issue page in a browser
- This button is visible if the version of the Add-In is different from the one in the Read Me page. It will download a new version from the site when pressed.
- The application name with the version
- The release date of the application
- The author’s name