Office Interop is the layer using the COM Interop that allows .NET or C# to communicate with standard COM objects and libraries.
3
votes
0answers
204 views
Identifying and reading Microsoft Office lock files
I'm writing something that monitors a folder, and whether a file is an office document, and is locked for editing, is relevant. This is in Python.
I need any information I can get on these files. In ...
2
votes
0answers
189 views
Embedding powerpoint slide show into a controller
I have a wpf application that embeds powepoint file into a webBrowser control. I managed to implement that functionality using the below sample code. But whenever i run the ppt file the slide show ...
2
votes
0answers
230 views
Merging different worksheets of workbook
The whole app works fine, when merging single tabbed workbooks. But then I added functionality to also merge all worksheets in a book, before merging the book with another.
It merges them (tested on ...
2
votes
0answers
424 views
VSTO- word taskpane share in multiple document with value issue
i am create a addin using VSTO with c#,
i have create a user control for task-pane, where i have following controls:
1) a text-box- for word document folder,
2) a button - for browsing throw ...
2
votes
0answers
127 views
c# - interop word 2010 databound combobox issue
I have a VS2012 Word document project that loads up a Windows Form when the document loads, and it contains a ComboBox that is bound to data on an SQL server. When debugging, it all works flawlessly. ...
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 | ...
2
votes
0answers
446 views
Error creating Visio object: “Retrieving the COM class factory for component with CLSID {…} failed due to the following error: 80080005.”
So I have an application that is converting different Office file types to pdf, and one of the file types is Visio. I'm also doing Excel and Word Doc files, which are working correctly.
I get the ...
2
votes
0answers
218 views
Cached Variables in VSTO Office 2010
After having a look around the web, I have found the following posts (below) which are quite similar to my problem. However, after trying the solutions, I am still stuck.
VSTO Frustration
Setting ...
2
votes
0answers
135 views
How to configure Cached Exchange mode for Outlook using C#?
I am working on a tool that needs to configure the Cached Exchange mode for outlook. I tried meddling with the registry but it seems like its not a good way to go about it, since in Outlook 2010 it is ...
2
votes
0answers
160 views
DisposableAction and Marshal.ReleaseComObject
doing some office Interop and the code is of Type
try
{
selection = getSelected(Return.Some.Office.InteropObject);
for ( int i = 0 ; i < ...
2
votes
0answers
2k views
“80040154 Class not registered” with Word interop from C#
try
{
if (lblCVName.Text != "")
{
object fileName = Convert.ToString(Server.MapPath("~/UploadResume")) + "\\" + lblCVName.Text;
string ext = ...
2
votes
0answers
900 views
Error when attempting to read an .xlsm file
Now I have excel file of extension .xlsm, and I need to read and write using C#.
I tried to use Microsoft.Office.Interop.Excel,
Microsoft.Office.Interop.Excel.Application ObjExcel = new ...
2
votes
0answers
103 views
How to get the indexes of a mistake in Word's GrammarErrors object
We're trying to use Word's COM objects in order to programatically get the spelling and grammar errors in some sentences. We're using code that looks something like this:
foreach (Word.Range range in ...
1
vote
0answers
59 views
Print only on recto (one paper side) with Word.interop
I'm trying to print a document, only on recto, and not recto-verso.
So, I print my document with Word.Interop and before open document, set default printer parameters like this :
...
1
vote
0answers
59 views
Exception while opening an Excel file
I have an Excel file which gives error while opening it manually:
excel found unreadable content in *****.xlsx. Do you want to recover the content of this workbook? If you trust this workbook click ...
1
vote
0answers
93 views
Programmatically set Outlook 2013 Signature Defaults?
Is it possible to programmatically set the Outlook 2013 Default Signature settings? We can generate the user's signature OK but would like to also set the signature to appear by default in user's ...
1
vote
0answers
115 views
How can I use Microsoft.Office.Interop.Word to create a Mailing Lable Word document?
Microsoft.Office.Interop.Word.Application oWord = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document oDocument = new Microsoft.Office.Interop.Word.Document();
...
1
vote
0answers
64 views
Turn off Replace “Straight quotes” with “smart quotes” programmatically in office 2003
Is there a way to turn off Replace "Straight quotes" with "smart quotes" in Microsoft Office 2003 programmatically? I am using Microsoft.Office.Interop.
Ok, solved!
There are two options:
...
1
vote
0answers
163 views
Using Office Interop in a WCF Service
I am currently confused about things as I do not have enough knowledge on WCF. I have a service that has a method that calls the Excel Application (COM object). I am using the service to create an ...
1
vote
0answers
116 views
Print to manual feed MS Interop Word
I'm trying to print a MS Word document from manual feed (in order to print to envelopes)
I found out that the Envelope.PrintOut method has a FeedSource property that suppose to help define this,
...
1
vote
0answers
134 views
Excel InterOp: Updating pivot table datasource breaks calculated fields
I have Sheet1 which contains all the data and a pivot table in Sheet2 which references this data as the data source. When the data needs refreshing I wipe the data except for the header row and then ...
1
vote
0answers
51 views
Use Microsoft Office build-in resources for add-in localization
It is possible to use MS Offices build-in localization resources?
All the tutorials/guides I have found all explain how you create your own localization resources, but it seems like a lot of work for ...
1
vote
0answers
328 views
Dynamically add and delete Data Validation in vb.net
I have been working on this problem for hours now. I've tried and looked everywhere but can't find the answer
I'm trying to add and delete Data Validation (as well as the inCellDropdown) to a Range ...
1
vote
0answers
98 views
VSTO C#/VBA Word Spell Check Events
Is there a way to detect events Spell Check Start and Spell Check Completed within Word 2010?
Thanks!
1
vote
0answers
120 views
Outlook interop using system account
We're trying to use .NET Outlook automation in windows service. It is running under system account.
When trying to call outlook.CreateItemFromTemplate() or outlook.Session.OpenSharedItem() (here ...
1
vote
0answers
49 views
How to use Outlook interpo to update server and logon information
I need to create an application that will allow me to change server information and credentials on all pop3 accounts in Outlook.
I was able to pull something out like this:
Outlook.Application oapp ...
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 ...
1
vote
0answers
185 views
add bookmark as file in the treeview and open it on double click
i am creating a add-ins for Microsoft Word. i have a tree-view control where i am generating Folder, files and File's bookmarks in hierarchical structure.
For this i am using these code :
void ...
1
vote
0answers
38 views
Pages in Printing
Is it possible to know which page I am printing in MS Word? Or which page has been printed recently? I am trying to find out using vsto. There are methods like Application.PrintOut()
and property ...
1
vote
0answers
75 views
DowngradeDocument() function not doing proper downgrade?
I am trying to downgrade a document using VSTO.
I have a webservice, that receive a byte array. This byte is from the current active document.
The webservice can only handle a 2007/2003 word doc ...
1
vote
0answers
132 views
Word Properties not in Summary tab
I've been struggling to set a customProperties (and built in properties) for a word document through the COM interface and just succeeded. However the properties are only visible from within Word, not ...
1
vote
0answers
98 views
Word 2007 Interop Document.Open fails without error
I'm trying to get Word Interop working on our build server. Everything is great on my local machine but on the build server I get back a null document object without any exceptions.
Any idea why I ...
1
vote
0answers
110 views
AddChart() throws when presentation is opened with WithWindow = false
I'm not sure if this is "intended", or if a workaround (other than showing the presentation) exists.
#if DEBUG
var withWindow = Microsoft.Office.Core.MsoTriState.msoTrue;
#else
// using ...
1
vote
0answers
323 views
Removing header and footer in Word inserts Paragraph character
I'm trying to remove all footers in my simple .doc document using interop. The code
foreach (Section sect in oDoc.Sections)
{
foreach (HeaderFooter headFoot in sect.Footers)
{ ...
1
vote
0answers
48 views
How to read application items integrated in Microsoft Outlook
I have a (document management system) application which is integrated in Microsoft outlook which provides the result as different mail items section in columns like title,version of document, author ...
1
vote
0answers
159 views
Office Encryption Provider interface implementation
I am new to C# and Office Addins in general, and cannot find any information on the Office.EncryptionProvider interface, which I am attempting to implement in order to create a custom method of ...
1
vote
0answers
102 views
DocumentBeforeClose event does not work using JavaScript and wscript
I'm writing a script to manage Quit and Save events in Word 2010, some could help me with this piece of code?
The event word_Quit is working correctly. However the event word_DocumentBeforeClose ...
1
vote
0answers
417 views
How can i use interop excel on c++
I'm having a big problem porting C# code to C++ code. I'm trying to save all my datagridview info into an Excel file but it's giving me a lot of errors. These are my 2 headers and I already added the ...
1
vote
0answers
121 views
Embed Interop Types to false that Does Not Work
I am using Office references in project, actually Excel references. However I have compile issues like this one -> Interop type cannot be embedded
I set the Embed Interop Types to false. However it ...
1
vote
0answers
230 views
Copy and paste data into Word. Interop.Word C #
public static void ImportInformationDoc()
{
var app = new Word.Application();
object template = @"C:\Post.dot";
Object newTemplate = Type.Missing;
Object documentType = Type.Missing;
...
1
vote
0answers
452 views
How to change the powerpoint view type as Reading view programmatically?
There is a new view type introduced in powerpoint 2010 called as 'Reading View'. I am trying to apply it to a presentation but the PpViewType Enumeration of office interop does not contain any member ...
1
vote
0answers
583 views
System.Runtime.InteropServices.COMException class not registered
Receiving this error in a project where I have added a reference to Microsoft.Office.Interop.Word version 14.
I am assuming that this means that a dll is not registered. In the Properties for ...
1
vote
0answers
152 views
Button “inside” textbox in Office RibbonControl
I write a WinForms VSTO Add-In for PowerPoint. I must add a control to its Tab in the PowerPoint Ribbon that LOOKS like this:
This is a text-box, with a spyglass icon INSIDE it. The spyglass could ...
1
vote
0answers
197 views
Programatically creating statecharts in visio
Following on from my first question on creating statecharts in visio (using C#): Creating statecharts in Visio using c#
I now need to get labels on my transitions. From inside Visio I have to assign ...
1
vote
0answers
649 views
Selecting content control in word
I am working on an addin to MS Word that will handle content controls
Lets assume that we have 2 cases of selected content control in Word 2007
Case 1:
Entire content of content control is ...
1
vote
0answers
283 views
How do I obtain Excel objects for using as C#4 dynamic interop method call arguments?
I have a great time interop'ing with excel. It's a breeze... until I hit a brick wall.
This works like a charm.
dynamic excel = ...
1
vote
0answers
284 views
Image processing within open xml sdk and word processing
Does anyone know how to edit a picture with the Open XML SDK and Office2010 namespace?
For example, resize or remove background, or smooth edges, crop or something like that...
The only thing that ...
1
vote
0answers
275 views
How to set the MirrorType/Stretch options of a slide background in PowerPoint
I can get the background image exported, however, when I set the background to tiled the "Mirror Type" option is set to "Both" by default. I want to set this to "None" and I want to be able to set ...
1
vote
0answers
154 views
DragDrop on new Excel Sheet gives “Object reference not set to value”
I am using devExpress. Office 2007. c#. When I drag and drop my results in 1/2/3 excel sheet works fine, but dropping results on new sheet gives Object reference not set to an instance of a value. ...
1
vote
0answers
303 views
Including original Msg & Signature in Microsoft.Office.Interop.Outlook.MailItem.replyAll
Im trying to include original message and signature in Microsoft.Office.Interop.Outlook.MailItem.replyAll but nothing seems available for the purpose. Anyone who can help :( Thanks
