| Thread | Last Post | Replies |
|
| Symbol font chars changing to "(" after passing through VBA Regex | 01 Aug 2006 00:14 GMT | 6 |
I've been having some trouble with characters in Symbol font converting to "(" when the paragraph which contains them is altered using VBA Regular Expressions. I'm using the Range.Text object because the FormattedText object will not work (for me, anyway) with Regex. The ...
|
| How to Insert a Page Break (Using VBA) | 31 Jul 2006 23:13 GMT | 1 |
I have: a fixed width text file I want: to insert a page break after each account listing, using VBA Sample file: Account: 1000 Date: July 31, 2006
|
| using vba to delete part of a document | 31 Jul 2006 22:17 GMT | 3 |
I've got a group of letters that are generated through a mail merge with an excel file. These letters are to various entities and contain a listing of specific incidents that they were involved in. Since I wanted to just have one template and since the number of incidents per ...
|
| Unprotecting Module | 31 Jul 2006 21:31 GMT | 1 |
Is there a way when the password is known to unprotect a VBE project with code, if so can someone assist me, please?
 Signature Mark
|
| Which sub does a toolbar call? | 31 Jul 2006 20:33 GMT | 3 |
I took over the support of Word macros done by other people and they were heavy on the toolbars. The problem I'm having is I have all these toolbars I need to debug and I can't figure out which sub they call. I actually tried using this code
|
| VBA Referencing | 31 Jul 2006 19:02 GMT | 1 |
reI have a template which I keep a lot of code in which is referenced to by quite a number of other templates. I want to move the template which is referenced to another location on my computer, this will obviously affect the reference link. it is possible with code to alter ...
|
| how do you display a prompt with a list of options? | 31 Jul 2006 18:49 GMT | 5 |
I wrote a macro that uses inputbox$ to display several bookmarks in the prompt and go to the bookmark that I enter in the input field. How do you display those choices in a pulldown menu? I can't figure out what type of statement allows you to create a pulldown menu.
|
| Access to ListBox items | 31 Jul 2006 16:57 GMT | 2 |
I have created a Word doc with a userform and listbox. I have initialized the userform to fill the listbox with filenames(templates) from a selected folder. The next step seems straightforward but has me baffled. How do I show a
|
| Message box to show in Word and not in Excel | 31 Jul 2006 16:27 GMT | 1 |
All: I am running Windows XP with Word and Excel 2003. I am running Excel VBA to open a word document and do some procedures. Basically, my code gets some values in excel, then opens up Word and inserts the data into
|
| PRB Why does Application.Scripts not work for OnAction? | 31 Jul 2006 16:21 GMT | 3 |
PRB Why does Application.Scripts not work for OnAction? I tried to make a command bar button and set its OnAction to call script I added with Application.Scripts. And I failed. I asked on MSDN and was told OnAction for a command bar button can not call the script added via
|
| HOWTO create macro programmatically for command bar buttons. | 31 Jul 2006 15:15 GMT | 4 |
HOWTO create macro programmatically for command bar buttons. I want to programmatically create a macro that I then programmatically make a command bar button for to call via its OnAction. I know how to add the command bar button dynamically and sets its OnAction, but I can not ...
|
| Set different keyboard shortcuts to different documents | 31 Jul 2006 14:59 GMT | 2 |
i need to set unique keyboard shortcuts to different types of dicuments. I tried to use template and to each template set the unique keyboard shortcuts. When I open couple of different word documents in the same time the last
|
| variable naming conventions | 31 Jul 2006 14:52 GMT | 3 |
I have seen people use int or just i, str or just s, etc., in front of variable names. It seems people have their own preferences. Does anyone know of a website that provides proper varable naming conventions?
|
| Accepting deletions in a selected area | 31 Jul 2006 13:30 GMT | 1 |
I use the following code to accept all deletions in the selected area of a document with revision marks: Dim r As Revision For Each r In Selection.Range.Revisions
|
| Find/Replace macro from excel into Word | 31 Jul 2006 11:27 GMT | 3 |
All: I am running a macro from excel that opens a word document on c:\ directory and does a find and replace in the word document from the criteria in certain cells in the excel file. Where I am having trouble
|