How to share macros in Word 2003 Let me start off by saying I do not write VBA code. I can make some simple macros using the Record Macros feature in Word. I need to know how I can share my macros with others. I have Word 2003 and I am on a network. I have tried various things I have found on the internet, including directions on how to ... 10 Apr 2010 20:08
Enable/Disable Diacritics Hi Everyone! This is Baljinder singh. How to enable/disable diacritics in MS Word 2007? In Find/Replace box When I check 'Mathch case' and feed the box to find something, under 'Find What' box I see 'Match case, Match Diacritics'. I want 'Match case' only not 'Match Diacritics'. Is there anyone to solve this problem? T... 11 Apr 2010 13:27
Delete an entire page based on the presence of a text string I need to delete an entire page based on the presence of a text string. I tried using the code i found in the following post: Deleting a page based on text search 6/18/2007 11:52 AM PST by Damo '_______________________________________ Dim strSearch As String Dim rgeStart As Range Set rgeStart = Selection... 12 Apr 2010 12:34
Stop removing blank lines at the end of a document Hello, I have a series of rather large Word documents used in testing. Once testing is complete, I clean up the documents to remove the testing bits (checkboxes, approvals and such) and then compile the document in chm form to be used as a help file. I've written a macro that cleans up the document by selec... 12 Apr 2010 14:48
Slow Spell Checking As the number of misspellings increases, accessing its object in the DOM gets slow. It might take 10-20 seconds just to poll the Count property. For example, using For Next loops is faster than For Each, but not by much. Is there any way to speed this up or work around it? ... 9 Apr 2010 16:46
SpellingChecked Doesn’t Check Spelling The following code segment is run (which adds a dictionary) and is supposed to recheck the document's spelling. currentDocument.Application.CustomDictionaries.Add FileName:="c:\tempTerms.dic" currentDocument.Application.ResetIgnoreAll currentDocument.SpellingChecked = False However, the code ... 9 Apr 2010 16:46
Word 2007 Macro - Document Save Location & Update TOC Forgive me if these are silly questions, but I am very new to writing macros. I have a .dotm template with an AutoNew() macro, and I am trying to figure out how to do 2 things: 1) When I have the file save, I want it to save in the same directory as the template is in, rather than in My Documents. How do I d... 26 Apr 2010 17:14
Word 2007 - How to disable Close button? Hi, I was sent here by moderator of MSDN's VSTO forum... I'm currently working on Word 2007 automation using Interoperability library. I need to somehow disable Close button (and maybe also Minimize and Maximize buttons) of Word Application. I found that in previous Word versions it was possible to use Windows... 9 Apr 2010 04:33
Thanks Jay Thanks Jay. That works nicely :) Wayne. Jay Freedman wrote: Use the OnTime technique shown inhttp://word.mvps. 07-Apr-10 Use the OnTime technique shown in http://word.mvps.org/faqs/userforms/AutoExecUsertFm.htm. Just replace the "Tempfm.Show" statement with the ActiveDocument.Fields.Update statement... 9 Apr 2010 04:33 |