Tagged Questions
0
votes
0answers
18 views
Office PIAs and Application Packaging
I inherited a project that I'm trying to gain a better understanding of the reasons certain decisions were made as I prepare for the next release. The existing product was designed to work with Office ...
0
votes
0answers
23 views
Openning Excel files from memory
Using Excel-Interop in .net, is it possible to open a file from memory instead of from file system? I've been able to open from HTTP and NFS - but memory is ideal for my needs.
I'm using the method:
...
1
vote
1answer
37 views
Get value of Excel Cell still being edited
I need to capture the value contained in any cell or cells that are selected in my Excel add in. I'm currently using ...ActiveWindow.Selection and get_Value() on that to get multiple cells selected at ...
0
votes
1answer
26 views
Preventing access to an Excel file wrapped by a Dot.Net application
I have a stand-alone Dot.Net application that wraps and interacts with a Excel file containing secret data, using Microsoft.Office.Interop.Excel.
Which techniques can I apply in order to protect the ...
3
votes
4answers
82 views
How to load large amount of data to DataTable
I am exporting data from Excel to a DataTable, but I am getting some performance issues when my Excel file contains large amount of rows...
public DataView LoadFromExcel()
{
...
-1
votes
1answer
74 views
Error while opening an excel file from c# win form using interop service and process.start()
I am using a code for opening an excel sheet from temp folder
Here I am using 2 option to open a file first using process.start()
if its throwing error , will go for the second one using interop ...
0
votes
2answers
107 views
Fastest way to enumerate or look for all empty Excel cells and change their style or do some other processing
Which would be potentially a best way to enumerate or iterate or simply look for empty cells or cells with specific data structure in Excel, and later once you find it do some processing on it.
I ...
0
votes
1answer
112 views
Add text to word table in c# using word interop
I am using Word.Interop in c# to inject data into a word document whch serves as a template for me.
This document has a table I wish to fill.
like this:
I am inserting the text like this ...
0
votes
0answers
41 views
Alternative to powerpoint shape.Export method
I want to export shapes from ppt to images. I'm using PowerPoint api's shape.Export method.
like :
curShape.Export(path + imageName,JPG_Or_PNG, (int)this.myPPTProcessor.SlideWidth, ...
0
votes
1answer
247 views
Get Unique Id From MailItem (Microsoft.Office.Interop.Outlook)?
Hi I'm creating an application that reading emails received in outlook. The reading process is something like this:
In Using Lines:
using Outlook = Microsoft.Office.Interop.Outlook;
Code block:
...
0
votes
1answer
61 views
Excel Interop, iterating workbook for worksheet and chart
I have a scenario while working with Microsoft Excel Interop.
System.Collections.IEnumerator wsEnumerator = excelApp.ActiveWorkbook.Worksheets.GetEnumerator();
while (wsEnumerator.MoveNext())
{
...
2
votes
1answer
49 views
Extract text information from MS Word
i want to extract text information from MS Word document. The extracted information contain position, page number and style of text. Does anyone can suggest me How can i do That? what library can ...
1
vote
2answers
165 views
How to read complex equations from PowerPoint slide in C#
I am trying to read powerpoint slides. But when my program is encountered with text like
" Vo = Σ CF/(1+t) " , the shape.TextFrame.TextRange.Paragraphs(paraindex,1).Text property can not read it ...
0
votes
1answer
77 views
Replace use of excel interop
I have a system which does heavy use of excel interop.
this is problematic , because it is deployed at many client sites,
each with his own unique operating system, office version , regional settings ...
0
votes
1answer
47 views
.net powerpoint application cant save
I wasn't sure how to formulate my title so sorry if it wasn't clear enough :)
The purpose of my application (price offers) is quite simple:
You write all client coordinates in a textbox
The mail ...
0
votes
1answer
133 views
want to convert pptx or docx to pdf by using microsoft.office.interop, what files should I include for distribution?
Here is a simple question.
I made a VB.Net (framework4.0) software for converting pptx and docx files to PDF files.
It uses Microsoft.Office.Interop.PowerPoint and Word for converting files.
I want ...
1
vote
0answers
154 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();
...
2
votes
4answers
1k views
How to find highlighted text from Word file in C# using Microsoft.Office.Interop.Word?
The question would have been simple but an extra clause added to it has proved to be a big headache for me. The catch here is that I do not need all highlighted "words" but "phrases" from the Word ...
0
votes
4answers
123 views
Releasing Excel file after creating and editing it
I am creating an Windows Form application that can generate Excel files from database data. After filling the database into the file i am opening the it and executing a macro, saving the file and then ...
0
votes
1answer
140 views
Word Automation using microsoft word interop for a web application without an Interactive User
I am aware that Microsoft does not recommend using word automation on server side (link to considerations for server-side Automation of Office).
Still I see some advantages of using word automation ...
1
vote
1answer
251 views
Use an Outlook message file (msg) as a template
I wonder if it's possible with the .net framework or Microsoft.Office.Interop.Outlook to load an email message (*.msg), do a search and replace and send it from C#.
It's all happening on the server ...
0
votes
0answers
205 views
How to disable indexing of a specific storage in Outlook 2013?
For earlier versions of Outlook I use solution described in this answer http://stackoverflow.com/a/2716229/1741116 , and it works fine for me.
But in Outlook 2013 intercommunication with Windows ...
-1
votes
1answer
151 views
Word Interop - Read lines in a paragraph [closed]
Is there a way to loop through or read the lines within a paragraph using the Word.Interop library or any other means with C#?
0
votes
1answer
169 views
Send Outlook MailItem even when Outlook is Closed
I have a .NET application which allows users to click a button that will launch a new pre-populated message in Outlook. This works great for the most part, with one minor exception. If the user does ...
0
votes
0answers
63 views
Converting Word inline pictures to canvases using c#/interop
I am working with MS Word 2007 documents automatically generated by a 3rd-party program. The documents contain many inline pictures (WdInlineShapeType.wdInlineShapePicture). If I right-click on a ...
0
votes
1answer
167 views
Create chart in excel second sheet
I am writing a C# Interop code to create report in excel with chart in 2nd sheet.
I am able create chart, but it is coming in first sheet. Please help get the same in second sheet. My code is here.
...
1
vote
0answers
131 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,
...
4
votes
1answer
72 views
Error while running via virtual directory using Office Interop
I have used Office Inter op library for converting office docs to PDF. I am getting the PDF well if i run through Visual Studio, but i am getting the following error while running via virtual ...
0
votes
1answer
162 views
Disable auto numbering list when inserting paragraph
I have word document with numbered list.
Static text 1.
Bookmarked item.
Static text 3.
One of those items is bookmarked and I need to replace the bookmark with text that consists of several ...
0
votes
1answer
278 views
can't find Microsoft.Office.Interop assemblies in VS2012
I can't find Microsoft.Office.Interop assemblies in VS2012. I download assemblies from here, but after installing I don't find assemblies. Then I try install Interop assemblies for Office 2007, but I ...
5
votes
2answers
2k views
Copy text from word file to a new word
I am reading the text from word file and replace some text from the readed text.
var wordApp = new Microsoft.Office.Interop.Word.Application();
object file = path;
object nullobj = ...
0
votes
0answers
83 views
How to programmatically invoke an action during presentation in powerpoint?
I want just invoke next animation in presentation mode, just simulate pressing mouse click or enter key from my application. I can't find any way to do this using Microsoft.Interop.PowerPoint.
1
vote
1answer
267 views
Excel Interop get width in pixels of text inside cell
I have a wide merged cell showing the title of the sheet. I also have a colored Textbox that I would like to position immediately to the right of the text in the merged cell.
The width of the title ...
0
votes
1answer
134 views
How to get the ids of selected slides
I need the ids of the slides that the user has selected in the left pane.
In the image below it would be 1 and 3.
Is there a method I can use or do I need to loop through all slides and check some ...
2
votes
2answers
465 views
How to set the file name of a word document without saving it from c# and automation
I create word documents via automation and mailmerge with office Interop from c# (.net4). The merge works well and the user receives the created document as he desires. So far all is well.
The client ...
6
votes
3answers
560 views
Communicating between C# and VBA
At the request of my boss I created a small set of scripts that are used to periodically monitor the status of certain devices and processes. This info is subsequently processed using a relatively ...
0
votes
0answers
55 views
Can I use Microsoft Office Interop in Visual Web Developer Express 2010?
We are developing an application where we want to convert *.rtf file to *.pdf file.
Our R&D machine has Visual Studio 2010 Ultimate edition installed where we have successfully able to convert ...
1
vote
1answer
82 views
Prevent Office “Add Comment” button in Review ribbon
We have a custom add-in ribbon that I maintain (that's not a COM shared 'extensibility' add-in) that is using comments and track changes functionality (e.g. there are several buttons related to ...
0
votes
1answer
450 views
System.Runtime.InteropServices.COMException (0x80010108) when creating an instance of Excel in vb.net 3.5
So, I have a program that launches an instance of Excel. It works on my machine as well as the machines of 2 others, but when my project leader tries it, he gets the following error:
...
1
vote
0answers
123 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 ...
2
votes
2answers
318 views
OpenSharedItem with Outlook interop throws odd exception with Office 2003, works with Office 2008
I'm using the Office interop API to open a .msg file saved from outlook, and to then show a reply window to allow the user to reply to it.
When running Office 2003, the OpenSharedItem(pathToMSGFile); ...
3
votes
1answer
799 views
Opening an Excel/Word file from FileStream (or similar)
I'm using C#, .NET 4.0 and the office interop library to read the contents of the file.
I'm reading the office files from BLOBs, so I'm wondering if there's a way to directly input the filestream ...
0
votes
1answer
71 views
Prohibit or at least detect Excel shape movement
I am trying to build a small app that interops with Micrososft Excel (2007 if it matters). My app would launch and connect to an instance of Excel and place (programatically) one or more shapes on a ...
1
vote
1answer
1k views
Using selection and ranges in word interop
How do ranges and selections work?
If you insert something at the top of the page through a range, is that overridden by inserting something with selection? Does selection affect ranges?
I'm having ...
1
vote
1answer
2k 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. ...
5
votes
2answers
572 views
Word 2007 throws an exception for interop code that manipulates shapes but works fine in Word 2010
I'm having big problems with a code that should add watermark pictures (used as stationery) to a document before saving it as PDF. Inserting the picture to all relevant headers is no problem. But as ...
1
vote
1answer
727 views
MS Word Document Before Close event won't cancel
I have an event hooked up to the DocumentBeforeClose event for a Microsoft Word document in C#.
this.Application.DocumentBeforeClose +=
new ...
0
votes
2answers
136 views
Highlighting a link which contains a specific word using c#
I am extracting html from a website and is writing the output html to a word document using c#. I have completed this by using httpwerequest and by html parsing. My final step is to highlight a ...
10
votes
2answers
191 views
Outlook interop PrintOut document name
We use Outlook interop method MailItem.PrintOut() to print a mail message from Outlook.
It is always printed with name "Microsoft Outlook - Memo Style".
"Memo Style" here is a print style which ...
0
votes
1answer
641 views
C# Word Automation : Replace picture with Text
I am programming a software and it requires images to be replaced with either images or text.
I found some code to replace images with images it works fine.
I want to tweak this code so that i can ...

