J'ai ouvert un classeur Excel en double-cliquant dessus dans l'explorateur Windows, mais je ne peux pas y accéder dans le code.
Excel.Application xlApp = (Application)Marshal.GetActiveObject("Excel.Application");
Excel.Workbooks xlBooks = xlApp.Workbooks;
xlBooks.Count est égal à 0, pourquoi ne fait-il pas référence à mon classeur ouvert ?
EDITAR
Voici les différents scénarios et ce qui se passe :
Scénario 1 : Si le fichier n'est pas déjà ouvert
- Le code ouvre le cahier d'exercices, je suis content.
Scénario 2 : Si le fichier est initialement ouvert à partir du code et que je ferme et rouvre l'application
- Le code fait référence au fichier correctement
xlBooks.Count
équivaut à 1, je suis heureux.
Scénario 3 : Si le fichier est initialement ouvert non pas à partir du code, mais en double-cliquant sur le fichier dans l'explorateur
- Le code ouvre une autre instance du fichier
xlBooks.Count
est égal à 0, Je suis en colère !
Voici le code complet tel qu'il se présente actuellement
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using Microsoft.Office.Interop.Excel;
public class ExcelService : IExcelService
{
const string _filePath = @"C:\Somewhere";
const string _fileName = @"TestFile.xlsb";
string _fileNameAndPath = Path.Combine(_filePath, _fileName);
Application xlApp;
Workbooks xlBooks;
Workbook xlBook;
Worksheet xlSheet;
public ExcelService()
{
try
{
xlApp = (Application)Marshal.GetActiveObject("Excel.Application");
xlBooks = xlApp.Workbooks;
var numBooks = xlBooks.Count;
Log.Info("Number of workbooks: {0}".FormatWith(numBooks));
if (numBooks > 0)
{
xlBook = xlBooks[1];
Log.Info("Using already opened workbook");
}
else
{
xlBook = xlBooks.Open(_fileNameAndPath);
Log.Info("Opening workbook: {0}".FormatWith(_fileNameAndPath));
}
xlSheet = (Worksheet)xlBook.Worksheets[1];
// test reading a named range
string value = xlSheet.Range["TEST"].Value.ToString();
Log.Info(@"TEST: {0}".FormatWith(value));
xlApp.Visible = true;
}
catch (Exception e)
{
Log.Error(e.Message);
}
}
~ExcelService()
{
GC.Collect();
GC.WaitForPendingFinalizers();
try
{
Marshal.FinalReleaseComObject(xlSheet);
}
catch { }
try
{
Marshal.FinalReleaseComObject(xlBook);
}
catch { }
try
{
Marshal.FinalReleaseComObject(xlBooks);
}
catch { }
try
{
Marshal.FinalReleaseComObject(xlApp);
}
catch { }
}
}