-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSheet3.cs
36 lines (30 loc) · 925 Bytes
/
Sheet3.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using Microsoft.VisualStudio.Tools.Applications.Runtime;
using Excel = Microsoft.Office.Interop.Excel;
using Office = Microsoft.Office.Core;
namespace StockAnalyzerWB
{
public partial class Sheet3
{
private void Sheet3_Startup(object sender, System.EventArgs e)
{
}
private void Sheet3_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(Sheet3_Startup);
this.Shutdown += new System.EventHandler(Sheet3_Shutdown);
}
#endregion
}
}