VBA Mail Merge using multiple data sources and mixture of single item and repeating rows fields
I am newbie to VBA, and would like to know if the following can be done
using VBA with Word.
A word document is to be used as a report template. The users may amend
the "boilerplate text" to their tastes, but not the merge data place
holders (terminology?).
The document is a mixed of single items and repeating row items, as
illustrated by the following example:
OWNER: _THE_OWNER_
ADDRESS: _THE_ADDRESS_
RESIDENTS
NAME DOB GENDER
_THE_NAME_ _THE_DOB_ _THE_GENDER_
(repeated for each database row)
RESIDENCE LAYOUT
ROOM SIZE USAGE HEATED DOUBLE GLAZED
_THE_ROOM_ _THE_SIZE_ _THE_USAGE_ _THE_HEATED_ _THE_DOUBLE_GLAZED_
(repeated for each database row)
INSPECTION NOTES: _THE_INSPECTION_NOTES_
INSPECTED BY: _THE_INSPECTED_BY_
INSPECTION DATE: _THE_INSPECTION_DATE_
All items in relate to a single database row other than those in the
tables marked above as "repeated for each database row".
I cannot use normal Word Mail Merge because I need 3 data sources, 1 for
the single items and one for each table above - I could use mail merge
if I flattened the returned data out to make a single data source, but
that would be well messy and there has to be a neater way.
Having searched the internet for info I have concluded that this can be
done using VBA, but what I need is an example of such a mail merge that
I can use as a proof of concept for input into the design stage.
I am using Office 2000.
Saeed
ng_786 Tag: Inlineshape move-event Tag: 61619
Word 2002 installation problems
I hope this is the appropriate forum for this question. I apologize for the
length of my message but it has been a lengthy battle. I have a Dell
Dimension 8250 computer with Windows XP. For the past several months I have
had difficulty getting my Word 2002 to function properly. It frequently
would not open of partially open and then freeze. The Windows Task Manager
showed that Word was "Not Responding".
I tried using "Detect and Repair in "Help" in Word but Word 2002 still
didn't improve. I opened the Control Panel, clicked on Word 2002 and tried
to repair Word that way but it didn't work. Finally I uninstalled Word 2002
and Microsoft Works 2003 and inserted Disc 1 of the Microsoft Works Suite
2003 that came with my computer and reinstalled them. Microsoft Works 2003
reinstalled ok but Word 2002 did not install properly. I can't find it when
I click on "Start" and "All Programs". Also the Works Task Launcher shows
Word but when I click on it I get the message "The Works Task Launcher cannot
access the task you selected. Files needed to start the program may be
missing, corrupted, or may have been deleted. To retore or replace the
files, reinstall the program, and then try starting the program again."
I've tried to reinstall the program about 3 times now with the same results.
I first tried to custom install Word 2002 by itself and that didn't work. I
then tried to uninstall Microsoft Works Suite 2003 and and Word and then
reinstall both. It shows Word 2002 installing but I can't find it. What am
I doing wrong? Tag: Inlineshape move-event Tag: 61618
Re - Activating the application
Hi All,
Basically i want to ask two questions..
1) In my application, i open the word document, insert some texts at pre
defined book marks and also inserting the shapes and things like that. And
then i make application visible..so, application is visble with complete data
in its document. But at the beginning of that application, some text is
selected..i dont want ant thing to be selected in the document..can you
please suggest me any possibilities..?
my second question is..
2) i keep open the previous document but not in the fore ground and then i
open a new document programatically, again i insert my data in it, and then
call application visble again..but this time..the application or the
document doesn't come in to fore ground. I tried activating the document
also, but it didn't hep me.
Please help me in these two questions..
Thanks in advance. Tag: Inlineshape move-event Tag: 61617
There must be a better way
Hello,
I started out trying to develop a simple test to determine if each word in a
document was numeric, alphanumeric, or plain letter text. The beast just
kept growing. Numeric or non numeric was simple. It got complicated with
the alphanumeric text as I couldn't find a simple comparison. I tried a
Like statement "[A-z], but apparently there is no {1,} to continue looking
for one or more. I next shifted to a Instr test, but I couldn't figure out
how to write a statement Instr(oWord, *) where * represents any number 0-9.
Finally I settled on a series Instr statements in an Or construction. The
next glitch was numbers like 1-800-867-5309, 1,200, 12.23 etc.
I added a few other tests to handle those with the below macro. If someone
knows of a better way to test for an alphanumeric number, please let me
know:
Sub Alphanumeric()
Dim oWord As Word.Range
For Each oWord In ActiveDocument.Words
If IsNumeric(oWord) Then
oWord.Font.Color = wdColorGreen
ElseIf oWord.Text = "-" Or oWord.Text = "." _
Or oWord.Text = "," Or oWord.Text = "$" Then
oWord.MoveEnd Unit:=wdCharacter, Count:=1
If InStr(oWord, 0) Or InStr(oWord, 1) Or InStr(oWord, 2) _
Or InStr(oWord, 3) Or InStr(oWord, 4) Or InStr(oWord, 5) _
Or InStr(oWord, 6) Or InStr(oWord, 7) Or InStr(oWord, 8) _
Or InStr(oWord, 6) Or InStr(oWord, 7) Then
oWord.MoveEnd Unit:=wdCharacter, Count:=-1
oWord.Font.Color = wdColorGreen
End If
ElseIf InStr(oWord, 0) Or InStr(oWord, 1) Or InStr(oWord, 2) _
Or InStr(oWord, 3) Or InStr(oWord, 4) Or InStr(oWord, 5) _
Or InStr(oWord, 6) Or InStr(oWord, 7) Or InStr(oWord, 8) _
Or InStr(oWord, 6) Or InStr(oWord, 7) Then
oWord.Font.Color = wdColorRed
Else: oWord.Font.Color = wdColorAutomatic
End If
Next
End Sub
--
Greg Maxey/Word MVP
A Peer in Peer to Peer Support Tag: Inlineshape move-event Tag: 61616
Macro code to retrieve Dropdown field value within Word?
I am new at creating Macros and VB code. I am trying to setup a Macro that
is ran upon exit from a dropdown field in Word. I am wanting to check the
value from the dropdown to fill data into form text fields. I have tried
ActiveDocument but can't see what needs to be coded to get the value. Tag: Inlineshape move-event Tag: 61609
optional 'pages' view in MSWord
It would be a useful aid to navigating and working in longer documents to
have an optional 'pages' view available to the left hand side of the screen
as with 'Slides' in PPT and 'Pages' Adobe Acrobat Tag: Inlineshape move-event Tag: 61599
Making template instructions disappear when user enters input
Is there a way to make lengthy instructions (sometimes several paragraphs)
automatically disappear from a template when a user enters input?
I tried the MacroButton NoMacro field, but that is limited to instructions
that are no longer than one line. This template details the information that
should appear in each section, but the instructions remain unless the author
remembers to delete them (sigh).
Thanks for your help. Tag: Inlineshape move-event Tag: 61594
Is there a way to delete reviewers in tracking changes?
My computer has greater than 8 reviewers for track changes and my color is a
duplicate of another. Is there a way to delete reviewers to get under 6 as
this is the limit of color assignment by author? Tag: Inlineshape move-event Tag: 61591
Word online document
Is there a way to increase the dropdown form field item maximum of 25 when
working with a Word online document? Possibly a download? I can use either
'97, 2000 or 2003. Tag: Inlineshape move-event Tag: 61589
Capture the print instruction
When someone prints a document, I want to have a macro that adds a watermark
and header/footer information, but when the document is viewed on screen this
information is not visible.
What is the "capture print" instruction, I cant find it anywhere. Tag: Inlineshape move-event Tag: 61585
Prefixed Numbered TOC
Would someone tell me how to create a prefixed Line Numbered TOC, formated
with tab leaders "....." and page #'s.
It should look like this:
TC01: Introduction ............. 2
TC02: Revision................... 3
TIA,
Ted Tag: Inlineshape move-event Tag: 61582
Accessing the "Printed Watermark" dialog in XP/2003
Hello All
Is it at all possible to do a .Show directly to the watermark dialog you get
to via the menu system clicks of Format -> Background -> Printed Watermark.
We use this watermark dialog a lot and would like to bypass all the menu
clicks.
Here's hoping
Trevor Henderson Tag: Inlineshape move-event Tag: 61580
Sharing macro ind Word 2003
Hi.
What's the easiest way to share/distribute macros in Word 2003?
I would prefer not to change NORMAL.DOT.
--
Br. Carsten Tag: Inlineshape move-event Tag: 61579
Opening word files from Samba share is very slow??
Hi Folks,
We've been having problems with opening word files from a samba share in
that it takes forever to open and as a result some AutoOpen macros fail
to execute properly.
The macros work in other environments and in similar environments to our
problem area which is -
Windows 2000 Pro
Office 2000 Pro
Novell Client
Sophos Anti Virus
Samba shares mapped at logon
Over 100MB Network
Any ideas would be appreciated.
Cheers
J Tag: Inlineshape move-event Tag: 61574
How to customize the pop-up right-click menu in MSword?
Using Word macros I have added two options to the right-click popup
menu of MSWord. I want only Option1 to be displayed when the cursor
points to a bookmark and option2 to be displayed when the cursor is
placed on a normal line (not a book mark).
How to customize the popup menu? Tag: Inlineshape move-event Tag: 61568
Wd2003:AutoExit Macro Doesn't Restore Menu Items Customized by Aut
I use a customized word 2003 template. In the AutoNew macro, I'm saving the
commandbar settings in registry, deleting all commmandbars and creating some
customized command bars. When the application is closed, the commandbar
settings saved in the registry has to restored. I do it in the AutoExit
macro. Apparently, this is not working. (This was early in Word 97. It was
working fine.) When the AutoExit function is called, the commandbars are
being reinstated, but once the word exit and I open word again, they are not
gone.
For word 2000, microsoft have given the solution as to open the normal
template and make the menu changes and save it. But this is not working in
this case. Tag: Inlineshape move-event Tag: 61561
Word Macros
hi,
Using Word macros I have added two options to the popup menu. I want
only Option (1) to be displayed when the cursor points to a bookmark
and only option (2) to be display when the cursor is placed on a
normal line (not a book mark)
How to customize the popup menu?
Can anybody tell me how to resolve this problem?
Thank you
Petricia Smith Tag: Inlineshape move-event Tag: 61560
Preserve numbering when copying to a new document (MVP)
Hi there!
I need to copy paras formatted with styles containing outline numbering
(legal) to a new document and retain the numbering (using VBA)....
I seem to lose some of the numbering.
Ideas most welcome.
Thanks
Tim Tag: Inlineshape move-event Tag: 61559
Removing trailing carriage returns in Word VBA?
Okay, so I've got a macro that's supposed to concatenate a bunch of
documents together, separated by exactly one blank line. The thing is,
I can't count on any specific number of blank lines at the end of each
source document that I'm concatenating. It would be nice if, after I
append each document to my master document, I could remove all trailing
carriage returns from the master document, so that I'll know exactly
where I am and how many blank lines I'm going to have after each
append.
I've scoured the books and newsgroups, and I haven't found a way to do
this. It seems simple enough, so maybe it's just my brain shorting out
after a long day. If anyone can shed some light on this, I would
vastly appreciate it.
~ Steve Tag: Inlineshape move-event Tag: 61556
Copy Word lines into an array?
I accidentally posted this question in another NG, please disregard the other
one.
I need an example function that will copy each line in a Word document
beginning at the first line and ending at the end of paragraph 10. Each line
needs to be separately copied into an array.
Can someone please, please, please post a function to do this? Thanks so
very much in advance. Tag: Inlineshape move-event Tag: 61553
Obtain the index number of the active document.
I know how to get the count of active documents and the active document name.
I'd like to extract the index number of the active document.
Any suggestions?
TIA Tag: Inlineshape move-event Tag: 61548
Highlight regions of protected document
This applies to Word 2003
Is there a way to programmatically turn off the "Highlight regions I can
edit" option that is accessible from the Protect Document task pane of a
protected document? I do not want this option selected when a user opens the
document.
Thanks. Tag: Inlineshape move-event Tag: 61540
How can I force to change cursor under unselected fields?
I have a set of fields type of "wdFieldMacrobutton". And the problem is that
on roll over event the cursor changes to arrow only if the field is selected.
How can i make cursor change to an arrow under not selected fields? Tag: Inlineshape move-event Tag: 61538
how to send e-mail
What code could I use to send an e-mail message.
I've generated all events and I just need this code to send the e-mail.
Private Sub oApp_DocumentBeforeSave(ByVal Doc As Document, SaveAsUI As
Boolean, Cancel As Boolean)
Dim strFileName As String
strFileName = ActiveDocument.FullName
??? Code for the e-mail that in the strFileName some changes have been made.
Thanks Tag: Inlineshape move-event Tag: 61537
HELP - Tabs and Paragraphs
Hello all,
Would anyone have any suggestions on this? When I start at
the very end of each line preceding each of the (2)
examples below, there is (1) chr(13) for a paragraph mark
and (2) chr(9) for a tab mark. But on line one, you only
go to the beginning of the line and with line 2 you go
over to the Tab2 position. I am guessing that the tab must
have some kind of properties that tells Word to go over to
the tab2 position, but darn if I know what it is.
If anyone could offer any suggestions, it would be greatly
appreciated!
Tab 1 Tab 2
>> Line 1 Some Text Some other text
>> Line 2 Yet more text Tag: Inlineshape move-event Tag: 61533
Move IP to the start of a Story
Hi,
ActiveDocument.Range(0,0).Select
moves the IP to the start of the maintext story apparently from any
story.
My IP is in the header story and I want to move the IP to the start.
I can use
Selection.HomeKey Unit:=wdStory
I was wondering if there isn't a Range(Start, End) method that I should
be using.
Thanks Tag: Inlineshape move-event Tag: 61532
renaming class or module in a project window in VB
How to rename a class or module in a project window in VB?
The Module1 to something name and the Class1 to something name?
Thanks Tag: Inlineshape move-event Tag: 61522
Letting others use routines I've written
My VBA programming has always been only for myself, up to now. But I've created a document conversion program that is needed by others, and I cannot get it to work on their computers. I copied the template to a network drive, then copied from there to Word's Templates directory on a co-worker's computer. Then I attached it to the document that he wanted to convert, but when I bring up the Macros dialog, the list of macros is blank, even when I specify the template name in the "Macros in" box.
So there's something I'm missing about the VB environment. Also, it would be nice if, on other machines, users did not have to first attach the template to the document before using it. Any help appreciated.
Christopher Brewster
Lockheed Martin
--
Message posted via http://www.officekb.com Tag: Inlineshape move-event Tag: 61520
Appendix in TOC
Hi
I am working with Word 2002. I have created a document and added a table of
content. Fine. But it does not pick up my appendix (it is in a separate
section, page break). How do I get the TOC to include thr appendices? Tag: Inlineshape move-event Tag: 61518
How can I insert data from a word document in a Access database?
I need some help to know what I have to do to insert somo information from a
Word Document in a table from an Access database. Do I have to create a Macro?
If yes, How can I type the code? Tag: Inlineshape move-event Tag: 61516
Unwanted control toolboxes
In Word 2000 VBA control toolboxes appear in the upper left and lower
right corners, unbidden, when documents are opened. The lower right
toolbox shows only a triangle.
What causes this and how can I get rid of it? Tag: Inlineshape move-event Tag: 61515
Word install problem
my office got uinstalled by some reasons I dont know. so now I cant open it!
every file is on the harddisc but I cant find any install program:S can
somebody help me???? Tag: Inlineshape move-event Tag: 61513
Word install problem
my office got uinstalled by some reasons I dont know. so now I cant open it!
every file is on the harddisc but I cant find any install program:S can
somebody help me???? Tag: Inlineshape move-event Tag: 61512
Word Install-problem
Hi.. my office by some reasons got uinstalled! but i can find the program to
install office again, and I dont have some CD`s of I need that. can somebody
help me please? Tag: Inlineshape move-event Tag: 61510
How do I set TOC Page Numbering with (Page x of y) and sections?
Per article 291283 "How to create two page-numbering schemes in one document
in Word 2002" - how do I set correct page numbering for the
Table of Contents?
I was successful in using the Method 1, "Use SEQ fields", but that causes
the numbering in the TOC to start at 1 for every section listed, instead of
showing the real page number based on the total number of pages.
Any help in writing the necessary code will be greatly appreciated.......! Tag: Inlineshape move-event Tag: 61503
How to automatically update the Filename field?
How do I get the Filename field in different headers of a protected form to
automatically update when closing the form? The Filename field is in all of
the different headers in the form. This was a default feature of Word 2000,
but is not a feature of Office 2003. Thanks. Tag: Inlineshape move-event Tag: 61502
How to automatically update the Filename field?
How do I get the Filename field in different headers of a protected form to
automatically update when closing the form? The Filename field is in all of
the different headers in the form. This was a default feature of Word 2000,
but is not a feature of Office 2003. Thanks. Tag: Inlineshape move-event Tag: 61501
Adding Meetings to a Word Doc.
I have a word document that gets sent out to a bunch of people, which
contains meetings. I would like to set up a way so that they can click
on a meeting and it would add the meeting to their outlook calendar as
a meeting. Hope that make sense. Tag: Inlineshape move-event Tag: 61496
Changing Invoice # automatically on document
I am using the templates in word for invoices. Is there a way I can set up
the invoice # to change everytime I print/save a new invoice.
I just started using these invoices thru Word so any other suggestions would
also be helpful.
So far, I have set up the template and added form fields. Upon exiting I am
saving each one into a folder for the month of that year.
Thank you Tag: Inlineshape move-event Tag: 61487
Forms - Protecting Sections
Hello all,
I have created a Word 97 form which is basically in 2 parts. The first
section contains numerous fixed fields and drop down boxes and this section
is protected. The second section is an area for freeformat text and so is
unprotected. Within the form I have a Macro which when activated copies
sections 1 and 2 and creates sections 3 and 4 the first time, 5 and 6 the
second time, etc. After the Macro has run I need to reprotect all odd
numbered sections and leave all even numbered sections available for
freeformat text. Is there any way to do this?
ActiveDocument.Sections(all odd numbered sections).ProtectedForForms = True
ActiveDocument.Sections(all even numbered sections).ProtectedForForms =
False
ActiveDocument.Protect Password:="", NoReset:=True, Type:= _
wdAllowOnlyFormFields
Grateful for any assistance.
Paul.
PS low level knowledge of VBA - use the recorder to perform the bulk of the
action and then edit a bit where necessary. Tag: Inlineshape move-event Tag: 61486
Word template only works on one PC
I have a Word 97 template file (i.e. .DOT file) that is on a particular PC
in our office. The template uses VBA to connect to an Access database
(located
on a server share) and creates a document based upon some data. When I
simply move the particular .DOT file to any other PC and try to create a new
file using that template, part of the code fails. When I launch the VBA
editor for the template file on the working PC there are several items that
I can see that I cannot see when I launch the VBA editor for the template on
any other PC:
1) A Modules node under the Normal node that has two modules in it. I can
click on these and examine the code.
2) Three additional TemplateProject folders. Although, when I try to view
the code for these TemplateProject folders I get a dialog box that says
"Project is unviewable".
I can tell, based upon the name of one of the TemplateProject folders, that
the template VBA code fails (it's a call to WordBasic.Call) on every other
PC because these TemplateProject folders (as well as the aforementioned
Modules) don't seem to exist on those PCs. So, my basic question is why can
I see these VBA project elements on the working PC, but not on any other
PCs? I assume there must be some files and/or environment settings on the
working PC. Any help would be much appreciated.
Thanks. Tag: Inlineshape move-event Tag: 61485
Speed-up merge empty cells in msword tables
Hello,
I have a small VBA code that merge empty cell on each rows but keeping the columns.
For example the table:
---------------------
|A | B | C | D | |
---------------------
| | B | C | D | |
---------------------
| | B | C | D | |
---------------------
|A2| B2| C2| D2| |
---------------------
| | B2| C2| D2| |
---------------------
will be converted to
-------------------------
|A | BBB | CCC | DDD |
|A2| B2B2| C2C2| D2D2|
-------------------------
The problem is that it takes a very long time for tables with more than 50 rows.
Do you have any ideas on how to speed-up this macro?
Thank you,
Catalin Florean.
'My macro:
Sub tmpTable()
Application.ScreenUpdating = False
cateMerge = 0
Set myTable = ActiveDocument.Tables(1)
cateCol = myTable.Columns.Count
cateRow = myTable.Rows.Count
For currentRow = 1 To cateRow
If Len(myTable.Cell(currentRow, 1).Range.Text) <= 2 Then
cateMerge = cateMerge + 1
For j = 1 To cateCol - 1
myTable.Cell(currentRow, 0).Merge MergeTo:=myTable.Cell(currentRow - cateMerge, j)
Next j
Else
cateMerge = 0
End If
Next currentRow
myTable.Columns(cateCol).Delete
Application.ScreenUpdating = True
End Sub
--
Message posted via http://www.officekb.com Tag: Inlineshape move-event Tag: 61484
Speed-up merge emply cells in msword tables
Hello,
I have a small VBA code that merge empty cell on each rows but keeping the columns.
For example the table:
A B C D
BB
'My macro:
Sub tmpTable()
Application.ScreenUpdating = False
cateMerge = 0
Set myTable = ActiveDocument.Tables(1)
cateCol = myTable.Columns.Count
cateRow = myTable.Rows.Count
For currentRow = 1 To cateRow
If Len(myTable.Cell(currentRow, 1).Range.Text) <= 2 Then
cateMerge = cateMerge + 1
For j = 1 To cateCol - 1
myTable.Cell(currentRow, 0).Merge MergeTo:=myTable.Cell(currentRow - cateMerge, j)
Next j
Else
cateMerge = 0
End If
Next currentRow
myTable.Columns(cateCol).Delete
Application.ScreenUpdating = True
End Sub
--
Message posted via http://www.officekb.com Tag: Inlineshape move-event Tag: 61483
Speed-up merge emply cells in msword tables
Hello,
I have a small VBA code that merge empty cell on each rows but keeping the columns.
For example the table:
A B C D
BB
'My macro:
Sub tmpTable()
Application.ScreenUpdating = False
cateMerge = 0
Set myTable = ActiveDocument.Tables(1)
cateCol = myTable.Columns.Count
cateRow = myTable.Rows.Count
For currentRow = 1 To cateRow
If Len(myTable.Cell(currentRow, 1).Range.Text) <= 2 Then
cateMerge = cateMerge + 1
For j = 1 To cateCol - 1
myTable.Cell(currentRow, 0).Merge MergeTo:=myTable.Cell(currentRow - cateMerge, j)
Next j
Else
cateMerge = 0
End If
Next currentRow
myTable.Columns(cateCol).Delete
Application.ScreenUpdating = True
End Sub
--
Message posted via http://www.officekb.com Tag: Inlineshape move-event Tag: 61482
speed up vba
I use a small vba routine to create new documents. the macro opens an
empty document and then adds a few objects (e.g. logo image, header and
footer text boxes, etc). some text may also be added.
This whole procedure takes about 10 sec, which i find very long time for
just the few thing to do. A simular procedure in PowerPoint runs in less
than 1 sec!
Are there any hints how I can speed up my macro? Turning off
ScreenUpdating didn't help much.
Thanks a lot, Luc Tag: Inlineshape move-event Tag: 61478
Word and Internet Server documents.
Hi,
Some time ago, I asked a question concerning slow response when opening a
Word document from an Internet server for the first time. All subsequent
Word document openings were pretty quick. Someone responded, in very
technical language, about SOEs and XCOPY to "prime" the network and caching.
However, despite my gentle prodding, he did not elucidate, or distance
himself from the abstract or the deeply technical. However, he did raise my
hopes that there might be a solution. So here, below, I present my problem,
in the hope that someone can be more specific about a solution.
----
I have an ASP page which generates a XML (wrapped in HTLM) file which
represents a Word document. Then, from the client side of the Internet
connection, I open this newly created document using Word. When first this
process runs, following a machine re-boot, it can take up to a minute to
complete. Thereafter, it takes 3 seconds.
The Word command is something like :
Set objWord = CreateObject("Word.Application")
Set doc = objWord.Documents.Open(http://localhost.service/document.doc)
------
Is it true that the network and caching needs priming? If so, does anyone
know how to "prime" such, or know of any Web pages that might tell me how.
I'm using IIS, under XP, and Word 2000.
Many thanks
Gem Tag: Inlineshape move-event Tag: 61475
Set details view in Open Document Dialog as Default
Is it possible to set the default view to Details View in the
Open/New Document dialog with a macro?
If thats' the case - any code example?
--
Anette Tag: Inlineshape move-event Tag: 61474
Track Changes: Deleted text is red, not strikethrough
I'm using Word 2002 (10.6612.6626) SP3 on a WindowsXP computer.
When I create a document and activate Track Changes, text that I delete
turns red instead of strikethrough. When I send the document to another
person, the deleted text is marked as strikethrough when they open it in Word
(same OS and version of Word) instead of red.
I much prefer strikethrough text over red text.
I've tried the fix in described this article (wdFixStrikethrough):
http://support.microsoft.com/default.aspx?scid=kb;en-us;323883
This article mentions deleting a data key in the registry, but does not say
WHAT key.
I've also searched the user groups for information and visited several MSVP
sites with no success in finding a fix.
Can anyone help me with this. Tag: Inlineshape move-event Tag: 61458
Hi,
Is it possble to handle the event of an inlineshape-object (image)
beeing moved from one document to another document?