| Thread | Last Post | Replies |
|
| Macro to remove lines containing specific text | 07 May 2008 18:30 GMT | 4 |
I would like to be able to remove all lines from a Word document which contain a specific text string and copy them to a second file at the same time. Can someone suggest some code that could do that?
|
| Problem deleting a paragraph | 07 May 2008 14:23 GMT | 1 |
I'm using the following vba to remove a bookmark and paragraph WordDocOnlMemAcc.Bookmarks("Line1").Select WordDocOnlMemAcc.Bookmarks("line1").Range.Paragraphs(1).Range.Delete WordDocOnlMemAcc is the object representing the document in use.
|
| OrganizerCopy Problem | 07 May 2008 13:35 GMT | 1 |
I'm trying to copy a macro from the active document to a document which has just been created. The macro is not in the Normal.dot template, just in the active document. The code looks like: Dim DocA As Document, DocB As Document
|
| Deleting text boxes with red line or text | 07 May 2008 10:45 GMT | 3 |
Is it possible to use VBA to delete text boxes in a word document that have a red line around them (or with red text in)? If so can you point me in the right direction for the code Many thanks
|
| Print and Close | 07 May 2008 10:16 GMT | 1 |
I'm using this code for a command button to open the print diolog box and then close the form without saving it after it prints however it is not working properly. The print dialog box displays but after I select my printer, the document does not print. Any suggestions on why ...
|
| can i convert Flash file to PPT? | 07 May 2008 09:16 GMT | 1 |
how will i edit the swf file's content in PPT?. do you have any option for the editing the content?.. and i try to access the next slide for the particular button,do u have any option for this?...
|
| fields macro template: run but doesn't work | 07 May 2008 09:15 GMT | 3 |
I'm from Italy, so sorry for my English. I've a very very simple form saved as template (.dot) with the following: Public Sub MoF() ' male or female If FormFields("Mr_or_Mrs").Result = "Mr" Then ' a dropdown field
|
| Building a WOrd Document | 07 May 2008 03:05 GMT | 1 |
I have done all of my VBA programming from Excel. Now I haev a task in Word and feel like a fish out of water! Point me in the right direction(s), please. I have a document which goes on for several pages. Let's call them "Rules
|
| Macro fine in Word 2000... breaks in Word 2002...? | 07 May 2008 01:32 GMT | 4 |
Howdy, I recently moved from Office 2000, to Office XP. I have a bunch of macros that I built (in Word 2000) by recording, and tweaking, rather than by having any real
|
| Automating Word 2007 mail merge? | 06 May 2008 20:27 GMT | 5 |
I am running an SQR process that generates a configuration file (text saved as .cfg) and a data input file (csv format) and then does a system call to execute the Word 2007 mail merge process. The Word mail merge process, reads the coinfguration file to determine where the input ...
|
| User define number of copies printed via macro | 06 May 2008 15:44 GMT | 2 |
I am working on a macro which alow user to fill in number of copies to be printed via a formfield. Sub text() X = ActiveDocument.FormFields("Text1")
|
| Hyperlink in a macro comment | 06 May 2008 14:37 GMT | 3 |
I'm trying to set up macros to streamline grading essays, and I want to include hyperlinks in comments that I have created as commands on a new menu. I create each command as a macro that inserts a comment with text about the error I've found, but I can't figure out how to ...
|
| Multiple Hyperlinks in Table Cell | 06 May 2008 14:16 GMT | 2 |
Thanks in advance for any help. I am trying to add multiple hyperlinks, separated by a return, in a table cell. I can add the hyperlink: objRange = objTable.Cell(5, 2).Range
|
| deleting form fields | 06 May 2008 08:01 GMT | 5 |
I want to create a template form that after the document is created and saved, the user can Open the saved document, run a "macro??" and delete only specific fields in the form in one pass. The original forms has ~200 fields. We want to be able to reOpen the
|
| Adding Forms Textboxes values | 06 May 2008 07:44 GMT | 1 |
New to macros in Word. I have several Textboxes(forms) on a document. I want to create a macro to calculate the following: Textbox43 = textbox36.value + textbox37.value + textbox38.value +
|