AddIn.ThisAddIn.ThisAddIn_Startup C# (CSharp) Method

ThisAddIn_Startup() private method

private ThisAddIn_Startup ( object sender, System e ) : void
sender object
e System
return void
        private void ThisAddIn_Startup(object sender, System.EventArgs e)
        {
            urpcControl = new UrpcControl();
              pane = CustomTaskPanes.Add(urpcControl, "uRPC");

              Application.WindowActivate +=
            new Excel.AppEvents_WindowActivateEventHandler(
              Application_WindowActivate);
        }