Questions tagged [office-2013]

Microsoft Office 2013 (also called Office 2013 and codenamed Office 15) is a group of office productivity software programs for the Microsoft Windows operating system, and the successor to Microsoft Office 2010.

Microsoft Office 2013 (also called Office 2013 and codenamed Office 15) is a group of office productivity software programs for the Microsoft Windows operating system, and the successor to Microsoft Office 2010. Office 2013 will be available as part of Windows RT for ARM processors, and separately for the IA-32 and x86-64 versions of Windows.

Source: Wikipedia (Microsoft Office 2013)

228 questions
6
votes
3 answers

Access 2013 breaks UniqueTable functionality

We have a fairly large Access front-end application that has been running on Access 2010. It makes extensive use of ADO recordsets for accessing data on our SQL servers, and frequently uses the UniqueTable form property. We are looking to move the…
Corey
  • 15,524
  • 2
  • 35
  • 68
6
votes
1 answer

EPPlus: How to style merged cells?

Edit: These examples should all work. My problem was actually unrelated to epplus and this code as well as the marked answer works for styling merged cells. I'd like to be able to style a merged cell, however, my attempts to style it have no effect.…
Jakotheshadows
  • 1,485
  • 2
  • 13
  • 24
5
votes
1 answer

How can i do office interop on Click to Run installations?

I have a .net application that heavily interops (today with excel, tommorrow with the whole office suite) with office and i'm getting pretty worried about 2013 being CTR only (except for volume licenses). I followed the Google sync fiasco with 2013…
Ronan Thibaudau
  • 3,413
  • 3
  • 29
  • 78
5
votes
1 answer

How to migrate an add-in to Office 2013?

I've found this link, the bottom line of which foretells that what I've been using this far to create Office add-ins (i.e. good, old, nice C# code) is to be entirely exchanged for JavaScript. For instance, we've got a solution that puts a set of…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
5
votes
1 answer

Debugging JavaScript API for Office

Clearly I've been spoiled with Chrome and its developers tools but I'm struggling to formulate a painless debugging strategy while developing Office 2013 apps using the new JavaScript API for Office. Visual Studio 2012 helps by providing the script…
DazWilkin
  • 32,823
  • 5
  • 47
  • 88
4
votes
1 answer

excel vba HPageBreak.Count not working when macro called from Auto_Open

I am working on a project wherein I read a CSV file, format data in a temporary sheet (OutputSheet), copy-paste the formatted data on a sheet to be printed (PrintSheet), save the PrintSheet as PDF after inserting manual page breaks so that a block…
NP3
  • 652
  • 8
  • 21
4
votes
2 answers

How to know which version of Office 2013 is installed in my server; 32 or 64 bit?

I have MS Office on my server. How can I tell whether it's the 32 or 64 bit version of Office 2013 that is installed on my server? I need to obtain this information by using C# Code.
Ardalan Shahgholi
  • 11,967
  • 21
  • 108
  • 144
4
votes
1 answer

Blinking effect missing

About one year ago I developed an app that, among other things, had to select parts of word documents and let them blink... just one line like this Selection.Range.Font.Animation = MSWord.WdAnimation.wdAnimationBlinkingBackground; The app worked…
Marco
  • 56,740
  • 14
  • 129
  • 152
4
votes
1 answer

XML declaration in Office 2013

I have the follow VBA code to work with XML using Office 2010: Public xmlDOM As DOMDocument Public Sub setXML(xmlFileName As String) Set xmlDOM = CreateObject("MSXML.DOMDocument") xmlDOM.async = False xmlDOM.Load xmlFileName End…
Braulio
  • 535
  • 1
  • 8
  • 18
4
votes
2 answers

Can't find the list of most (all?) tab names for the ribbon in Office

After some heavy googling, I've concluded that I'm unable to locate information on the id names for the different components of the ribbon in Office. For instance, even though the following XML works, I need to hide the add-in error display due to…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
4
votes
3 answers

Python Makepy with Office 2013 (office 15)

I'm using python and excel with office 2010 and have no problems there. I used python's makepy module in order to bind to the txcel com objects. However, on a different computer I've installed office 2013 and when I launched makepy no excel option…
omer bach
  • 2,345
  • 5
  • 30
  • 46
3
votes
1 answer

Microsoft.Office.Interop.Excel not registered DLL

using the Microsoft.Office.Interop.Excel.dll leads to the following error: An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in mscorlib.dll Additional information: Retrieving the COM class factory for…
Jan021981
  • 521
  • 3
  • 28
3
votes
0 answers

Powerpoint VBA Change Font Effect has a reddish color2 for the 3 and next paragraphs

I am trying to script an animation. One of the things I want to do is change the font color. So I wrote this (not including the error handling): Set sld = Application.ActiveWindow.View.Slide For i = 1 To sld.TimeLine.MainSequence.Count …
3
votes
0 answers

Office Web App securing access to documents

I need to build a secure document management web application, which will be accessible from intranet and internet. One of the main requirements is to open all office files within the browser and I've decided to use office web app, because we already…
Gurinder Singh
  • 867
  • 7
  • 9
3
votes
2 answers

Working with office.js using promise pattern

Currently I've started developing some Apps for Office 2013. To develop these apps I'm using office.js which is designed to work with Excel worksheets for example. Most of the APIs are like: document.getSelectedDataAsync(p1, p2,…
mehrandvd
  • 8,806
  • 12
  • 64
  • 111
1
2
3
15 16