| Thread | Last Post | Replies |
|
| how do i return built-in dialog box settings? | 13 Nov 2007 02:31 GMT | 1 |
word 2003 vba help under "Displaying Built-in Word Dialog Boxes" states that you can return or set options programmatically. i have not been able to find how to do this. any thoughts? i want to present the user with a way to select a folder without copy/paste
|
| Reducing code by looping | 12 Nov 2007 21:17 GMT | 1 |
I have a need to write some code in VBA for Word. I already have some code that goes to a website downloads a football table and then pastes/formats it in Word automatically. This works fine for the first table, but there there are 4tables I need in
|
| Adding Hyperlink to Protected Document | 12 Nov 2007 21:07 GMT | 1 |
Anyone know how to add a hyperlink to a protected document? I would like for the user to single click on the words "Add Video Here" and it open up to where the user can navigate to the appropriate place to link the video to the document.
|
| Open a userform when word opens and on New documents?? | 12 Nov 2007 20:12 GMT | 9 |
I have a Userform that I want to open when either a new document is created or word opens for the first time eg. Document1. I have tried in VB "ThisDocument/Document_New option and AutoNew option, but both seem to only work when you already have word open and
|
| Add Pictures to Protected Document | 12 Nov 2007 20:03 GMT | 6 |
I am trying to make a Word template add pictures to a protected document. With Macros and VB, it is set up to where when the template loads, it asks how many subjects will be added to the template. If you put 2 there, it will automatically unprotect the document, add one ...
|
| Sending Email Automatically | 12 Nov 2007 19:38 GMT | 1 |
I would like to create a FORMATTED Outlook Message automatically using VBA, getting fields from a Word template, or vice versa (creating a Word document with Outlook fields), for paper-archiving purposes. What is the easiest way to do this? I'm assuming creating an HTML email
|
| Delete bookmark if it contains specific words | 12 Nov 2007 19:38 GMT | 2 |
I have some code which is supposed to delete data if it contains specific words. The code I have is as follows: If ActiveDocument.Bookmarks("test").Range.Words(2) = "Central Service" Then
|
| Dialogs(wdDialogEditReplace).Show | 12 Nov 2007 18:43 GMT | 2 |
I hope this is the right newsgroup, if not please point me in the right direction. Could anyone tell me why Dialogs(wdDialogEditReplace).Show works but MsgBox Dialogs(wdDialogEditReplace).Show doesn't (raising error 5524, which
|
| Find the last opened instance of Word | 11 Nov 2007 22:54 GMT | 3 |
I'm running vb code from MSAccess. I want the code to find the last opened window of Word and do something to the document that is on that Word screen. Help! TIA,
|
| Help With .Find Behaviour | 11 Nov 2007 22:45 GMT | 5 |
Today I posted some code in the DocManagement group for deleteing duplicate email entries from a document. While working on this code I came across some behaviour with the .Find method that I don't understand. Basically my approach was to search the
|
| Checkbox -- delete or keep text | 11 Nov 2007 20:34 GMT | 26 |
I am looking for a way to select from choices of boilerplate text. We normally use the low-tech fill-in fields in Word, where you tab through fill-in fields in a document. I was thinking maybe we could put in the various paragraphs, and where we
|
| Find PARTLY italic words and replace non-italics by italics and the other way around | 11 Nov 2007 19:06 GMT | 17 |
How can I find words in which the first characters (sometimes one, sometimes 2, 3, or more) are in italics but the remainder of the word is not? And secondly, how can I reverse all ocurrences of these mixed-format words in ons document, so the italics become non-italics and the ...
|
| Wordcount in tables | 11 Nov 2007 13:20 GMT | 6 |
I've written a macro to count non-space characters and words specifically for Word tables; but it seems that computestatistics does not work for tables? Could've I done something wrong or is this so? Please see code below.
|
| Making VBA project to .exe? | 11 Nov 2007 11:27 GMT | 3 |
A standard VB project can be made into a standalone .exe app distributable to anyone, even if it contains an Access .mdb file. Is this possible with VBA? For example, I would like to take advantage of the power of Excel to write a program, but wonder if I could then make the ...
|
| code to copy style from one template to active doc template | 10 Nov 2007 20:12 GMT | 2 |
With Word 2003, I have a customized Comment Text style in my normal.dot template that I'd like to use in every document I open. The only way I can see to make that happen is by manually copying the style, using the organizer, from normal.dot to the active document.
|