diff options
Diffstat (limited to 'Source/AddIn/AddIn.cs')
-rw-r--r-- | Source/AddIn/AddIn.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/AddIn/AddIn.cs b/Source/AddIn/AddIn.cs index e29c070..5cae777 100644 --- a/Source/AddIn/AddIn.cs +++ b/Source/AddIn/AddIn.cs @@ -1,4 +1,5 @@ using ExcelDna.Integration; +using ExcelDna.IntelliSense; using ExcelDna.Registration; using Microsoft.Win32; using System.Net.Http; @@ -24,11 +25,12 @@ namespace RehauSku { RegisterFunctions(); GetRegistryKeys(); + IntelliSenseServer.Install(); } public void AutoClose() { - + IntelliSenseServer.Uninstall(); } void RegisterFunctions() |