Questions tagged [office-2010]

Microsoft Office version 2010 is a suite of programs for office productivity.

Microsoft Office version 2010 is a suite of programs for office productivity.

It comes in a variety of bundles, including but not limited to:

  • Microsoft Office 2010 Home and Student (for academic use)
  • Microsoft Office 2010 Professional
  • Microsoft Office 2010 Standard
  • Microsoft Office 2010 Enterprise

Each one comes with a different suite of programs.

It is expected that questions about Office 2010 relate to a specific programming problem. Use the tag for the programming language you are using to target an Office 2010 program, as well as the tag of the specific Office 2010 program.

Related Tags:

Links:

254 questions
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
4
votes
2 answers

Replace the Outlook 2010 Send-Button?

I'm looking for a solution for the following problem. Can anybody help me out? I need to replace Outlooks Send-button with a dropdown-button like the "Von" (From) button in my screenshot. FYI: The new Send-DropDown button will have three…
4
votes
1 answer

Office add-in ribbon won't go away after debugging

Using Visual Studio 2010 I created an Office 2010 Word add-in project that has a ribbon with a couple of basic controls. I haven't even added code yet. When I debug the project Word launches and that ribbon ("Ribbon 1") is shown. All good so far,…
Keith
  • 20,636
  • 11
  • 84
  • 125
4
votes
3 answers

VBA End-user upgrading Microsoft Office 2007 to 2010 (VBA 6 to VBA7) problems and need for documentation, help, tips. (Enough with keywords)

As typical small-business user, when my laptop broke I HAD to upgrade to Office 2010 (2007 isn’t on market anymore). Now I have a bunch of quick-and-dirty VBA to go with my old worksheets. None of them were programming masterpieces, but those worked…
Mika Hämäläinen
  • 95
  • 1
  • 2
  • 12
4
votes
3 answers

Programatically configure Office 2010 Word Ribbon via VBA

Is it possible to configure a Ribbon (e.g. adding a tab etc.) in Office 2010 programatically via VBA? I.e. by writing VBScript code in a macro. Br. Morten
Maate
  • 1,000
  • 1
  • 6
  • 15
4
votes
2 answers

Excel Addin that works on Excel 2007 and 2010

I'm writing an Excel Addin that should work in both 2007 and 2010. When I create a new project with Visual Studio I need to decide which version I want. I've chosen 2007 before, but since I have 2010 installed I can't debug it. I get an error: You…
Jonas Stawski
  • 6,682
  • 6
  • 61
  • 106
4
votes
1 answer

Using PHP's COM object with Office 2010 (Excel.Application)

I recently coded a script in PHP using the COM object to strip data out of cells in an Excel 2007 spreadsheet into an array. This was all done locally on an XP system with Office 2007. Once I'd enabled the Apache server to interact with the desktop…
Storsey
  • 301
  • 1
  • 3
  • 14
4
votes
3 answers

Office 2003 interop with only Office 2010 installed

We have an application (.NET 2.0) that uses Outlook 2003 features (Microsoft Office 11.0 Object Library). My new computer has Windows 7 and Office 2010 installed, and the references don't work anymore (there's only Office 14 Object Library…
kor_
  • 1,510
  • 1
  • 16
  • 36
4
votes
3 answers

Unable to get the Copy property of the Worksheet class

I'm trying to copy a worksheet from workbook into another using Worksheets.Copy function. However, this seem to be working in only some of the files and for others I get "Unable to get the Copy property of the Worksheet class" error message. I've…
4
votes
1 answer

Set Publisher in Word Options Add-Ins Dialog

I have made an addin for Microsoft Word 2010 Beta using Visual Studio 2010 RTM. When I look at "View and manage Microsoft Office Add-ins" the publisher shows up as None. Would code signing with a Software Publisher Certificate fill in the Publisher…
Doug Ferguson
  • 2,538
  • 2
  • 16
  • 23
4
votes
3 answers

Excel to Tab delimited (.txt) file with special character

I want to export Excel to Tab delimited (.txt) file with special character. I've changethe format to UTF-8, but it still doesnt work. The origin data is like Mädchen and what i got is M?dchen Anyone can help me? Thank you
TrueBlue10
  • 318
  • 2
  • 4
  • 16
4
votes
2 answers

Print certain pages only

I have the following code which works fine: Application.PrintOut FileName:="", Copies:=2 This prints my 10 page document twice. I now want to use the pages option to specify only certain pages to print out: Application.PrintOut FileName:="",…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
4
votes
1 answer

RibbonDropDown losing items

I'm adding items to a RibbonDropDown that is used by the New Email inspector at run time. I add the items on start-up and also refresh the list on demand (when the user presses a button) public void RefreshListNames() { Logger.Log("Refresh Mail…
Ryan
  • 3,924
  • 6
  • 46
  • 69
4
votes
1 answer

VBA MailMerge length > 255

i'm trying to use MailMerge with Word 2010. I have a TAB delimited file database.dat which looks like the following: ID Name Street 1 John FooBar 1 2 Smith FooBar 2 This file is used in Word with the following…
Stefan Profanter
  • 6,458
  • 6
  • 41
  • 73
4
votes
2 answers

Is there a way to use VBA and XML to add a button to the Office 2010 Ribbon depending on a string in the file name?

I have done some quite extensive customisation to the Office 2010 ribbon in Microsoft Word, using a combination of XML, VBA - using the Custom UI Editor. What I'm trying to establish is that if it's possible to add a button to the ribbon based on if…
user1064180
1 2
3
16 17