-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSheet4.cs
43 lines (36 loc) · 1.2 KB
/
Sheet4.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
39
40
41
42
43
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 Code
{
public static int IDIndex = 1;
public static int CodeIndex = 2;
public static int LanguageIndex = 3;
public static int QuestionIDIndex = 4;
public static int CreateDateIndex = 5;
public static int VersionIndex = 6;
private void Sheet4_Startup(object sender, System.EventArgs e)
{
}
private void Sheet4_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(Sheet4_Startup);
this.Shutdown += new System.EventHandler(Sheet4_Shutdown);
}
#endregion
}
}