├── .gitignore ├── LICENSE ├── Neo4jDriverExcelAddin.sln ├── Neo4jDriverExcelAddin ├── ExecuteCypherQueryArgs.cs ├── ExecuteQuery.Designer.cs ├── ExecuteQuery.cs ├── ExecuteQuery.resx ├── Neo4jDriverExcelAddin.csproj ├── Neo4jDriverExcelAddinRibbon.cs ├── Neo4jDriverExcelAddinRibbon.xml ├── Neo4jDriverExcelAddin_TemporaryKey.pfx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ThisAddIn.Designer.cs ├── ThisAddIn.Designer.xml ├── ThisAddIn.cs └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | artifacts/ 46 | 47 | *_i.c 48 | *_p.c 49 | *_i.h 50 | *.ilk 51 | *.meta 52 | *.obj 53 | *.pch 54 | *.pdb 55 | *.pgc 56 | *.pgd 57 | *.rsp 58 | *.sbr 59 | *.tlb 60 | *.tli 61 | *.tlh 62 | *.tmp 63 | *.tmp_proj 64 | *.log 65 | *.vspscc 66 | *.vssscc 67 | .builds 68 | *.pidb 69 | *.svclog 70 | *.scc 71 | 72 | # Chutzpah Test files 73 | _Chutzpah* 74 | 75 | # Visual C++ cache files 76 | ipch/ 77 | *.aps 78 | *.ncb 79 | *.opendb 80 | *.opensdf 81 | *.sdf 82 | *.cachefile 83 | *.VC.db 84 | *.VC.VC.opendb 85 | 86 | # Visual Studio profiler 87 | *.psess 88 | *.vsp 89 | *.vspx 90 | *.sap 91 | 92 | # TFS 2012 Local Workspace 93 | $tf/ 94 | 95 | # Guidance Automation Toolkit 96 | *.gpState 97 | 98 | # ReSharper is a .NET coding add-in 99 | _ReSharper*/ 100 | *.[Rr]e[Ss]harper 101 | *.DotSettings.user 102 | 103 | # JustCode is a .NET coding add-in 104 | .JustCode 105 | 106 | # TeamCity is a build add-in 107 | _TeamCity* 108 | 109 | # DotCover is a Code Coverage Tool 110 | *.dotCover 111 | 112 | # NCrunch 113 | _NCrunch_* 114 | .*crunch*.local.xml 115 | nCrunchTemp_* 116 | 117 | # MightyMoose 118 | *.mm.* 119 | AutoTest.Net/ 120 | 121 | # Web workbench (sass) 122 | .sass-cache/ 123 | 124 | # Installshield output folder 125 | [Ee]xpress/ 126 | 127 | # DocProject is a documentation generator add-in 128 | DocProject/buildhelp/ 129 | DocProject/Help/*.HxT 130 | DocProject/Help/*.HxC 131 | DocProject/Help/*.hhc 132 | DocProject/Help/*.hhk 133 | DocProject/Help/*.hhp 134 | DocProject/Help/Html2 135 | DocProject/Help/html 136 | 137 | # Click-Once directory 138 | publish/ 139 | 140 | # Publish Web Output 141 | *.[Pp]ublish.xml 142 | *.azurePubxml 143 | # TODO: Comment the next line if you want to checkin your web deploy settings 144 | # but database connection strings (with potential passwords) will be unencrypted 145 | *.pubxml 146 | *.publishproj 147 | 148 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 149 | # checkin your Azure Web App publish settings, but sensitive information contained 150 | # in these scripts will be unencrypted 151 | PublishScripts/ 152 | 153 | # NuGet Packages 154 | *.nupkg 155 | # The packages folder can be ignored because of Package Restore 156 | **/packages/* 157 | # except build/, which is used as an MSBuild target. 158 | !**/packages/build/ 159 | # Uncomment if necessary however generally it will be regenerated when needed 160 | #!**/packages/repositories.config 161 | # NuGet v3's project.json files produces more ignoreable files 162 | *.nuget.props 163 | *.nuget.targets 164 | 165 | # Microsoft Azure Build Output 166 | csx/ 167 | *.build.csdef 168 | 169 | # Microsoft Azure Emulator 170 | ecf/ 171 | rcf/ 172 | 173 | # Windows Store app package directories and files 174 | AppPackages/ 175 | BundleArtifacts/ 176 | Package.StoreAssociation.xml 177 | _pkginfo.txt 178 | 179 | # Visual Studio cache files 180 | # files ending in .cache can be ignored 181 | *.[Cc]ache 182 | # but keep track of directories ending in .cache 183 | !*.[Cc]ache/ 184 | 185 | # Others 186 | ClientBin/ 187 | ~$* 188 | *~ 189 | *.dbmdl 190 | *.dbproj.schemaview 191 | *.pfx 192 | *.publishsettings 193 | node_modules/ 194 | orleans.codegen.cs 195 | 196 | # Since there are multiple workflows, uncomment next line to ignore bower_components 197 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 198 | #bower_components/ 199 | 200 | # RIA/Silverlight projects 201 | Generated_Code/ 202 | 203 | # Backup & report files from converting an old project file 204 | # to a newer Visual Studio version. Backup files are not needed, 205 | # because we have git ;-) 206 | _UpgradeReport_Files/ 207 | Backup*/ 208 | UpgradeLog*.XML 209 | UpgradeLog*.htm 210 | 211 | # SQL Server files 212 | *.mdf 213 | *.ldf 214 | 215 | # Business Intelligence projects 216 | *.rdl.data 217 | *.bim.layout 218 | *.bim_*.settings 219 | 220 | # Microsoft Fakes 221 | FakesAssemblies/ 222 | 223 | # GhostDoc plugin setting file 224 | *.GhostDoc.xml 225 | 226 | # Node.js Tools for Visual Studio 227 | .ntvs_analysis.dat 228 | 229 | # Visual Studio 6 build log 230 | *.plg 231 | 232 | # Visual Studio 6 workspace options file 233 | *.opt 234 | 235 | # Visual Studio LightSwitch build output 236 | **/*.HTMLClient/GeneratedArtifacts 237 | **/*.DesktopClient/GeneratedArtifacts 238 | **/*.DesktopClient/ModelManifest.xml 239 | **/*.Server/GeneratedArtifacts 240 | **/*.Server/ModelManifest.xml 241 | _Pvt_Extensions 242 | 243 | # Paket dependency manager 244 | .paket/paket.exe 245 | paket-files/ 246 | 247 | # FAKE - F# Make 248 | .fake/ 249 | 250 | # JetBrains Rider 251 | .idea/ 252 | *.sln.iml 253 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Chris Skardon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Neo4jDriverExcelAddin", "Neo4jDriverExcelAddin\Neo4jDriverExcelAddin.csproj", "{D863562F-C7F1-41E7-94E9-0ED9846A0EAB}" 7 | EndProject 8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{99AE191A-1A0C-4531-AD05-48299A2E9EA3}" 9 | ProjectSection(SolutionItems) = preProject 10 | LICENSE = LICENSE 11 | README.md = README.md 12 | EndProjectSection 13 | EndProject 14 | Global 15 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 16 | Debug|Any CPU = Debug|Any CPU 17 | Release|Any CPU = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 20 | {D863562F-C7F1-41E7-94E9-0ED9846A0EAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {D863562F-C7F1-41E7-94E9-0ED9846A0EAB}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {D863562F-C7F1-41E7-94E9-0ED9846A0EAB}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {D863562F-C7F1-41E7-94E9-0ED9846A0EAB}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/ExecuteCypherQueryArgs.cs: -------------------------------------------------------------------------------- 1 | namespace Neo4jDriverExcelAddin 2 | { 3 | using System; 4 | 5 | internal class ExecuteCypherQueryArgs : EventArgs 6 | { 7 | public string Cypher { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/ExecuteQuery.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace Neo4jDriverExcelAddin 2 | { 3 | using System; 4 | 5 | partial class ExecuteQuery 6 | { 7 | /// 8 | /// Required designer variable. 9 | /// 10 | private System.ComponentModel.IContainer components = null; 11 | 12 | /// 13 | /// Clean up any resources being used. 14 | /// 15 | /// true if managed resources should be disposed; otherwise, false. 16 | protected override void Dispose(bool disposing) 17 | { 18 | if (disposing && (components != null)) 19 | { 20 | components.Dispose(); 21 | } 22 | 23 | if (disposing) 24 | { 25 | ExecuteCypher = null; 26 | } 27 | 28 | base.Dispose(disposing); 29 | } 30 | 31 | #region Component Designer generated code 32 | 33 | /// 34 | /// Required method for Designer support - do not modify 35 | /// the contents of this method with the code editor. 36 | /// 37 | private void InitializeComponent() 38 | { 39 | this.txtCypher = new System.Windows.Forms.TextBox(); 40 | this.btnExecute = new System.Windows.Forms.Button(); 41 | this.txtNeoResponse = new System.Windows.Forms.TextBox(); 42 | this.SuspendLayout(); 43 | // 44 | // txtCypher 45 | // 46 | this.txtCypher.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 47 | | System.Windows.Forms.AnchorStyles.Left) 48 | | System.Windows.Forms.AnchorStyles.Right))); 49 | this.txtCypher.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 50 | this.txtCypher.Location = new System.Drawing.Point(0, 0); 51 | this.txtCypher.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); 52 | this.txtCypher.Multiline = true; 53 | this.txtCypher.Name = "txtCypher"; 54 | this.txtCypher.Size = new System.Drawing.Size(453, 233); 55 | this.txtCypher.TabIndex = 0; 56 | // 57 | // btnExecute 58 | // 59 | this.btnExecute.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 60 | this.btnExecute.Location = new System.Drawing.Point(323, 239); 61 | this.btnExecute.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); 62 | this.btnExecute.Name = "btnExecute"; 63 | this.btnExecute.Size = new System.Drawing.Size(130, 48); 64 | this.btnExecute.TabIndex = 1; 65 | this.btnExecute.Text = "Execute Cypher"; 66 | this.btnExecute.UseVisualStyleBackColor = true; 67 | this.btnExecute.Click += new System.EventHandler(this.btnExecute_Click); 68 | // 69 | // txtNeoResponse 70 | // 71 | this.txtNeoResponse.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 72 | | System.Windows.Forms.AnchorStyles.Right))); 73 | this.txtNeoResponse.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 74 | this.txtNeoResponse.Location = new System.Drawing.Point(0, 292); 75 | this.txtNeoResponse.Multiline = true; 76 | this.txtNeoResponse.Name = "txtNeoResponse"; 77 | this.txtNeoResponse.ReadOnly = true; 78 | this.txtNeoResponse.Size = new System.Drawing.Size(453, 206); 79 | this.txtNeoResponse.TabIndex = 2; 80 | // 81 | // ExecuteQuery 82 | // 83 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 84 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 85 | this.Controls.Add(this.txtNeoResponse); 86 | this.Controls.Add(this.btnExecute); 87 | this.Controls.Add(this.txtCypher); 88 | this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); 89 | this.Name = "ExecuteQuery"; 90 | this.Size = new System.Drawing.Size(453, 498); 91 | this.ResumeLayout(false); 92 | this.PerformLayout(); 93 | 94 | } 95 | 96 | #endregion 97 | 98 | private System.Windows.Forms.TextBox txtCypher; 99 | private System.Windows.Forms.Button btnExecute; 100 | 101 | 102 | internal EventHandler ExecuteCypher; 103 | private System.Windows.Forms.TextBox txtNeoResponse; 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/ExecuteQuery.cs: -------------------------------------------------------------------------------- 1 | namespace Neo4jDriverExcelAddin 2 | { 3 | using System; 4 | using System.Windows.Forms; 5 | 6 | public partial class ExecuteQuery : UserControl 7 | { 8 | public ExecuteQuery() 9 | { 10 | InitializeComponent(); 11 | } 12 | 13 | private void btnExecute_Click(object sender, EventArgs e) 14 | { 15 | RaiseExecuteCypherEvent(txtCypher.Text); 16 | } 17 | 18 | private void RaiseExecuteCypherEvent(string cypher) 19 | { 20 | if (string.IsNullOrWhiteSpace(cypher)) 21 | return; 22 | 23 | ExecuteCypher?.Invoke(this, new ExecuteCypherQueryArgs {Cypher = cypher}); 24 | } 25 | 26 | public void SetMessage(string message) 27 | { 28 | txtNeoResponse.Text = message; 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/ExecuteQuery.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/Neo4jDriverExcelAddin.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 21 | 22 | {BAA0C2D2-18E2-41B9-852F-F413020CAA33};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 23 | Debug 24 | AnyCPU 25 | {D863562F-C7F1-41E7-94E9-0ED9846A0EAB} 26 | Library 27 | false 28 | Neo4jDriverExcelAddin 29 | Neo4jDriverExcelAddin 30 | 3 31 | v4.6.1 32 | VSTO40 33 | true 34 | HomeSite 35 | 36 | 37 | 38 | False 39 | Microsoft Visual Studio 2010 Tools for Office Runtime %28x86 and x64%29 40 | true 41 | 42 | 43 | False 44 | Windows Installer 4.5 45 | true 46 | 47 | 48 | 49 | 53 | Excel 54 | 55 | 71 | 72 | true 73 | full 74 | false 75 | bin\Debug\ 76 | false 77 | $(DefineConstants);DEBUG;TRACE 78 | 4 79 | 80 | 96 | 97 | pdbonly 98 | true 99 | bin\Release\ 100 | false 101 | $(DefineConstants);TRACE 102 | 4 103 | 104 | 107 | 108 | 109 | 110 | ..\packages\Neo4j.Driver.1.0.2\lib\dotnet\Neo4j.Driver.dll 111 | True 112 | 113 | 114 | ..\packages\rda.SocketsForPCL.1.2.2\lib\net45\Sockets.Plugin.dll 115 | True 116 | 117 | 118 | ..\packages\rda.SocketsForPCL.1.2.2\lib\net45\Sockets.Plugin.Abstractions.dll 119 | True 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | True 141 | 142 | 143 | 144 | 145 | False 146 | true 147 | 148 | 149 | False 150 | true 151 | 152 | 153 | False 154 | 155 | 156 | 166 | 167 | 168 | 169 | UserControl 170 | 171 | 172 | ExecuteQuery.cs 173 | 174 | 175 | 176 | Code 177 | 178 | 179 | ExecuteQuery.cs 180 | 181 | 182 | ResXFileCodeGenerator 183 | Resources.Designer.cs 184 | Designer 185 | 186 | 187 | True 188 | Resources.resx 189 | 190 | 191 | 192 | 193 | SettingsSingleFileGenerator 194 | Settings.Designer.cs 195 | 196 | 197 | True 198 | Settings.settings 199 | 200 | 201 | Code 202 | 203 | 204 | ThisAddIn.cs 205 | 206 | 207 | ThisAddIn.Designer.xml 208 | 209 | 210 | 211 | 212 | 213 | Designer 214 | 215 | 216 | 217 | 10.0 218 | $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) 219 | 220 | 221 | true 222 | 223 | 224 | Neo4jDriverExcelAddin_TemporaryKey.pfx 225 | 226 | 227 | 23C612D863B3F0DB982584391D81F89FAC83FEC3 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/Neo4jDriverExcelAddinRibbon.cs: -------------------------------------------------------------------------------- 1 | using Office = Microsoft.Office.Core; 2 | 3 | namespace Neo4jDriverExcelAddin 4 | { 5 | using System; 6 | using System.IO; 7 | using System.Reflection; 8 | using System.Runtime.InteropServices; 9 | 10 | [ComVisible(true)] 11 | public class Neo4jDriverExcelAddinRibbon : Office.IRibbonExtensibility 12 | { 13 | private Office.IRibbonUI _ribbon; 14 | 15 | #region IRibbonExtensibility Members 16 | 17 | public string GetCustomUI(string ribbonID) 18 | { 19 | return GetResourceText("Neo4jDriverExcelAddin.Neo4jDriverExcelAddinRibbon.xml"); 20 | } 21 | 22 | #endregion 23 | 24 | internal event EventHandler ShowHide; 25 | 26 | public void OnShowHideButton(Office.IRibbonControl control) 27 | { 28 | ShowHide?.Invoke(this, null); 29 | } 30 | 31 | #region Ribbon Callbacks 32 | 33 | //Create callback methods here. For more information about adding callback methods, visit http://go.microsoft.com/fwlink/?LinkID=271226 34 | 35 | public void Ribbon_Load(Office.IRibbonUI ribbonUI) 36 | { 37 | _ribbon = ribbonUI; 38 | } 39 | 40 | #endregion 41 | 42 | #region Helpers 43 | 44 | private static string GetResourceText(string resourceName) 45 | { 46 | var asm = Assembly.GetExecutingAssembly(); 47 | var resourceNames = asm.GetManifestResourceNames(); 48 | for (var i = 0; i < resourceNames.Length; ++i) 49 | { 50 | if (string.Compare(resourceName, resourceNames[i], StringComparison.OrdinalIgnoreCase) == 0) 51 | { 52 | using (var resourceReader = new StreamReader(asm.GetManifestResourceStream(resourceNames[i]))) 53 | { 54 | if (resourceReader != null) 55 | { 56 | return resourceReader.ReadToEnd(); 57 | } 58 | } 59 | } 60 | } 61 | return null; 62 | } 63 | 64 | #endregion 65 | } 66 | } -------------------------------------------------------------------------------- /Neo4jDriverExcelAddin/Neo4jDriverExcelAddinRibbon.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 8 |