Tagged Questions
0
votes
0answers
45 views
MODI with c# not recognizing a specific part of a image because of words written by pens
Some specific part of the image is not correctly recognized because MODI assumes that the part of the image, because of something written by pens, is a picture (like a wordart).
If i cut off the ...
1
vote
0answers
186 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
1answer
117 views
Check field errors in word references with VSTO
How can I check if some fields in my word have errors? I have a large document that contains many references to other chapters or images. When those chapters or images are missing in the document, the ...
0
votes
1answer
260 views
How do you set a “No fill” Fill on a autoshape with the PowerPoint 2010 interop
I want to know how to set a newly added rectangle to have "No Fill" with the PowerPoint 2010 interop.
this is the code I have right now...
PowerPoint.Presentation presentation = ...
2
votes
0answers
136 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
3answers
489 views
Is it necessary for the build machine to have Microsoft Office 2007 installed?
Our app added functionality to allow users to import certain information from an excel spreadsheet (all users will have Office 2007 already).
The development machine has Office 2007 and the developer ...
0
votes
1answer
137 views
My Word office addin doesn't work?
I have created an office addin for Word 2010 targeting .net 4 and this should apparently work in office 2007.
I have created the installer per this article with the exception that I include a dll in ...
0
votes
3answers
925 views
Word Interop Issue with ASP.NET
About Microsoft.Office.Interop.Word.
I installed the PIA and Microsoft Office 2010 in my web server, but I can't generate a .doc when I run the application published in my web server. When I run my ...
4
votes
1answer
264 views
Add Reference dynamically to my project
I am Developping an Add-In for Microsoft Word.
In my Add-In i am using a reference to file "Microsoft.Office.Interop.Word.dll" so i can use word objects.
In case the development machine has word 2007 ...
1
vote
1answer
786 views
Primary Interop Assemblies (PIA) for Office 2007 - 32/64bit?
Are the Primary Interop Assemblies (PIA) for Office 2007 compatible with both 32 bit and 64 bit versions of Windows?
Are they compiled with a target of any processor?
Also, is there a way I can ...
2
votes
1answer
2k views
How to access an already opened Excel file in C#?
I have an excel workbook opened via double-clicking it in windows explorer but cannot access it in code
Excel.Application xlApp = (Application)Marshal.GetActiveObject("Excel.Application");
...
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 ...
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
1
vote
1answer
679 views
How can I open a password protected PPT & PDF
I want to check if a PPT file is passsword protected. I am using Office interops. I found that Presentations.Open function doesn't accept a password as parameter.
Is there any other way to check a ...
1
vote
2answers
2k views
Open word 2003 (doc) file using open xml file format API
I would like to know whether its possible to open Open word 2003 (doc) file using open xml file format API? like office 2007.
I have one windows service through which I am trying to open and edit doc ...
1
vote
1answer
2k views
“There is insufficient memory. Save the document now.” error while opening word 2003 document
I have developed one windows service through which I am trying to open an word document. But when service tries to open document, it logs following error "There is insufficient memory. Save the ...
0
votes
1answer
338 views
What is the most elegant solution for generating PowerPoint slides online? [closed]
I would like some advice on the following please. We have an ASP.net site where we need to generate PowerPoint slides of the data. The slides will need to include charts and tables.
I have come ...