Office Interop is the layer using the COM Interop that allows .NET or C# to communicate with standard COM objects and libraries.
6
votes
1answer
5k views
How can I create an Outlook PST file using .Net?
I'm writing an app that will manipulate Outlook data. I want to make a backup of that data first and am hoping I could just loop through the contact/calendar items, etc and write them out to a PST ...
4
votes
3answers
12k views
Get instance of Excel application with C# by Handle
I have a c# simple application that have to write some values in a excel ranges of a specific worksheet.
I create an instance of Excel application if not exist, but if exist i want to set active it ...
7
votes
5answers
7k views
Fastest way to write cells to Excel with Office Interop?
I am writing a function to export data to Excel using the Office Interop in VB .NET. I am currently writing the cells directly using the Excel worksheet's Cells() method:
worksheet.Cells(rowIndex, ...
8
votes
10answers
8k views
WinWord.exe won't quit after calling Word.Documents.Add - Word .NET Interop
I'm running into the classic scenario where, when creating Word COM objects in .NET (via the Microsoft.Office.Interop.Word assembly), the WinWord process won't exit even though I'm properly closing ...
10
votes
4answers
8k views
Reading Datetime value From Excel sheet
when am trying to read datetime type value from excel sheet it is returning a double value.for example if want to read value '2007-02-19 14:11:45.730' like this, i am getting a double type value ...
1
vote
1answer
1k views
How to add items one at a time to to a new line a word document using word interop
I am trying to add these three types of content into a word doc. This is how I am trying to do it now. However, each item replaces the last one. Adding images always adds to the beginning of the page. ...
13
votes
2answers
13k views
Accessing Office Word object model through asp.net results in “failed due to the following error: 80070005 Access is denied.”
I have developed a website that allows users to upload office documents then uses the office object model to convert the document to an HTML file that it then displays in an iFrame.
I have, of ...
8
votes
1answer
5k views
Trying to do Office Automation with Excel 2007, but keeps using Excel 2003
Environment:
Windows XP machine
Both Excel 2007 and Excel 2003 installed (in that order, not chronologically).
C# 3.5
Problem:
When I use the PIAs to do some Office automation, I use the following ...
6
votes
9answers
3k views
Alternative to Office Interop for document generation
At the moment we're using office interop to generate documents from templates in office 2003 (word, excel & powerpoint). This seems to be rather frowned upon (see ...
8
votes
3answers
12k views
How to open Outlook new mail window c#
I'm looking a way to open New mail, Outlook window.
I need programically fill: from, to, subject, body information, but leave this new mail window open so user can verify content / add something ...
0
votes
5answers
3k views
Office Interop with 64bit Windows in ASP.NET
I'm trying to do office 2003 interop using C# ASP.NET on a server running Windows 2003 64 bit (I'm running IIS in 32bit mode though) and getting error messages like:
The machine-default permission ...
6
votes
4answers
2k views
How can I quickly up-cast object[,] into double[,]?
I using Microsoft.Office.Interop.Excel I get returned a 2D array of type object[,] which contains double for elements. Note that the index lower bound is 1 instead of the default 0, but I can deal ...
6
votes
2answers
2k views
How to eliminate warning about ambiguity?
I have this warning:
Warning 3 Ambiguity between method 'Microsoft.Office.Interop.Word._Application.Quit(ref object, ref object, ref object)' and non-method ...
2
votes
2answers
611 views
How to obtain PowerPoint File Format Programmatically
I need to determine whether the ActivePresentation is 97-2003 or 2007 format. I really won't want to check the extension.
Is there a property somewhere inside the PowerPoint Object Model which gives ...
0
votes
2answers
377 views
How to implement column self-naming from its index?
I wish to be able to instantiate my Cell class while naming the cell instance with such name as "A", "B", "C", etc. just like in an Excel spreadsheet.
I have my Cell class like so:
public class Cell ...
9
votes
8answers
19k views
How to read an excel file in C# without using Microsoft.Office.Interop.Excel libraries
I have a .Net-Windows application in C#. I need to open an excel and process it. How can I do this without using Microsoft.Office.Interop.Excel libraries?
Thanks in Advance
15
votes
2answers
1k views
Does *every* Excel interop object need to be released using Marshal.ReleaseComObject?
Edit
Please see also How to properly clean up Excel interop objects in C#. I recently came across this question, and it provided a lot of insight into the problem of how to properly dispose of COM ...
6
votes
7answers
33k views
Create Excel files from C# without office [duplicate]
Possible Duplicate:
Create Excel (.XLS and .XLSX) file from C#
I am writing a program that generates excel reports, currently using the Microsoft.Interop.Excel reference. My dev computer ...
5
votes
1answer
4k views
Installing VSTO 4.0 Causes VSTO 3.0 Addin to quit working
I just installed Visual Studio 2010 yesterday. As part of that I installed VSTO 4.0. Now when I run any Office application, my VSTO 3.0 addins fail to load. The error in the event log is
...
5
votes
9answers
3k views
How can I read MS Office files in a server without installing MS Office and without using the Interop Library?
The interop library is slow and needs MS Office installed.
Many times you don't want to install MS Office on servers.
I'd like to use Apache POI, but I'm on .NET.
I need only to extract the text ...
8
votes
3answers
454 views
MS Word Automation in C# - Unable to cast object of type 'System.String[*]' to type 'System.String[]'
I use this code to get a String array of headings used in a MS Word 2007 document (.docx):
dynamic arr = Document.GetCrossReferenceItems(WdReferenceType.wdRefTypeHeading);
Using the debugger, I see ...
6
votes
7answers
9k views
Killing EXCEL.exe Process from C# in a Windows Service
I have a windows service that opens up an Excel spreadsheet via the Microsoft.Office.Interop.Excel.Application object.
Application xlApp = new Application();
Workbook workbook = ...
5
votes
2answers
5k views
Adding hyperlinks in Excel[2007] in C# - Within Excel it self
Can anybody tell me how we can add a hyperlink in Excel (2007 or later) from
a cell in one sheet to a cell in another sheet using Office Interop in .NET (c#)
For example: A hyperlink from Sheet1 Cell ...
3
votes
5answers
5k views
Problems with office automation in asp.net. I can use alternatives such as open-office, if I knew how
I have a ASP.NET 2.0 web application that should upload a ppt file and then extract its slides to images. For that I have imported office.dll and Microsoft.Office.Interop.PowerPoint.dll assemblies and ...
3
votes
2answers
292 views
Is it possible to store hidden metadata information that is tied to a specific Table or Cell within a Word document?
I am trying to store metadata (basically a unique id) along with each cell of a table in a Word document. Currently, for the add-in I'm developing, I am querying the database, and building a table ...
1
vote
2answers
1k views
Open/handle Word documents like SharePoint
Could anyone point me in the right direction when it comes to handling Word documents (.docx) on the server using asp.net.
I know I can write to and read the .docx document using the API provided.
...
9
votes
1answer
700 views
Creating statecharts in Visio using c#
Can anyone point me to an example of how to programatically create a statechart in visio?
I can create blank pages, drop shapes, open template etc, but when I try to add transitions it complains that ...
3
votes
1answer
2k views
disabling overwrite existing file prompt in Microsoft office interop FileSaveAs method
I am using Ms Office Interop assemblies to create a MS Project file. To save the file created, I am using FileSaveAs method and it prompts a message saying that if you want to replace the existing ...
1
vote
1answer
312 views
Capturing keydown event of MS Word using C#
I'm trying to develop an office add-on and need to capture the keydown event on MS-Word using C#. can somebody give me an example on how i can do that?
1
vote
3answers
782 views
Is there a way to tell PowerPoint not to open Excel when creating charts?
Slide.Shapes.AddChart() automatically opens Excel. Even if I quickly do Chart.ChartData.Workbook.Application.Visible = false, it still shows a little while. This makes automating chart creation ...
1
vote
3answers
2k views
Detecting a password-protected document
Is there any way to know whether a doc/ppt/xls file is password-protected even before opening the file?
0
votes
1answer
2k views
Is there a way to programmatically check if a Excel file is opened
I want to check whether a particular Excel file is already opened. Otherwise when I reopen same file in my C# program it is opening in read only format. Is there any way to find out if the file is ...
0
votes
2answers
1k views
Microsoft Office Interop in a mixed Office 2003 / 2007 / 2010 environment
In a situation where most of the users are using the latest version of MS Office, and a few are using older ones, Office 2003/2007, due to machine limitations, is there a way to properly use the ...
0
votes
1answer
583 views
Crop MS Word Images using Matlab Activex control
I am using MATLAB to paste and caption plots into Microsoft Word. I would like to also crop these images using the ActiveX control.
something like:
word = actxserver('Word.Application')
...
0
votes
1answer
228 views
How to make this custom worksheet initialization faster?
Summary
This question is somehow the follow-up to this question:
How to implement column self-naming from its index?
Having tested the code provided in this above-linked question's answers, I ...
0
votes
1answer
304 views
Processing Microsoft Office Outlook 2003/2007 email messages
Summary
It's been while now that I receive emails on a specific work-related domain, and I'd like to build up a database based on the information that is provided within these emails messages.
...
5
votes
3answers
167 views
Color non-consecutive cells in an Excel sheet
UPDATE 2: I still want to be able to make a range object with non-consecutive ranges and even though my colleagues have given up on it I personaly hate not finishing projects. If anyone can tell me ...
5
votes
3answers
8k views
Disposing of Microsoft.Office.Interop.Word.Application
(Somewhat of a follow on from the post (which remains unanswered): How to Close/ dispose Application in Micorsoft.Office.Interop.Word in asp.net)
Using the following code
Application app = new ...
4
votes
2answers
1k views
Adding Shapes to a New Visio Document
I have this code that creates a new Visio document and adds a rectangle. It works, but I don't like having to open another document to get the Masters collection from it. The issue is the new ...
2
votes
1answer
2k views
Accessing an open Excel Workbook in C#
I need to access an excel file that is already open. I thought just inspecting the .Workbooks property that it would be there but it isn't. What is the right way to get a reference to the open ...
1
vote
2answers
4k views
C# Outlook interop and OpenSharedItem for opening MSG files
Is there any tutorial or resource I can follow in order to use the OpenSharedItem outlook interop method. My goal is to read MSG files using it (as it can apparently do so).
0
votes
2answers
620 views
How will i extract the data from the docx file using DocumentFormat.OpenXml -details below
I have a Docx file created by adding the xml schema. I am giving you the link of the docx file .
now I want to extract-- To,From,heading,body.
Currently I am using the Library DocumentFormat.OpemXml.
...
9
votes
3answers
8k views
How to make correct date format when writing data to Excel
Iam exporting a DataTable to an Excel-file using office interop. The problem is, that Excel does not recognize dates as such, but instead it displays numbers. In another case I pass a string which it ...
7
votes
2answers
2k views
VSTO Outlook addin need to save settings, best way?
I'm writing a VSTO Outlook add in and i need to save some settings the addin gets from a web service. What is the best way to do this. Registry? does the VSTO addin have full access to do something ...
7
votes
5answers
16k views
How to create word docs programmatically from a template
I am trying to create about 600 reports in microsoft office Word. The documents are populated with data from a database, and images found on a local drive.
I have figured out, that I might create a ...
5
votes
2answers
370 views
How can I capture an MS-Access VBA debug error from my C# code?
I have a C# program that opens several MS-Access files, and executes functions from within each one.
Essentially, the code looks something like this:
Microsoft.Office.Interop.Access.Application app ...
5
votes
3answers
1k views
How to disable security pop ups of MS Outlook in C#?
How to disable security pop ups of MS Outlook using C#?
I am getting the security pop up, while trying to initiate outlook task to be created using my c# application. (Using Microsoft Office Outlook ...
4
votes
1answer
1k views
Programmatically count number of characters/words/paragraphs with a specific style in a DOCX document
I need to programmatically count the characters and/or words and/or paragraphs which have been applied a specific known style in a DOCX document.
I need to know 1) if this is possible and to 2) any ...
3
votes
2answers
1k views
different format into one single line Interop.word
I've been trying to figure out how to insert 2 different formats into the same paragraph using interop.word in c# like this:
hello planet earth here's what I want to do
2
votes
1answer
2k views
Outlook Filter Items - Get all recurring appointments in a week range
I'm trying to get all appointments in outlook in week range, but reoccurring appointments are not showing up.
Here is the code:
var outlook = new Microsoft.Office.Interop.Outlook.Application();
...
