質問編集履歴
1
コードの不備があった
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,35 +6,35 @@
|
|
6
6
|
|
7
7
|
```
|
8
8
|
|
9
|
-
|
9
|
+
// Excelアプリケーション生成
|
10
10
|
|
11
|
-
|
11
|
+
Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
|
15
|
+
// 既存のBookを開く
|
16
16
|
|
17
|
-
|
17
|
+
Microsoft.Office.Interop.Excel.Workbooks xlBooks = xlApp.Workbooks;
|
18
18
|
|
19
|
-
|
19
|
+
Microsoft.Office.Interop.Excel.Workbook xlBook = xlBooks.Open(System.IO.Path.GetFullPath(@"Excel名"));
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
-
|
23
|
+
// シートを選択する
|
24
24
|
|
25
|
-
|
25
|
+
Microsoft.Office.Interop.Excel.Sheets xlSheets = xlBook.Worksheets;
|
26
26
|
|
27
27
|
|
28
28
|
|
29
|
-
|
29
|
+
// Excelのファイル名取得
|
30
30
|
|
31
|
-
|
31
|
+
string ExcelBookFileName = xlBook.FullName;
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
|
35
|
+
// Excelファイルを開く
|
36
36
|
|
37
|
-
|
37
|
+
Workbook wb = xlApp.Workbooks.Open(ExcelBookFileName,
|
38
38
|
|
39
39
|
Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
|
40
40
|
|
@@ -46,37 +46,37 @@
|
|
46
46
|
|
47
47
|
|
48
48
|
|
49
|
-
|
49
|
+
// シート指定
|
50
50
|
|
51
|
-
|
51
|
+
ExcellData.ws1 = ExcellData.wb.Sheets[1];
|
52
52
|
|
53
|
-
|
53
|
+
range=.xlApp.get_Range("A1", "D100);
|
54
54
|
|
55
|
-
|
55
|
+
for(int a=1;a<100:a++)
|
56
56
|
|
57
|
-
|
57
|
+
{
|
58
58
|
|
59
|
-
|
59
|
+
textbox1.Text=range.value2[a,a];
|
60
60
|
|
61
|
-
|
61
|
+
}
|
62
62
|
|
63
63
|
|
64
64
|
|
65
65
|
|
66
66
|
|
67
|
-
|
67
|
+
// シート指定
|
68
68
|
|
69
|
-
|
69
|
+
ExcellData.ws1 = ExcellData.wb.Sheets[10];
|
70
70
|
|
71
|
-
|
71
|
+
range=.xlApp.get_Range("A1", "D100);
|
72
72
|
|
73
|
-
|
73
|
+
for(int a=1;a<100:a++)
|
74
74
|
|
75
|
-
|
75
|
+
{
|
76
76
|
|
77
|
-
|
77
|
+
textbox1.Text=range.value2[a,a];
|
78
78
|
|
79
|
-
|
79
|
+
}
|
80
80
|
|
81
81
|
|
82
82
|
|