Questions tagged [word-2003]

Microsoft Word 2003 is a commercial document editing program used for creating richly formatted documents for printing and distribution.

Microsoft Word 2003 is a commercial document editing program used for creating richly formatted documents for printing and distribution.

It is the last version to feature the classic toolbar menu interface. Starting with the next version (2007), Microsoft introduced the Ribbon UI.

This tag should be used to indicate your version of Word when posting a question. You should also tag your question if asking about VBA usage in Word 2003.

Related Tags:

Links:

63 questions
8
votes
7 answers

XML editor like Word 2003

I search an XML Editor focus on text annotation like Word 2003 (Screenshot), where xml tag are inline, and where you could select text and suround it with tag in one click.
ptitpoulpe
  • 684
  • 4
  • 17
6
votes
2 answers

How to discover what codepage to use when converting RTF hex literals to Unicode

I'm parsing RTF 1.5+ files generated by Word 2003+ that may have content from other languages. This content is usually encoded as hex literals (\'xx). I would like to convert these literals to unicode values. I know my document's code page by…
Malcolm
  • 5,125
  • 10
  • 52
  • 75
5
votes
2 answers

Word interop - how to close one Word window without closing all of them?

I'm using Microsoft Word Primary Interop Assemblies to slave MS Word. My application opens up its own Word window (using an instance of Microsoft.Office.Interop.Word.Application). After the app does its thing, I want to close the Word window that…
RationalGeek
  • 9,425
  • 11
  • 62
  • 90
4
votes
1 answer

Word BuiltInDocumentProperties don't change

I have a macro in Word 2003 that applies the property fields of the open document to all the .doc's in the same folder. The code works once. If I create a folder, create three new documents in that folder, open of the documents and run the macro, it…
Natzely
  • 706
  • 2
  • 8
  • 27
4
votes
2 answers

Adding a base64 encoded image to Microsoft Word document

I want to add an image to my Word document which should be added as a base64 encoded image. I have a jpeg. How can I add it to my Word document as a base64 encoded data? I did some research and got to know that there is this site which converts an…
harsh
  • 2,399
  • 9
  • 29
  • 47
3
votes
2 answers

How to modify a table in word with VBA

I have tables that I am creating, and I want to be able to modify them through the code in the VBA. What I need to do to the tables is merge and resize some cells and also add text to some of the cells.
mark
  • 371
  • 2
  • 6
  • 10
3
votes
1 answer

jump to another page in word with visual basic

I am working with visual basic now for the first time in word 2003. I want to know if there is a way to jump to another pagenumber. I have a checkbox and if that checkbox is true it has to redirect me to let say pagenumber 5. I know how to find out…
RvA
  • 43
  • 1
  • 1
  • 3
3
votes
1 answer

Word 2003 VBA - How do you disable 'Word has insufficient memory'' warning

I am running Word 2003. I have a Word Document, from which I run a macro that opens other Word Documents and preforms tasks on them before saving and closing them. Because of the number of changes I keep hitting the 'Word has insufficent memory. You…
Chris
  • 5,516
  • 1
  • 26
  • 30
2
votes
1 answer

Finding Uppercase Letters including small brackets ()

I want to Find Four UPPERCASE/CAPITAL Letters which must include small brackets (). For example (ABCD) Following code work fine with letters but it does not highlight brackets. I think it is not finding brackets. Sub FindUppercaseLetter() …
VBAbyMBA
  • 806
  • 2
  • 12
  • 30
2
votes
2 answers

turning off the squiggly lines for code

How do I turn off the red and green lines that appear under the grammer and spelling errors??
Justin
  • 4,461
  • 22
  • 87
  • 152
2
votes
2 answers

disable "you copied a large amount of data onto the clipboard" warning in word 2003

This code-snippet (from VB6) starts an Word 2003 application and adds a new document: Dim WithEvents wApp As Word.Application Dim WithEvents wDoc As Document Set wApp = New Application wApp.DisplayAlerts = wdAlertsNone Set wDoc =…
user759792
  • 61
  • 7
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

Setting language, text direction and alignment in word document created by visual basic in excel

I've made an excel visual basic script that takes data from an excel sheet, and produces a paragraph in a word sheet for each row. The default language for the document is Hebrew, with text aligned right and direction right to left. For one (the…
Ernst
  • 103
  • 1
  • 3
  • 8
1
vote
2 answers

Updating distributed Word VBA macros - is it possible, how would you do it?

I have a VBA macro which runs in Word 2003. It is one module and the code attached to a userform, and it goes to about 30 client sites. When I first rolled this out I sent someone round to each site to place a .dot template in the Word Startup…
Saul
  • 1,387
  • 5
  • 23
  • 45
1
vote
1 answer

Scroll to view buttons where there are a varying number of buttons

I have selected a Sentence. 1) The sentence can vary. 2) I have split each word of the sentence. The code below creates a list of Word array from Selection. Sub Seperate_Words() Dim WrdArray() As String WrdArray() = Split(Selection) …
VBAbyMBA
  • 806
  • 2
  • 12
  • 30
1
2 3 4 5