| Thread | Last Post | Replies |
|
| opening a word document in append mode | 20 May 2008 12:53 GMT | 1 |
Can anybody helps me for getting the Vb code for opening a file in append mode i tried opening the closed file Text.doc using the vb code Set subDoc = appWord.Documents.Open(FileName:=saveSubFolderPath & "\" & Text & ".doc", Visible:=False)
|
| Making 2 Tables into 1 Table | 20 May 2008 11:50 GMT | 16 |
More stuff on tables... Will MS _ever_ get it right? I've got 2 tables with a blank line in between them. (They were created independly of each other, not by simply splitting one table into two.) Normally, if you remove the blank line between 2 tables the tables become 1
|
| Combobox problem | 20 May 2008 11:08 GMT | 3 |
I have a combobox on my sheet and I populate it with day numbers 1-31. The problem is the numbers appear repeated 31 times in the list. My code is Private Sub ComboBox1_DropButtonClick()
|
| Combo Box | 20 May 2008 10:00 GMT | 3 |
Is there a way in Word VBA to create a combo or list box where values can be displayed and also have the ability to add and delete items. For instance have a list of predefined food that the user can modify via the list and add additional items or remove items of food they don't ...
|
| Remove duplicate time entries | 20 May 2008 01:15 GMT | 1 |
I am trying to replace a particular string in a simple file and cannot seem to get it to work. There are no errors but all the time entries are replaced. Ultimately, I want to delete only the redundant time entries. This is a MS Word 2003 VB Macro. I've seen so much
|
| InsertObject Macro blocking access to other Insert Menu Items | 20 May 2008 00:50 GMT | 2 |
I created the simple macro below for a protected form template that is executing in a non-protected section of the form template. The bounding box dimensions have been entered into the macro so the user has a good size working area to begin.
|
| sort appending order of documents | 19 May 2008 23:21 GMT | 7 |
I'm using the following code to append some files. the problem is it is appending first the last one I select. I need to reverse this order. I want the first file selected to be at the top of the final document. And
|
| search and replace all colors except red | 19 May 2008 23:20 GMT | 2 |
I am working on a Word 2003 macro to make a series of text replacements across a wide variety of documents with different styles. I am turning revision marks on, so I know that text that I have already changed in a previous search-and-replace operation will become red with single ...
|
| link text box and dropdown | 19 May 2008 22:57 GMT | 3 |
Two fold question requireing an idiots guide. How do i populate a combo box with a list of numbers? Is it pssible to multiply the selected number from the combo bow with a number stored in a text box and auto undate a second text box with the result
|
| Update fields in footers | 19 May 2008 20:57 GMT | 2 |
I have this macro which updates the fields in the footer. I doubt it is the best way to make this happen...also it doesn't work in all sections. Any advice would be appreciated! Thanks If Documents.Count = 0 Then Exit Sub
|
| ConvertToTable troubles with date fields formatted with "-" | 19 May 2008 20:48 GMT | 2 |
I'm using VBA-code from Access to build and fill a word table. I've got a ADO-Recordset with data like these: ADE 10-08-2007 11-08-2007 TRW 04-22-2008 04-23-2008
|
| Replacement text is too long | 19 May 2008 16:17 GMT | 1 |
I used the following subroutine to replace some text appearing in a document, which is the same as that held by TextBox1, by the text held in TextBox3. With doc_range.Find
|
| Losing AutoText and Toolbars when converting from MAC to PC | 19 May 2008 14:26 GMT | 1 |
I am in the process of switching from MAC to PC. I have created numerous templates in Word 2003 on the MAC (9.1) with tons of customized AutoText and Toolbars. Unfortunately, when I move the templates to Word 2003 on the PC, all of the customized AutoText and toolbars are not
|
| Modal vs Modless Forms | 19 May 2008 14:18 GMT | 2 |
I can find lots of info on Modal vs Modeless forms in Word, but none answers my question. My biggest reason for wanting to use a modeless form is so that the user can click out of the form and scroll around their document without closing the
|
| Force Saving Document with New Name | 19 May 2008 13:27 GMT | 6 |
I am opening a document with Set DocB = Word.Documents.Open(DocA.Path & "\Intro.doc") I would like the file to show as "Document1" (or whatever the next new document would be) so that the user is forced to save it with a new
|