This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading; | |
| using ExcelDna.Integration; | |
| using ExcelDna.Logging; | |
| namespace AsyncCaller |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Diagnostics; | |
| using static System.Math; | |
| // Some helpers for converting GPS readings from the WGS84 geodetic system to a local North-East-Up cartesian axis. | |
| // The implementation here is according to the paper: | |
| // "Conversion of Geodetic coordinates to the Local Tangent Plane" Version 2.01. | |
| // "The basic reference for this paper is J.Farrell & M.Barth 'The Global Positioning System & Inertial Navigation'" | |
| // Also helpful is Wikipedia: http://en.wikipedia.org/wiki/Geodetic_datum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using System.Timers; | |
| using Timer = System.Timers.Timer; | |
| using ExcelDna.Integration; | |
| namespace ExcelDnaSamples | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <DnaLibrary Name="Excel JSON Client" RuntimeVersion="v4.0" > | |
| <Project Language="VB" > | |
| <Reference Path="Newtonsoft.Json.dll" /> | |
| <SourceItem Path="excel-json-client.vb" /> | |
| </Project> | |
| </DnaLibrary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <DnaLibrary Name="RangeConvert using C API" Language="C#" RuntimeVersion="v4.0"> | |
| <Reference Name="System.Windows.Forms" /> | |
| <![CDATA[ | |
| using System; | |
| using System.Windows.Forms; | |
| using ExcelDna.Integration; | |
| public static class TestRangeMacros | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <DnaLibrary Name="RangeConvert" Language="C#" RuntimeVersion="v4.0"> | |
| <Reference Name="System.Windows.Forms" /> | |
| <![CDATA[ | |
| using System; | |
| using System.Windows.Forms; | |
| using ExcelDna.Integration; | |
| public static class TestRangeMacros | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <DnaLibrary Name="ExcelDna Test Dynamic Method" Language="C#"> | |
| <Reference Name="System.Windows.Forms" /> | |
| <![CDATA[ | |
| using System; | |
| using System.CodeDom.Compiler; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Reflection; | |
| using System.Windows.Forms; | |
| using Microsoft.CSharp; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <DnaLibrary Name="AddInHost" Language="C#" RuntimeVersion="v4.0"> | |
| <Reference Name="System.Windows.Forms" /> | |
| <![CDATA[ | |
| using System; | |
| using System.Windows.Forms; | |
| using ExcelDna.Integration; | |
| public class MyMacros | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <DnaLibrary RuntimeVersion="v4.0" Language="C#"> | |
| <Reference Name="System.Windows.Forms" /> | |
| <![CDATA[ | |
| using System; | |
| using System.Reflection; | |
| using SWF = System.Windows.Forms; | |
| using ExcelDna.Integration; | |
| using ExcelDna.Integration.CustomUI; | |
| using ExcelDna.Integration.Extensibility; |
NewerOlder