Excel add-in on startup

前端 未结 2 1272
独厮守ぢ
独厮守ぢ 2021-01-24 02:12

I am creating an add in for Microsoft Excel using Visual C#. When I first created the solution, it included a function called ThisAddIn_Startup. I added the following code to

2条回答
  •  面向向阳花
    2021-01-24 02:47

    Nothing is magic and ThisAddIn_Startup is called by something before executing your MessageBox.Show instruction.

    You can use "Find All References" in Visual Studio, it will bring you to ThisAddin.InternalStartup(), a private method in ThisAddin.cs.

    This method is called by the framework's runtime.

    Did this explanation help?

提交回复
热议问题