| Thread | Last Post | Replies |
|
| template for plain letters and reports. | 16 Aug 2006 12:54 GMT | 1 |
I would like to install just plain Microsoft word to my desktop.
|
| Printing Forms from Macros | 16 Aug 2006 11:40 GMT | 9 |
I have created some protected forms for users but I also have a customized printing menu. This enables the users to print to different paper trays (we have several) easily without having to go CTRl P change the paper type and remember which tray is which each time.
|
| Macro Coding calculating if one date entry is before another date entry | 16 Aug 2006 10:34 GMT | 1 |
I have two date fields within a User Form. I require code that will amend produce two different sets of wording dependant on whether Date A is before or after Date B. ie If Date A is before Date B then Type "xxxxxx"
|
| Can't Find Custom Toolbar | 16 Aug 2006 06:14 GMT | 3 |
I spent all day writing macros yesterday and creating a custom toolbar with macro for a template. Today I opened the template and toolbar is no where to be found...the macros are still available though. Where did it go?
|
| Formatting pictures and text | 16 Aug 2006 04:55 GMT | 3 |
Hello. I am rather new to all of this, so please be patient... I am a technical writer and try to create a macro that inserts icons, formats the icon, and indents the text. I think i've figured out how to insert the icon and format it. My problem is indenting the paragraph that
|
| What am I doing Wrong: Section Break Protection | 16 Aug 2006 02:43 GMT | 4 |
I have a document and at the bottom of page 1, I insterted a "Section Break (Next Page)". On the Sub_AutoNew, I call the following as per another post to protect everything above the section --- ActiveDocument.Sections(1).ProtectedForForms = True --- However, nothing
|
| Open dot as doc with macro or link | 16 Aug 2006 00:34 GMT | 2 |
Hello all, need some help with this one. Is there a way to insert VBA code or a link in a Word document that would open a document template (dot file) as a new document when executed? This would need to work on
|
| Fields in a form | 16 Aug 2006 00:32 GMT | 3 |
Can I clear the fields in a form, once I have printed it. I currently need to manually delete all fields each time I use it. I know there must be a way to do this.
|
| Delete all Bold Text in a Macro | 16 Aug 2006 00:14 GMT | 2 |
I can't figure out how to record a macro that deletes all Bold Text. Here is what it recorded for me: Selection.Find.Replacement.ClearFormatting With Selection.Find
|
| Need help with some VBA on Excel & Word | 15 Aug 2006 22:34 GMT | 4 |
Let me post this again because I don't think I explained this well the first go around: The code below opens up a word doc, looks for the word "Primary Key:" then gives me the corresponding answer. However, I require a tweak
|
| VBA - selects current table cursor is in | 15 Aug 2006 21:56 GMT | 4 |
Also require macro that will select all but first row of table cursor is positioned in: Sub TableExcept1stRow() ActiveDocument.Tables(1).Select
|
| Auto copying VBA code | 15 Aug 2006 20:21 GMT | 3 |
I have a document that contains a button that the VBA code goes out to a database and collects a unique number. Then it returns the number to the document as a unique ID. I am having an issue that when I copy the button over to a new document
|
| concatenate two table cells- get rid of extra hidden chars? | 15 Aug 2006 18:06 GMT | 4 |
I am cycling through my documents concatenating the contents of two cells (cell.range) in each row of source tables. I do so by taking left(Cell1.text, len(Cell1.text)-2) & Cell2.text This does put both cell contents together, but it leaves me with an extra
|
| Automating the filename for pdf conversion | 15 Aug 2006 17:55 GMT | 1 |
I use a print driver based software package to convert my files to PDFs. The code below prgramatically converts the doc to a pdf. It opens a save as dialog which then requires me to enter a filename. It then saves the doc as apdf under the filename that I entered.
|
| Parsing a date | 15 Aug 2006 17:53 GMT | 4 |
I want to write a VBA to extract certain data in MS Word documents and copy to an Excel document. Inside the Word document there are dates of the form "dd/mm/yyyy", and I cannot tell anything about the date format setting of the local machine.
|