0
votes
1answer
247 views

Writing a C# method to parse string for Word Text how to iterate to get forms too?

Okay first off I would say I have next to no experience in using COM references so just playing around with Microsoft.Office.Interop.Word so please keep that in mind if my code looks a little ...
0
votes
2answers
1k views

C# - Add reference for both MS Excel 12.0 object library and MS Excel 14.0 object library?

I have recently developed a small tool that uses Microsoft.Office.Excel.Interop, and according to my References folder I have added the reference to the Microsoft Excel 14.0 Object Library. I should ...
0
votes
0answers
122 views

COMException (0x800A01A8) when calling Office.Core.CommandBarButton.Caption - Excel 2010

I have a custom right click menu in excel onto which I put some buttons. It seems as though the first time I click one of the buttons, it functions as expected but the second time I click the button ...
2
votes
2answers
434 views

COM Exception 80040154 When creating an Excel Application

I'm trying to run my application on a server which does not and will not have Office installed on it. using EXCEL = Microsoft.Office.Interop.Excel; ... EXCEL.Application app = new ...
0
votes
2answers
279 views

Fill in word form field with more than 255 characters

I am trying to programmaticly fill in a microsoft word form. I am successfully able to do so if the string is under 255 chars with the following code below, however it says the string is too long if ...
0
votes
1answer
364 views

System.Runtime.InteropServices.COMException: There is a file sharing conflict. The file cannot be accessed as requested

I get this error when I attempt to open a Visio document and save it as a pdf: protected void ViewVisio(string url) { string pdfFile = Server.MapPath("/Files/test.pdf"); ...
1
vote
0answers
182 views

Interop Excel C#: Saving charts sheets in windows server 2008

I'm working on a document (ppt, pptx, xls, xlsx, doc, docx and pdf) splitter and overall, I made it work. Now I'm facing a final problem, the thing is that everything works just fine in my computer ...
0
votes
0answers
98 views

Expanding Windows Forms UserControls within an Interop.Excel CustomTaskPane

I am trying to make my control MyCustomControl grow to the height of the parent Microsoft.Office.Tools.CustomTaskPane. MyCustomControl contains a TableLayoutPanel of 2 rows, 2 columns. The bottom ...
2
votes
0answers
166 views

Microsoft.Office.Interop.Excel 2010 Bubble Chart Gradients

I am trying to set some properties of charts created programatically, but am unable to set the property normally found within Excel 2010 for a Bubble Chart at: Format Data Series | Fill | ...
0
votes
2answers
179 views

How to check existence of a property in Outlook Interop?

I am trying to determine sender of a email in Outlook 2007 and above. In Outlook 2010 you have a Sender property on the MailItem object while in Outlook 2007 you have to do it differently like ...
2
votes
2answers
292 views

Add-in for MapPoint works on some machines and not on some others

I developed a minimal (without MapPoint Object Library, because it's a test) add-in for Microsoft MapPoint using Visual Studio 2010, written in C#. With setup project I can install my add-in on some ...
1
vote
1answer
344 views

Read missing Word template from Powershell

I have a series of Word documents which link to templates which no longer exist. This is causing problems for users trying to open them. I can get a list of the documents, loop through each one, and ...
2
votes
2answers
1k views

Exporting Excel file to PDF - getting stuck trying to close Excel file

I have a function that takes a url to an Excel file, and then exports it as a pdf: public static void ExportFromExcel(string url) { // Create COM Objects Application excelApplication = new ...
0
votes
0answers
799 views

Unable to run the specified macro Word 2010 and c#

I am trying to run a word macro using c#. object oMissing = System.Reflection.Missing.Value; // Create an instance of Word, make it visible, // and open Doc1.doc. ...
0
votes
0answers
208 views

System.TypeInitializationException on running my app, debugging for the same goes fine

In VS2010, debugging (F5) my App, goes fine and I get the results as expected but when I run the same app (Ctrl-F5) I hit the System.TypeInitializationException. Below is the complete exception. ...
1
vote
1answer
934 views

how to stop macros running when opening a Word document using OLE Interop?

As the title suggests, I have a .Net application which uses interop to open documents in Word. I have set app.AutomationSecurity = ...
0
votes
1answer
2k views

What Microsoft.Office.Interop.Outlook version works with Outlook 2003?

I'm creating a COM add-in for Outlook and I'm trying to target all 'still used' versions of Outlook: 2003, 2007, 2010. However, the add-in's UI (which is rather simple, a CommandBar) doesn't display ...
0
votes
1answer
304 views

Word table style from c#

I have silverlight application that run out of browser. It opens some word template document and populate some fields. The problem is that in tpl document table is at top left corner. I want to change ...
2
votes
3answers
914 views

what is the advantage of .net4's new no pia feature [deploying PIA's]

Its possibly im just missing something here but, when I write some code for Excel interop, here is how it goes. I add a reference to the Excel Com libraries. VS creates a PIA - ...
1
vote
1answer
889 views

Excel COM Interop - tlbimp vs primary WrapperTool

I'm trying to add the ActiveX Microsoft Excel 11.0 Object library to my .NET project. It works fine on my computer, but when I check in my code, it doesn't work on my coworker's. Fixed it on his and ...
2
votes
1answer
873 views

Error While using Excel Interop's set_Value(XLRangeValueDataType.XLRangeValueMSPersistXML,object)

I am getting error while using the Excel Interops set_Value on a range. Any help/suggestion will be valuable. This is the code which is failing. using Excel = Microsoft.Office.Interop.Excel; ...