I've been writing an application in C# which creates Custom Document properties in an Excel spreadsheet, I have a function for this which takes in a Workbook Object...

However, actually getting the current Workbook object is proving to be quite annoying, I am using ExcelDNA to add functionality, however, I can't seem to pass my function a valid Workbook COM object.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This is the way I am currently doing it it seems to work really well

 using Excel = Microsoft.Office.Interop.Excel;      

Then you get active workbook

        //Gets Excel and gets Activeworkbook and worksheet
        Excel.Application oXL;
        Excel.Workbook oWB;
        Excel.Worksheet oSheet;
        oXL = (Excel.Application)Marshal.GetActiveObject("Excel.Application"); 
        oXL.Visible = true;
        oWB = (Excel.Workbook)oXL.ActiveWorkbook; 

        docProps = oWB.CustomDocumentProperties

Then I would try what you have and see how it works

Hope this helps

link|improve this answer
EXCELLENT. You sir are my hero, this has fixed a rather annoying problem I was having, needed a fresh pair of eyes I guess! Much appreciated. – AdamNumberFive Oct 27 '11 at 14:26
Yeah not problem I have been doing quite a bit with excel if you have any questions let me know. I hope this helps you!!!! – Russell Saari Oct 27 '11 at 14:28
From Excel-DNA you'll want to call ExcelDnaUtil.Application to make sure you get the Application object for the Excel process you're running in, instead of the last activated Excel instance which Marshal.GetActiveObject will return. – Govert Oct 27 '11 at 15:27
feedback

If you need to find the activeworkbook with C#, if you are using Office Interop, you can try this kind of code:

(Workbook)Globals.ThisAddIn.Application.ActiveWorkbook;

[Source]

link|improve this answer
@AdamNumberFive, yes it does. You can do nearly the same thing with the excel COM object though by using the excel application instance you have and looking at the ActiveWorkbook property. – Michael Kingsmill Oct 27 '11 at 14:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.