using System; 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 Microsoft.Office.Interop.Excel; using Excel = Microsoft.Office.Interop.Excel; using System.Runtime.InteropServices; namespace WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); Microsoft.Office.Interop.Excel.Application xlApp = null; Microsoft.Office.Interop.Excel.Workbooks xlBooks = null; Microsoft.Office.Interop.Excel.Workbook xlBook = null; Microsoft.Office.Interop.Excel.Sheets xlSheets = null; Microsoft.Office.Interop.Excel.Worksheet xlSheet = null; // Excelアプリケーション生成 xlApp = new Microsoft.Office.Interop.Excel.Application(); // ◆アラートメッセージ非表示設定◆ // xlApp.DisplayAlerts = false; // 既存のBookを開く xlBooks = xlApp.Workbooks; xlBook = xlBooks.Open(System.IO.Path.GetFullPath(@"F:\\1.xlsx")); xlSheets = xlBook.Worksheets; // 1シート目を操作対象に設定する // ※Worksheets[n]はオブジェクト型を返すため、Worksheet型にキャスト xlSheet = xlSheets[1] as Microsoft.Office.Interop.Excel.Worksheet; // 表示 xlApp.Visible = true; // セルのオブジェクト Microsoft.Office.Interop.Excel.Range xlRange = null; Microsoft.Office.Interop.Excel.Range xlCells = null; // B3セルを指定 xlCells = xlSheet.Cells; xlRange = xlCells[3, 2] as Microsoft.Office.Interop.Excel.Range; xlRange.Value = "変更後の値"; // 別名保存 xlBook.SaveCopyAs(@"F:\rr.xlsx"); // 印刷 xlSheets.PrintOutEx(); // 変更保存するか聞かずに閉じる xlBook.Close(false); /////////////////////////////////////////////////////////////////////// System.Runtime.InteropServices.Marshal.ReleaseComObject(xlRange); System.Runtime.InteropServices.Marshal.ReleaseComObject(xlCells); // Sheet解放 System.Runtime.InteropServices.Marshal.ReleaseComObject(xlSheet); System.Runtime.InteropServices.Marshal.ReleaseComObject(xlSheets); // Book解放 //xlBook.Close(); System.Runtime.InteropServices.Marshal.ReleaseComObject(xlBook); System.Runtime.InteropServices.Marshal.ReleaseComObject(xlBooks); // Excelアプリケーションを解放 xlApp.Quit(); System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp); } private void Form1_Load(object sender, EventArgs e) { } } }