0

HI: とても簡単なはずのものが私には向いていないように見えるので、皆さんがそこにいてくれてとてもうれしいです。

背景: C# を使用して Excel ワークブックを開こうとしています (OpenFileDialog を使用してそれを選択します - 「Gradebook」と呼ばれます)。次に、複数の Excel ワークブックをループ処理します (FolderBrowserDialog で選択したフォルダー内 - ファイル名を文字列 [] に保存します)。各ワークブックを 1 つずつ開き、各ワークブックから一定範囲のデータを抽出して、「成績表」に貼り付けたいと考えています。これまでのところ、配列内のファイル名のキャプチャは機能しており、単一のワークブックを選択して開く機能も機能しています。

質問: foreach ステートメントに問題があります。ワークブックをループすると、次の行Excel.Workbook stdWorkbook = excelApp.Workbooks.Open(stdFile)にエラーがあります:「コンテキストに名前 stdFile が存在しません」。

また、私はプログラミングにかなり慣れていないため、Excel と C# との相互運用性を理解するのに十分な簡単な言葉で説明するものを見つけるのに問題があるようです。良い情報源への指示をいただければ幸いです。

using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Excel = Microsoft.Office.Interop.Excel;  //Use Project add reference to add the       Microsoft Excel Object library, then add this statement
using System.Reflection;

namespace ExcelLoadStdDataToGradingSheet
{
    public partial class Form1 : Form
    {
        public string[] fileNames;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            // select the folder with the student assignment 
            FolderBrowserDialog fbd = new FolderBrowserDialog();
            fbd.Description = "Browse to find Folder with student assignments to open";
            fbd.SelectedPath = "C:\\Users\\Robert\\Google Drive\\Programming";
            DialogResult result = fbd.ShowDialog();
            if (result == DialogResult.OK)
            {
                string[] fileNames = Directory.GetFiles(fbd.SelectedPath);
                System.Windows.Forms.MessageBox.Show("Files found: " +   fileNames.Length.ToString(), "Message");
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            // Select the Excel file used for grading and open it
            OpenFileDialog dialog = new OpenFileDialog(); // Open dialog box to select   desired Excel file.  Next 3 line adjust that browser dialog
            dialog.Title = "Browse to find Grade Sheet to open";
            dialog.InitialDirectory = @"c:\\Users\\Robert\\Google Drive\\Programming";
            dialog.ShowDialog();
            string GradeExcel = dialog.FileName;
            Excel.Application excelApp = new Excel.Application();   //This creates the Excel application instance "excelApp"
            excelApp.Visible = true;
            Excel.Workbook GradeBook = excelApp.Workbooks.Add(GradeExcel);

            // Loop to open every student file, extract filename, name, Red ID, and creation date
            foreach (string stdFile in fileNames);
            {
                // Open student Workbook and copy data from "Hidden" Worksheet
                //Excel.Application newApp = new Excel.Application();  //This creates the Excel application instance "newApp"
                Excel.Workbook stdWorkbook = excelApp.Workbooks.Open(stdFile);  //Open student Workbooks
                Excel.Worksheet xlWorksheet = stdWorkbook.Sheets["Hidden"];
                Excel.Range xlRange = xlWorksheet.Range["A2:E2"];



                // Paste student information to the Grade Sheet
                //  Workbooks(GradeBook).Sheets("GradingSheet").Range("SetActiveCell").Select.Paste;  //' start  pasting in "A5";
                // SetActiveCell = ActiveCell.Offset(1, 0).Select;
                // workbooks("StdWorkbook").close savechanges:=false;
            }
            // workbooks("Gradingbook").close savechanges:=true;
        }
    }
}
4

1 に答える 1

0
foreach (string stdFile in fileNames);

この行の末尾にあるセミコロンはステートメントをすぐに終了させるため、それstdFileより下のコードでは使用できません。セミコロンを削除します。

ここdotnetperlsには、Excel Interop の簡単な紹介があります。

于 2013-08-17T23:59:39.677 に答える