| Thread | Last Post | Replies |
|
| Set Focus on Form & Minimize Word | 16 Mar 2006 16:03 GMT | 3 |
I am fairly new to VBA - I apologize for the naive question. I've created a macro in word that opens a userform and minimizes Word. The problem is that when Word minimizes, the userform is no longer the focus and "falls" behind any other open windows.
|
| Convert dates from short to long(er) | 16 Mar 2006 15:34 GMT | 2 |
One of the documents I have to prepare regularly requires dates spelled out ("March 16, 2006") which takes longer than 3/16/06. So, here's my macro. I post this for 2 reasons: 1. It might be of use to someone else.
|
| Test for Administrator | 16 Mar 2006 13:19 GMT | 1 |
I have a VBA routine that I want to run one way for a 'regular user' and another way for a user with Adminstrator rights (or PowerUser rights). Can I test for that via VBA coding? Thanks.
|
| command bar won't delete in 2003 | 16 Mar 2006 12:37 GMT | 2 |
This appears to be a bug in Word 2003: We run code (by way of AutoExec macro in a global template in the Startup folder) to delete and then rebuild a company toolbar when the user starts Word. The following line deletes the Company toolbar:
|
| messed up VBA editor | 16 Mar 2006 12:25 GMT | 1 |
I've messed up the look of my VBA editor. I would like to have the project explorer docked to the left and the properties window docked below it, and the direct window docked below the code window - the default positions, in other words.
|
| return current table number | 16 Mar 2006 11:35 GMT | 1 |
I have a document with ten tables. I need a VBA function that returns the number of the table in which the cursor currently stands, so the function must return 1 if the cursor is in the first table, and 10 if the cursor is in the last table.
|
| Selection.InsertFile | 16 Mar 2006 11:33 GMT | 1 |
I have 2 docs. I want firstpage.doc to be insertet at the begining of the second doc. The firstpage should always be inserted in the begining, so using Selection is not a good way of doing this.. Selection.InsertFile FileName:="firstpage.doc", Range:="", _
|
| Word 2002 | 16 Mar 2006 11:11 GMT | 2 |
How do I automatically insert a documents file path and name into the footer of the document itself?
|
| Insert pages from one document into another using VBA | 16 Mar 2006 10:50 GMT | 6 |
I have document 1 opened and on the click of a button I would like to insert pages from document 2 at specific places in document 1. I know that we can insert a whole document into another document using insertfile method, I don't know how to only copy and insert a specific page ...
|
| Dialogs(wdDialogFileOpen).Show ignores ReadOnlyRecommended | 16 Mar 2006 07:24 GMT | 6 |
I really need some helpful hints (Word 2000, VBA): I'm saving the documents with "ActiveDocument.SaveAs strFullPath & "\" & strFileName, , , , , , True". Using the Menu-Item FileOpen or the Windows-Explorer, the dialog referring
|
| Feasibility Question | 16 Mar 2006 04:01 GMT | 4 |
Working in Office, 2003 with XP Pro workstations. We have a primary membership database running on Pervasive contains all our member data. It includes, from a recent upgrade, the ability to open a word template with merged date (using bookmarks) from the primary data file.
|
| PAGE CHANGE | 16 Mar 2006 03:05 GMT | 2 |
I need to make a new event which runs when the document (for example a new document, originally with only one page) adds a new page? Help me please....!!!! Thanks
|
| Autocorrect in an interactive template | 16 Mar 2006 00:55 GMT | 2 |
Is it possible to run autocorrect in a word template after its formfields are populated from a userform? I have been experimenting with the autocorrect object in word vba and I haven't been able to get it to do what I would like.
|
| Get the logged on user with vba | 15 Mar 2006 23:08 GMT | 3 |
Hello you all, I have a word document with some code behind it. In the code, I want to know the user who is logged on to the machine.
|
| What's wrong with this code? | 15 Mar 2006 22:27 GMT | 6 |
If Bob.doc is open the code runs fine even when I open a different doc, but if it's not open the code has a fit at line 6 even if Bob.doc exists on the harddrive. Any suggestions? Application.Keyboard (1037)
|