Questions tagged [office-2003]

Questions about Office 2003 should relate to a specific programming problem. Add the tag for the programming language you are using to target an Office 2003 program, as well as the tag of the specific Office 2003 program.

Questions about Office 2003 should relate to a specific programming problem. Add the tag for the programming language you are using to target an Office 2003 program, as well as the tag of the specific Office 2003 program.

Microsoft Office 2003 is a suite of programs for office productivity.

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

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

Each one comes with a different suite of programs.

Related Tags:

82 questions
2
votes
1 answer

recognize an onclose event with OleVariant?

I´m using a OleAutomation with Excel := CreateOleObject('Excel.Application'); to use the functions Excel.Replace and Excel.SaveAs. These functions are essential in my problem and I cannot leave them out. On the other hand I have to use an OleVariant…
KHahn
  • 63
  • 6
1
vote
3 answers

Fonts look different when inserting Excel table in a Word document

I am trying to use a VBA macro (for Office 2003) to do the following: In Excel, the user will select a range of cells In Word the user will call the macro (via a button or shortcut) to insert the selected Excel range as an embedded object The code…
essamSALAH
  • 641
  • 2
  • 8
  • 15
1
vote
0 answers

Visual Studio 2010 and Office 2003 PIA: is that possible?

I'm about to start porting a bunch of .NET apps to Visual Studio 2010 as some .NET 4 features are required in the apps. The resulting apps need to be able to call Office 2003, Office 2007 and Office 2010 interop assemblies. What is a good way to…
1
vote
3 answers

Word Automation Backwards Compatibility With Word 2003

I am working on some Word automation code in C#. I have Word 2007 installed on my own machine (Version 12.0.0.0 of Microsoft.Office.Interop.Word.dll) but I would like to support Word 2003 as a minimum (Version 11.0.0.0 of…
Alan Spark
  • 8,152
  • 8
  • 56
  • 91
1
vote
1 answer

how to install Extensibility.dll for office 2003?

I have addin for office 2003 that created with IDTExtensibility2 com interface and ofice 2003 PIAs. I am able to run the addin on development machine, but cannot cretae installer. Ob client machine with office 2003 and 2003 PIAs Excel unable to load…
digor_ua
  • 572
  • 2
  • 7
  • 20
1
vote
2 answers

Visual Studio Tools for Office breaks VB6

UPDATE 3: This happens when I have saved the vb6 script, close word, start word, then run the template as you would normally run a template, i.e. strTemplate becomes Normal.doc. Then as soon as I go back to the original template which …
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
1
vote
0 answers

Installing version 11 PIA on a Visual Studio 2008 / Office 2007 system?

The client has development systems with Office 2007 (version 12) and Visual Studio 2008. However, the software needs to run on Office 2003 (version 11) systems too. How do I install the correct Primary Interop Assemblies on the development system? I…
1
vote
2 answers

Excel 2003 Combobox/Validation Data List Values and Labels

I'm unable to find out this information: Is it possible to show labels in these two type of lists rather than the real values ? of course when a label is selected, the value of the cell or the combobox (as a Form control) gets the real…
CoolStraw
  • 5,282
  • 8
  • 42
  • 64
1
vote
1 answer

VBA language reference for Office 2004

Office 2003 has such things as the Office 2003 Editions: Word VBA Language Reference. Is there such documentation for Office 2004 or is it assumed that the Office 2003 documentation covers Office 2004 adequately?
Charles Stewart
  • 11,661
  • 4
  • 46
  • 85
1
vote
2 answers

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 files but getting lot of problems.I have posted…
Shekhar
  • 11,438
  • 36
  • 130
  • 186
1
vote
1 answer

Creating a Word 2003 Add-In Toolbar

I have been perusing the internet in search of the best way to accomplish this, but have had no luck. If someone here has experience with Office add-ins, I would really appreciate any help, I'm not asking for a solution by any means, just assistance…
ObjectiveCat
  • 312
  • 1
  • 4
  • 12
1
vote
1 answer

How to read text that is present in text box of MS word document?

I have an word document which I want to convert to text (.txt) file programmatically. I am using C# for this. I am able to read paragraphs and tables from word document and convert them to text. There are some textboxes in the word document and…
Shekhar
  • 11,438
  • 36
  • 130
  • 186
1
vote
1 answer

Conditional VBA code for PowerPoint 2003 & 2007/2010/2013 object model compatibility

I am trying to write a single code module that will work with PowerPoint 2003 and all newer versions in relation to the colour model changes that were introduced with 2007 (theme versus scheme in the VBA object model) but this issue could rise with…
1
vote
1 answer

Is there a way to set search settings for ms office (2003) for non English charectars

Say there is a spreadsheet or table in MS access which contains non English characters (diacritics) such as à, á, â, ã, ä, å, æ, ç, è, é, ê, ë Since this system is used by English speakers, the end-user, when searching for values cannot guess…
Tzury Bar Yochay
  • 8,798
  • 5
  • 49
  • 73
1
vote
0 answers

Turn off Replace "Straight quotes" with "smart quotes" programmatically in office 2003

Is there a way to turn off Replace "Straight quotes" with "smart quotes" in Microsoft Office 2003 programmatically? I am using Microsoft.Office.Interop. Ok, solved! There are two options: Application.Options.AutoFormatAsYouTypeReplaceQuotes…