Related to physical offices. Do *not* use this tag for questions related to Microsoft Office or OpenOffice.org; use [tag:ms-office] or [tag:openoffice.org] instead, respectively.

learn more… | top users | synonyms

3
votes
1answer
660 views

asp.net web service using office 2010 COM

I am writing a web service and would like to change the .docx or .doc to .xps. I'm using office com to help me to save as .xps format as following: [WebMethod] public string ...
2
votes
3answers
15k views

Diagnosing an OLEDB exception when Quering Excel 2010

To query an excel sheet via SQL, I used to use either: Dim excelConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strPath + ";Extended Properties=""Excel ...
4
votes
2answers
2k views

Reading .doc file without launching MSWord

I'm trying to open .doc file and read its content. But i can't find any way how to do this without launching MSWord. Now I have following code: Microsoft.Office.Interop.Word.Application app = ...
2
votes
2answers
1k views

“Class not registered” error when creating a new Excel application in C#

I am running a console application in MS Visual Studio 2010 in Windows 7 and I get the following error message when trying to create a new Excel application using a standard C# command: The full ...
1
vote
1answer
407 views

.net component for previewing office documents

I have a CMS system written in ASP.NET which among other things allows users to upload documents, typically PDF, powerpoint, Word etc. I am investigating how to implement a preview function so that ...
1
vote
3answers
2k views

Read/write Excel 2007 password-protected documents

What method does Office 2007 use for encryption (when choosing Encrypt and setting a password from Office menu)? My C# app needs to create and read encrypted Excel 2007 files (.xlsx). It is important ...
0
votes
3answers
4k views

Query excel sheet in c#

I want to read Excel file in c# using following code string excelFileName = "Book2.xls"; string excelConnectString = @"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=Book2.xls;Extended ...
12
votes
7answers
618 views

Osmotic communication -vs- closed-off offices?

What are people's experiences with osmotic communication (as recommended by Alastair Cockburn as part of Crystal Clear) as opposed to giving developers individual offices with doors (as recommended by ...
4
votes
4answers
3k views

How can I view Microsoft Office documents in a WinForms application using the installed version of Office?

I'm writing a feature to allow users to quickly skim through and review a number of word documents fairly quickly. All users will have either Office 2003, 2007 or 2010 installed (this is required for ...
3
votes
1answer
668 views

Accessing Ribbon Controls Programatically in an XML Ribbon

For programming Office Add-ins using C# 4.0, Microsoft provides two different ways of creating and/or modifying the Ribbon interface: you can use the Ribbon Designer or define the Ribbon's layout in ...
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 ...
12
votes
3answers
5k views

What are “Microsoft Office Protocol Discovery” and “OfficeLiveConnector” and why do they access invalid URLs?

I monitor 404s on my sites closely which helps me detect broken links and hacking attempts but I've recently been getting log spam from browsers with these strings in the User Agent. They seem to be ...
5
votes
3answers
863 views

Proper disposal of COM interop objects in C# particularly MS Office applications

I am developing an application that relies heavily on multiple Microsoft Office products including Access, Excel, Word, PowerPoint and Outlook among others. While doing research on interop I found out ...
4
votes
3answers
2k views

Is there a way to access a Ribbon (XML) at run time?

I'm working on a Word 2007 app-level add-in. So far, I haven't experienced major obstacles except for converting the add-in's Ribbon interface to XML. I have to use Ribbon XML because the feature I'm ...
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
2k views

Excel VBA Workbook.ChangeFileAccess problem

I'm having trouble with changing the file access mode on Excel workbooks using VBA. I am using Office 2010. I want to be able to alternate between read only and read write mode as appropriate. ...
1
vote
2answers
1k views

C# free Doc 2 PDF solution

would anyone suggest a free solution to programmatically convert Office documents (mostly .doc) to PDF in the form of a .NET library or a command-line application i can call from my program? Thanks ...
3
votes
1answer
1k views

How to position Outlook 2007/2010 VSTO Context Menu Button?

I have an Outlook 2007/2010 add-in where I have successfully added a context-menu button to the explorer. The button itself is displayed correctly and working fine however I am unable to position it ...
3
votes
1answer
1k views

Access Ribbon Elements Programatically in XML Ribbon

This seems to have been asked several times on here with no real answer: Accessing Ribbon Controls Programatically in an XML Ribbon Office Ribbon: How to access a control when the ribbon was created ...
2
votes
5answers
132 views

this custom validation is not working but I dont know whats happenning

I know excel "programming" is not very popular among fellow programmers, however I've been struggling to get this right and management is on my neck.. I have the custom validation on excel : ...
2
votes
3answers
324 views

How to retrieve author of a office file in python?

Title explains the problem, there are doc and docs files that which I want to retrieive their author information so that I can restructure my files. os.stat returns only size and datetime, real-file ...
2
votes
2answers
2k views

Exporting data to excel file C#.NET

I want to export the data from a access database to excel file. But i got Exception from HRESULT: 0x800A03EC error. Here is a bit of code that i have written, using System; using System.Data; using ...
2
votes
1answer
3k views

Using 32bit COM addin under MS Office 64 bit

I am struggling to apply an existing 32bit COM addin to 64bit Microsoft Word 2010. To make the addin visible to Word, I have used the dllsurrogate-method, as it described here. The problem is that ...
1
vote
1answer
816 views

How many ways to operate MS word document in C#.NET

I wish to know is there someother way that allow us to operate MS word in C#.NET platform. Or that we can only use Office.Interop to achieve that? I am kind of confused to that. Can you explain some ...
1
vote
1answer
6k views

Counting emails in outlook by date

I Have the following code to count the number of emails in a outlook folder. Sub HowManyEmails() Dim objOutlook As Object, objnSpace As Object, objFolder As Object Dim EmailCount As Integer Set ...
1
vote
1answer
1k views

Extract OLE object data in Microsoft Office without OLE application

Is it possible to extract the content of an embedded OLE object in Microsoft Office using VBA/VSTO? I am talking about a situation where the application with which the OLE object was created is not ...
1
vote
4answers
1k views

Localize Office add-in based on Office language pack in use rather than Windows' current language

I'm trying to localize my office add-in, I've read through many docs and tutorials on how to do this, but they all teach on how to localize it based on what the current Windows language, not ...
1
vote
1answer
331 views

Office Ribbon: How to access a control when the ribbon was created using XML

I used a ribbon XML file to create a custom tab which contains a togglebutton. The button is meant to toggle the visibility of a custom task pane and works great. The problem is that when the user ...
1
vote
1answer
1k views

Windows installer for office add in

I created s set up project using this link. The addin was not getting installed. When I tried to add it through add ins in excel it said "xxx is not a valid office addin". This error is because the ...
1
vote
1answer
287 views

Put multiple Word document windows into the same parent window

This addin adds 'document tabs' into Microsoft Word, I wonder how it's done? As we know, according to Word's 'Object Model' API, each Word document is associated with a standalone Word window, how can ...
1
vote
1answer
2k views

how can I manually install the Office 2007 PIAs on a computer with no Office installed?

I have seen a few other questions regarding the Office 2007 PIAs, in particular: Can you install Office 2007 PIA's without office? (3) Is Office 2007 PIA deployment possible without Office ...
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
607 views

C# Microsoft.Office.Interop

I need to reference this library, however when I right click and go to add references, I cant find it in the list. I have office 2007 installed; C# Microsoft.Office.Interop Thanks
0
votes
0answers
46 views

c# interop.excel no check compatibility on save [duplicate]

Possible Duplicate: how to disable compatibility check in excel while automating through c# I use the Microsoft.Office.Interop.Excel; I try to save a XLS with compatibilty 97-2003 using ...
0
votes
1answer
1k views

Programatically get path of open Excel/Word-document

Is there any way to get the path of documents currently open in Microsoft Word and Microsoft Excel? I know how I can fetch the PID and the window handle for the running instance of Excel or Word, but ...
0
votes
1answer
557 views

Custom Backstage View Tab like standard tab FileNew

I want to design own custom backstage view tab that has desing like standard tab FileNew. How can I (and can I at all) use such tab elements like scrollable button set or large borderless button with ...
0
votes
1answer
474 views

Outlook Com Add-In Deployment & Extensibility Issue

I'm a developer writing an add-in for Outlook2003/2007 using C#, Visual Studio 2005. I'm also using the COM add-in wizard (not using VSTO, I have a Connect.cs). The program successfully runs with ...
0
votes
2answers
2k views

How to edit DsoFramer 1.3?

I'm using DsoFramer 1.3 in my project to hold Excel (2007) documents. But it have a big problem, that is: All the Excel documents opened by DsoFramer share only one Excel process. The result is when ...