Questions tagged [ms-office]

Microsoft Office is a proprietary collection of desktop applications intended to be used by knowledge workers for Windows and Macintosh computers. If your question relates to a specific desktop application use that application tag instead.

Microsoft Office is a proprietary collection of desktop applications intended to be used by knowledge workers.

It comes in several different software bundles and is available for Windows and Macintosh computers. Current version as of this writing is Office 2016 for Windows and Office 2016 for Mac. Microsoft has also unveiled Office Web Apps to compete with similar applications, for hosting Office programs and documents on remote servers.

It can include any/all of the following:

  • Access - relational database
  • Excel - spreadsheet / calculation engine
  • InfoPath - creating forms
  • Lync - communications
  • OneNote - note-taking
  • Outlook - email / personal information manager (PIM)
  • PowerPoint - creating presentations / slideshows
  • Project - project management
  • Publisher - flyers, newsletters and other printed materials
  • SharePoint - sharing group content
  • Visio - diagramming
  • Word - word-processing software

There are additional lesser-known Office programs such as Business Contact Manager which are not covered in this wiki because they are typically addons to another program.

Typically you would use one of the program-specific tags above when tagging your question, depending on which program you are using.

Links:

Getting Started with Office 2016 - Getting Started with Office 2013 - Getting Started with Office 2010

5901 questions
2
votes
1 answer

Application.ActiveWorkbook is null in Excel Addin

I am writing an Excel Add-in. Following is my code private void ThisAddInStartup(object sender, EventArgs e) { Excel.Sheets sheets = Application.ActiveWorkbook.Sheets; _worksheet = (from Excel.Worksheet sheet in sheets where…
Sandy
  • 11,332
  • 27
  • 76
  • 122
2
votes
2 answers

Retrieving all Outlook messages in same thread

We are building sort of Communication Management System atop Outlook. One of the important task we wish to achieve is to retrieve all the messages (.msg files??) in the same thread along with their attachments and put them in the same folder inside…
Mahesha999
  • 22,693
  • 29
  • 116
  • 189
2
votes
1 answer

Outlook Interop c# sort items not working

I have stumbled upon a problem where the Outlook items table sort method does not give desired results - despite the ascending or descending the method GetLast() always returns the same email item. Code as follows: Application olApp = new…
VidasV
  • 4,335
  • 1
  • 28
  • 50
2
votes
0 answers

Converting ActiveX controls into windows form controls

I have an excel sheet with activeX controls. Since ActiveX controls do not function from outside of trusted locations in versions MS Office 2007 and higher, I am supposed to convert the controls into Windows form controls. My excel sheet is password…
user1175126
  • 179
  • 1
  • 9
  • 21
2
votes
1 answer

Trying to Use AppleScript to Convert .xls and .xlsx to .txt (Tab Delimited), Needs Fixing

I copied this from an answer I got from another thread. I am trying to convert ~300 .xls and .xlsx files to tab delimited. They are all in the same folder. If anyone knows a better way, please let me know. property type_list : {"XLS6", "XLS7",…
Jarrett G.
  • 354
  • 3
  • 16
2
votes
1 answer

Developing Microsoft Word add-in for MAC

I have developed a small add-in for Microsoft Word 2011 in VB.net using VS2012. I would like to port the functionality to Mac users. Can you tell me how can it be done? I have already read these posts: Developing Word add-ins for Macintosh VB…
gawi
  • 2,843
  • 4
  • 29
  • 44
2
votes
1 answer

What's a good online reference for manipulating Office documents via ActiveX?

I am looking for a reference that covers using ActiveX to open and manipulate Excel (and possibly Word) documents. I'd prefer an online reference but book suggestions are helpful too.
Joe Skora
  • 14,735
  • 5
  • 36
  • 39
2
votes
1 answer

Office 2013 and 3rd party integration

As some of you may or may not know, Microsoft is making click-to-run much more common for all Office products with the 2013 version. If you write software that uses or integrates with Outlook, Word, or Excel you are probably used to using their…
SlashDevSlashGnoll
  • 2,141
  • 1
  • 12
  • 15
2
votes
1 answer

How to detect installed version of MS Office within javascript?

I need to know if MS Office 2013 installed on user machine to use specific way of opening office documents for editing from website. Maybe there are some plugins/activex specific for Office 2013? I tried to find out how Sharepoint does this task but…
Taras Kozubski
  • 1,854
  • 1
  • 20
  • 33
2
votes
1 answer

Using Office Web Apps, Can you open a document via webdav?

We're in the process of converting a legacy desktop application into a web enabled equivalent. However one feature is causing difficulty, editing MS Word documents. Current proposed solution is publishing the DOC and DOCX files via WebDAV and using…
RoboJ1M
  • 1,590
  • 2
  • 27
  • 34
2
votes
1 answer

How to create a labeled incremental reference in MS Word?

I want to do cross-references manually in microsoft word 2010 (similarly to latex \label - \ref or \cite - \bibliography). I found that the Field function does almost excactly what I want (the syntax is a bit weird). If I type the following to the…
Juha
  • 2,053
  • 23
  • 44
2
votes
1 answer

Using Microsoft.Office in MS VS Express 2012

I'm currently trying to use the Microsoft.Office.Interop.(...) in MS VS Express 2012 for C#, but I can't seem to find any way to install it. Does MS VS 2010 Tools for Office Runtime have anything to do with this? Any help to get me started will be…
DoTheGenes
  • 197
  • 2
  • 4
  • 22
2
votes
1 answer

Office VBA macro is being compiled?

I am trying to figure out if the VBA code running in microsoft office is being compiled (to some intermediate language like MSIL) or is it an interpreter based language interpreting the VBA itself. I tried to find a straight answer on the net and…
TCS
  • 5,790
  • 5
  • 54
  • 86
2
votes
4 answers

Convert Microsoft Office documents to Text

I'm looking for a library (or command line tool) to turn MS Office documents into either plaintext or HTML (for conversion to text). It must run on Linux (not via Wine!). I found antiword, but the last release was 2005, so it won't read the new…
RickMeasham
  • 1,658
  • 3
  • 14
  • 24
2
votes
2 answers

Microsoft Office Interop Timing Out

I am working with a C# program which utilises Microsoft Office Interop allowing you to essentially programatically use Microsoft Word, Excel and PowerPoint. One unfortunate aspect I've encountered is that on occasion, the program will raise a…
deed02392
  • 4,799
  • 2
  • 31
  • 48