-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSheet2.cs
38 lines (32 loc) · 1.02 KB
/
Sheet2.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
37
38
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 BrusherLib
{
public partial class Sheet2
{
public static int TypeColIndex = 3;
public static int NameColIndex = 2;
private void Sheet2_Startup(object sender, System.EventArgs e)
{
}
private void Sheet2_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(Sheet2_Startup);
this.Shutdown += new System.EventHandler(Sheet2_Shutdown);
}
#endregion
}
}