| Thread | Last Post | Replies |
|
| Compile error in hidden module: AutoExec | 22 Apr 2005 04:09 GMT | 2 |
I am suddenly getting "Compile error in hidden module: AutoExec" when I start MS word and when I close out a MS Word 2000 (SR-2). I tried the 'reinstall' function from my original CD ... no apparent change. If I select the 'Help' button, it talks about a 'protected module' and
|
| List Styles Dialog | 22 Apr 2005 01:28 GMT | 2 |
Does anyone know why this doesn't work? Sub ShowListStylesDialog() With Dialogs(wdDialogFormatBulletsAndNumbering) .DefaultTab = wdDialogFormatBulletsAndNumberingTabListStyles
|
| Iterate thru 'Heading 1' paragraphs | 21 Apr 2005 23:43 GMT | 1 |
For a variety of reasons, I need to iterate thru the 'Heading 1' paragraphs of a document. I am currently doing this by iterating thru each paragraph and if the paragraph style = "Heading 1", I perform whatever operations is needed. Is there someway, I could directly iterate thru ...
|
| pass params 2 WORD | 21 Apr 2005 19:01 GMT | 2 |
Hi there! thank you for reading me!! My questions is simple: Is it possible to open a Word Document passing some parameters in order to use them as field values?
|
| Refreshing a Combo Box | 21 Apr 2005 17:40 GMT | 2 |
I have a user form with two combo boxes. In ComboBox1, the user selects a Division from 1-16. Based on that selection, ComboBox2 is then populated with the appropriate corresponding choices. My problem is that if the user chooses Division 3 for example, then changes his mind ...
|
| How to Access Container from within an ActiveX Control! | 21 Apr 2005 16:31 GMT | 8 |
i have an activex control for Word. i want to send Printing command to my Container(Word) to print itself at specific location from within my ActiveX (My be on clicking some context menu item.) is it possible to do that. if so then plz help me.
|
| Difficulty in passing parameters to word | 21 Apr 2005 15:59 GMT | 1 |
want to use parameter in where statement while selecting datasource for mailmerge application(through VBA) and has to get parameters from other application, so what is the method i can use to accept the parameters from other application which will also open the word.
|
| Macro to clear a form | 21 Apr 2005 15:11 GMT | 4 |
I have created a form in Word for writing end of year school reports. I have made a custom toolbar that contains a save icon and a spellcheck icon. I want to add an icon (I can do this bit) that when clicked opens a new form. I also want it to close the old one that has been ...
|
| VBA MailMerge Request(URGENT) | 21 Apr 2005 14:34 GMT | 1 |
i m able to pop up any of the step of the mail merge wizard through VBA programming in office 2003, can load data direclty from database thru programming but the actual requirement is to pop the dialog from which user can select
|
| Up dating calculation form fields | 21 Apr 2005 14:34 GMT | 1 |
Word 2000. I have created a form template that contains calculation form fields (the calculate on exit has been turned on for each field). I have also created a user form that passes the results to the fields on the template this aids my end customers in data entry. The results ...
|
| newbie question - VBA - mailmerge | 21 Apr 2005 14:34 GMT | 3 |
I'm doing a mail merge in Word. I'm using the last name to indicate possession, but the following passage will not be gramatically correct if the LastName field ends in "s" (or "z"):
|
| To track the deletion of some OleObject? | 21 Apr 2005 14:34 GMT | 1 |
i have few OleObjects on my document and i want to track the event when a user goes to delete that object. is it possible. if so then how? Thanks Ahmad Jalil Qarshi
|
| Hide CommandBar Customize | 21 Apr 2005 14:34 GMT | 3 |
I've created a Custom CommandBar and i don't want to allow the user to customize the Word CommandBars. I've managed to disable the "Toolbar List" menu (right-clicking the CommandBars), but i can't access the dropdown button of the CommandBar (the
|
| Hiding and displaying Object (image or text) by a custom toolbar button | 21 Apr 2005 14:34 GMT | 1 |
Just wanted to know, if there is a way to hide or show, certain objects like an image or a string of text. I.e. a toolbat button, would be responsible for either hiding the image or text, and also for showing the image or text.
|
| Removing macros from a document programmatically... | 21 Apr 2005 14:32 GMT | 4 |
I am trying to remove macros from my document with the following code: For Each objComponent In objWordDoc.VBProject.VBComponents If objComponent.Name <> "ThisDocument" Then objWordDoc.VBProject.VBComponents.Remove objComponent
|