0

readxml への簡単な方法を取得するためのヘルプが必要です。これが私が取ったステップです:

  1. Microsoft Excel 12.0 Object Library COM からの参照を追加しました。
  2. 別のソースから正確にコピーされたコード http://csharp.net-informations.com/excel/csharp-read-excel.htm
  3. これがonclickイベントではなくメソッドである必要があるという唯一の違い。
  4. エラー 10 An object reference is required for the non-static field, method, or property on codereleaseObject(xlWorkSheet); releaseObject(xlWorkBook); releaseObject(xlApp);

必要な手順は何ですか?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Excel = Microsoft.Office.Interop.Excel; 

namespace projectName
{
class frmReadXml
{

    public static void executeRead()
    {

        Excel.Application xlApp = new Excel.Application();
        Excel.Workbook xlWorkBook;
        Excel.Worksheet xlWorkSheet = new Excel.Worksheet();
        Excel.Range range;

        string str;
        int rCnt = 0;
        int cCnt = 0;



        xlWorkBook = xlApp.Workbooks.Open("csharp.net-informations.xls", 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
        xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);

        range = xlWorkSheet.UsedRange;

        for (rCnt = 1; rCnt <= range.Rows.Count; rCnt++)
        {
            for (cCnt = 1; cCnt <= range.Columns.Count; cCnt++)
            {
                str = (string)(range.Cells[rCnt, cCnt] as Excel.Range).Value2;
                MessageBox.Show(str);
            }
        }

        xlWorkBook.Close(true, null, null);
        xlApp.Quit();

        releaseObject(xlWorkSheet);
        releaseObject(xlWorkBook);
        releaseObject(xlApp);
    }
    private void releaseObject(object obj)
    {
        try
        {
            System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);
            obj = null;
        }
        catch (Exception ex)
        {
            obj = null;
            MessageBox.Show("Unable to release the Object " + ex.ToString());
        }
        finally
        {
            GC.Collect();
        }
    } 

}

}

4

2 に答える 2