| Thread | Last Post | Replies |
|
| save file wihout vba macros | 23 Jun 2005 14:57 GMT | 8 |
When I create a new file from a template and save it as a document, (.doc) and then close & re-open it, word still warns me that the .dot file contains macros. And Project explorer shows all the elements in the .dot file that creatd it.
|
| Specifying a range within a header | 23 Jun 2005 14:19 GMT | 3 |
I’m using VB to produce a Word document. Is there a way to specify a Range within a header, or can you only specify the Range that represents everything in the header? The VB editor will now allow me to use:
|
| checking replace was successful | 23 Jun 2005 13:48 GMT | 2 |
Is there a way to check whether replace command was successful? Thanks Daniel
|
| instruction for opening a file with VBA | 23 Jun 2005 13:00 GMT | 6 |
i am a newby and i can't find the syntax, any help ? dim MyFile as string MyFile = "c:\MyDir\MyDoc.doc" open (MyFile, etc...) (it does not work as such...)
|
| How to unlink headers/footers correctly without using ActiveWindow | 23 Jun 2005 12:09 GMT | 4 |
As a start I ran a macro with application visible. From the macro recorder I learned to use the following statement to unlink header/footer: Selection.InsertBreak Type:=wdSectionBreakNextPage
|
| VBScript Alignment | 23 Jun 2005 12:01 GMT | 2 |
I am writing a VBScript to report on some AD stuff. I got the code working great but I am unable to center the text. Here is what I pulled from a macro: Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter It does not work. I'm guessing because VBScript does not have a ...
|
| How to: delete sections pagebreak? | 23 Jun 2005 12:00 GMT | 2 |
I am trying to automate deletion of sections pagebreaks in a Word document. I have tried this: With ActiveDocument .Sections
|
| update document name field on saving | 23 Jun 2005 11:38 GMT | 3 |
I want my document name field inside my document to be updated when I use save or save as. Is it possible with VBA? Any help is appreciated. :)
|
| Populate Merge Fields via VB.NET | 23 Jun 2005 11:38 GMT | 1 |
I have several documents that have merge fields identified in the header, body, footer. I am not able to populate the forms using mail merge, I need to populate programatically via VB.NET. Can someone point me in the correct direction on populating a merge field programatically ...
|
| How do I set up Microsoft OneNote 2003? | 23 Jun 2005 11:38 GMT | 1 |
Everytime I try to install the program it says it cannot find an internet connection and I am connected. Why is it giving me that message?
|
| Automation Word 2002 - Outlook 2002 | 23 Jun 2005 08:07 GMT | 2 |
I would like to run a macro, which is saved in the Outlook file VbaProject.OTM in Modul1, with Automation out of Word. What's the code for this? Set OutAppl = CreateObject("Outlook.Application")
|
| newfile dialog box | 23 Jun 2005 06:03 GMT | 6 |
Is it possible to remove the Word built in templates from the newfile dialog box? Or maybe make your own new file dialog box and attach a directory to it? Im using Word 2003. Any help is appreciated.. yours sincerly
|
| How to export a picture in word to CGM? | 23 Jun 2005 05:28 GMT | 4 |
Is there any filter to convert a picture in word document to CGM file.
|
| Create style if not already present | 23 Jun 2005 05:06 GMT | 2 |
I am trying to work out the VBA code to see if a style (FaxHeader) exists in a particular document, and if it does not, create the style. I can work out the code for creating a new style, it is just the code to check if it already exists that is giving me problems. Any help would ...
|
| Event to run some code when a VBA template is loaded into Word XP | 22 Jun 2005 22:26 GMT | 3 |
In Word 2003 there is the Document_Open which I have used to load a command bar, etc. when a document is opened with an attached VBA template. I think that I read of an event to accompish the same thing for Word XP but I don't remember and can't find. Is there an event that ...
|