InsertFile I currently have a macro which inserts a selected file from a directory. Sub GeneralUsertextClauses() With Dialogs(wdDialogInsertFile) .name = varUSERTEXT .Show End With End Sub How can I ensure that the selected file isn't an attachment when used with Outlook? JayM ... 30 Mar 2010 06:09
Is there code to toggle "show column headers and row headers" Normally, to do this manually, it's Tools --> Options ---> 'View tab' and then you click on the appropriate tick-box Can this be done using a macro? Thanks ... 30 Mar 2010 12:47
Code to "white-out" specific lines in a very large Word document Hi For the lines that start with the following text, I'd like like to change the font colour of the ENTIRE line to white: - Diagnosis: - Rating: - Analogue: (note the colon [:] at the end in each case) Thanks very much John ... 29 Mar 2010 06:57
Inserting multiple pictures into a Word table cell Hi All My VB6 app inserts mutliple pictures into a Word doc template, but because I don't know whether it will be 1 image (with accompanying text) or 36 images (ditto) my idea was to just have a pre-created table of 1 row and 1 col and then just keep inserting the pic then text in a long vertical list, eg: ... 28 Mar 2010 17:54
Background picture doesn't display when taking copy off of a Word template Hi All Sorry for the myriad of posts from me today. I am trying to fathom stuff myself, but I'm on a hot streak of doing stuff today, but at the same time hitting a few brickwalls. Basically I have created a background image and applied to my MS Word template, eg Format / Background / Fill Effects and sele... 28 Mar 2010 14:35
Normal.dot keeps bugging me!! Hi All I've created a vb6 app that opens up a Word template file, populates it with stuff and then displays the doc. This all works fine, but when I go and close the doc (with or without saving it) I keep getting warning messages saying do you want to save the changes to the normal.dot file. I haven't touc... 28 Mar 2010 21:12
Apply-user-defined table style only to tables with no vertically merged cells Dear Experts: below simple macros applies a user-defined table styles to all tables in the current document. It works fine. I wonder whether it is possible... .... to check each table for vertically merged cells and... .....only apply the user-defined table style to tables without any vertically merged cells ... 29 Mar 2010 10:15
how to detect that the end of a range is also end of a paragraph? Hi, how to detect that the end of a range is also end of a paragraph? ... 28 Mar 2010 11:17
Unable to permanently delete the MS Word custom toolbar I have a custom toolbar on my MS Word 2003. I delete this toolbar using the following steps described in http://office.microsoft.com/en-us/help/HP051929691033.aspx 1. On the Tools menu, click Customize, and then click the Toolbars tab. 2. In the Toolbars box, select the custom toolbar you want to delete. 3. ... 11 Apr 2010 14:34
Open Multiple Word Files, Copy/Paste into One File This code used to work in my Word 2002; not working in 2007: Sub Foo() Dim i As Long Application.ScreenUpdating = False Documents.Add With Application.FileSearch 'Search in foldername ..LookIn = "C:\Documents and Settings\Excel\Desktop\Word Files\" ..SearchSubFolders = False ..FileName = "*.doc" ..Execute Fo... 28 Mar 2010 01:28 |