| Thread | Last Post | Replies |
|
| Delete VBA code in runtime | 08 Dec 2004 17:16 GMT | 4 |
I have the below code in ThisModule of severel templates. It calls and add-in that do some stuff..... Now I would like the finished documents to be without code in ThisModule, so that when a user mails the documents to a customer or.... the documents will
|
| Insert logo | 08 Dec 2004 17:10 GMT | 3 |
Need a button (vba code) that inserts a logotype in a header (there is a bookmark b in a table). When the logotype is inserted and the user clicks on the button again it should not be inserted again. I also need the button that will remove the picture (logotype) if the user wants ...
|
| Writing text file problem | 08 Dec 2004 15:21 GMT | 1 |
I'm writing data from my app to text file but it inserts "quotes" all over the place and this is not what I want (might be working with a html file). Is there any way to stop this?
|
| Picture Sizing | 08 Dec 2004 14:50 GMT | 1 |
I want a procedure in my template which simplifies the entering of pictures into a table, inserting them at the correct size. The procedure is in place but I cannot understand the meaurement units being used and cannot
|
| Inserting Image via com | 08 Dec 2004 13:55 GMT | 1 |
I can insert an image into a header with ohead.shapes.addpicture What I would like to do is to insert the picture inside a cell in a table but the cell doesn't have a Shapes collection I've also looked at copying the picture but there is no copy method of the
|
| FileDialog box | 08 Dec 2004 12:34 GMT | 3 |
When using the filedialog box to allow a user to select a word document to open, how do you use the value that they selected and open the document? I don't think the filedialog has a "filename" property that I can leverage. Is this correct?
|
| How can I speed this up | 08 Dec 2004 10:20 GMT | 4 |
Can anyone help me please The bit of code below outputs 30 text boxes onto a page and takes about 25 seconds to do. This is a trial sample of something I am trying to develop.
|
| replace paragraphmarks | 08 Dec 2004 08:55 GMT | 4 |
Hi NG I have a doc with several paragraphs in two different styles. Style 1 is ok, always one line of text. Style 2 follows the para in Style 1, but often there are 2 to 5 more lines
|
| Setting filename for "Save as" | 08 Dec 2004 08:45 GMT | 3 |
When a document is created from a template, some userform shows up. When the user is done filling in the form, the filename for the document can be deduced. How Do i tell word the filename to use when the user chooses save as?
|
| Selecting Colors | 08 Dec 2004 08:06 GMT | 3 |
Instead of re-inventing the wheel does anyone know of any "color picker" code that is available. I have looked all over and cannot seem to find anything that can be used in VBA. I know I could use dialogs but I only want the color function.
|
| Calling sub from ThisDocument | 08 Dec 2004 06:45 GMT | 2 |
Two questions, really. I've got my macros in "MyMacros.dot" startup template. But I need some of them in my Normal.ThisDocument Document_New/Open/Close routines.
|
| Updating Table Cells | 08 Dec 2004 05:54 GMT | 4 |
I am updating about 1500 table cells with the following code: With RowCell.Range .MoveEnd unit:=wdCharacter, Count:=-1 .Delete
|
| SendMail method and recipients | 08 Dec 2004 04:46 GMT | 2 |
I am trying to make a form in Word 2002 that users fill out and click a button to send this form with the inputs to a list of specific recipients. Everything is quite simple and works fine until I come to the part where I want to specify the recipients. I could not find any ...
|
| Serial numbering of documents in a networked environment | 08 Dec 2004 04:18 GMT | 4 |
I would like to know the recommended method of inserting an automatic "serial" number in a document. An example of this would be a company-wide outgoing fax serial number. I realize that it is rather big, in the sense that it could include many
|
| InsertFile method leaves certain text out after insertion. | 08 Dec 2004 04:11 GMT | 1 |
I am using the InsertFile method to insert the contents of a text file into a Word document, like so: .Selection.InsertFile TextFileName, Range:="", _ ConfirmConversions:=False, link:=False, _
|