@@ -6,7 +6,7 @@ open Microsoft.Office.Interop.Excel
66open ExcelDna.Integration
77open ExcelDna.Integration .CustomUI
88
9- // This defines a regular Excel macro (in Excel you can press F8, type in the name "showMessage", then click the Run button).
9+ // This defines a regular Excel macro (in Excel you can press Alt + F8, type in the name "showMessage", then click the Run button).
1010// For the ribbon, it will be run through the ExcelRibbon.RunTagMacro(...) helper, which run whatever macro is specified in the button tag attribute
1111// One advantage is that you can
1212[<ExcelCommand>]
@@ -21,7 +21,7 @@ type public MyRibbon() =
2121 inherit ExcelRibbon()
2222
2323 // The ribbon xml definition could also be placed in the .dna file
24- // Remeber to switch on the ExcelOption "Show add-in user interface errors" option (under the Advanced tab under General)
24+ // Remember to switch on the ExcelOption "Show add-in user interface errors" option (under the Advanced tab under General)
2525 override this.GetCustomUI ( ribbonId ) =
2626 @" <customUI xmlns='http://schemas.microsoft.com/office/2006/01/customui' >
2727 <ribbon>
@@ -47,4 +47,4 @@ type public MyRibbon() =
4747 cellA1.Value2 <- app.Version
4848 // could also replace the last line with
4949 // cellA1.Value(XlRangeValueDataType.xlRangeValueDefault) <- app.Version
50- // but Range.Value is an indexer property, so it's a bit inconvenient
50+ // but Range.Value is an indexer property, so it's a bit inconvenient
0 commit comments