Group:  Microsoft Word » microsoft.public.word.vba.general

Geek News

Threads Replies Last Post
275 Pages: 1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  >>  
Copying A Doc's Properties or Profile
Any one out there know if there is a way of copying a document's profile or properties that resides in a document management system like Imanage, Worksite, etc. I'd like to be able to copy the following properties: Document Name, Author, Client, Matter, Document Type, Subtype, etc. and apply them to a document I'm currently saving rather than having to input that information all over a...
1 12/24/2008 3:46:04 AM
Copying Document Properties, Document Profiles
Any one out there know if there is a way of copying a document's profile or properties that resides in a document management system like Imanage, Worksite, etc. I'd like to be able to copy the following properties: Document Name, Author, Client, Matter, Document Type, Subtype, etc. and apply them to a document I'm currently saving rather than having to input that information all over a...
1 12/24/2008 2:44:01 AM
Copying a Saved Document's Properties or Profile
Any one out there know if there is a way of copying a document's profile or properties that resides in a document management system like Imanage, Worksite, etc. I'd like to be able to copy the following properties: Document Name, Author, Client, Matter, Document Type, Subtype, etc. and apply them to a document I'm currently saving rather than having to input that information all over a...
1 12/24/2008 2:23:00 AM
Hide/Unhide a table according to the font color VBA/Word 2003
Hi everyone, Different tables in one document, should be hidden or unhidden according to the font color. With the code "If oTbl.range.font.color=wdcolorDarkRed then oTbl.Range.font.hidden=True" some tables are not recognized (code color value=999999 However the code "If oTbl.cell(1,1).range.font.color=wdcolorDarkRed.." seems to work.. Is the first one, not working because of the numbe...
4 12/23/2008 11:00:02 PM
hack by deburgger
all my data become 1kb, how to resolve ?...
2 12/23/2008 6:21:03 PM
VBA formating callouts
This is a strange one. I've created a subroutine in Word 2007 to apply some formatting to the selected callout. Only problem is that if any property of the callout is read (or assigned to a variable) the selection changes to include the originally selected callout and the previous callout (but only the text box portions of the callouts). This, of course, causes some of the methods to ...
4 12/23/2008 6:06:01 PM
Automatically replacing text with links...
Hi everybody! Here's the story... I e-mailed a document to myself to avoid losing it when my computer was being a bit schizo and refusing to save on any of my drives. Somehow e-mailing this doc messed up all of my footnotes with linked sources when I resaved it on our shared network drive, so none of them work any longer. I had actually made the text of the link exactly the same as t...
5 12/23/2008 5:59:01 PM
Font Dialog Box changed
I am using MS Office XP and up until now everything was fine. Today i tried to change the Font (that i've done a million times) in the Font Dialog Box (Format Menu, Font) but when i opened the dialog box it looked different than before. Had more options than normally, and the preview for the font no longer shows my highlighted text, only the "Sample" so i can't see what MY text would loo...
3 12/23/2008 5:07:01 PM
wordML XML and HTML
Problem: In my xml file - there is element that has HTML formatted text in it. When Word imports my XML file - it displays the element as text string and does not render the HTML stored in the element. Normally - that is probally what I would want - but in this case I need the table render. <examples> <customer> John smith</customer> <example_table><...
8 12/23/2008 8:43:31 AM
Button to Show Userform for editing mistakes
HI, I was just wondering is there a way I can use a button to recall the Userform so that if there was mistakes made on the initial input of the data when the documented was created that it will show the Userform again with all the inputted on it still, so that it can be edited again or changed? Thanks...
4 12/23/2008 4:43:01 AM
My own dictionary and proof tool
Hi There is a new ortography in Portuguese, and Microsoft has said that they are not going to deliver a new dictionary for Office (lower than 2007). So, I'm preparing a proof tool that will work analysing the words in the document one-by-one and, if they were old style typed, it will give some options, such as correct once, correct all in the document, correct always, add to dictionar...
5 12/23/2008 2:37:02 AM
How to create action or command buttons in office 2003
...
2 12/23/2008 12:38:39 AM
Button to add new tabstrip or multipage
Howdy, I'm trying to create a template with a form that will allow me to create a "News Roundup." I find pertinent articles and then I copy-and-paste their headline, byline and article into Word and reformat it to meet the needs of my office. Using a template and form would help me save time because the formatting would be done automatically. That being said, I think I would like...
4 12/22/2008 11:01:00 PM
Word 2003 Track Changes problems
For some reason on my work computer I cannot format deletions (track changes/options)...it doesn't even show, only the insertions drop down shows. How do I change this?...
2 12/22/2008 6:57:01 PM
macro to open template or document in 2007
I have templates and documents that I would like to set up a macro to open. I was able to do this in an older version of Word but haven't been able to figure it out for 2007. I can probably enter programming if someone gives it to me, but I am using record to create macros. Thanks!...
5 12/22/2008 5:56:09 PM
Setting up Word 2007 to run macros
Hi, I am trying to migrate a Word 2003 template with macros & forms to Word 2007. On a form, it gives a compile error when it reaches the "Format" function: "Compile Error: Cannot find project or library". As the format function is in the basic VBA library, I presume the problem is Word's frustrating security. How do I enable the library? The menu Tools-References is greyed out, which is ...
3 12/22/2008 11:19:00 AM
Updating a Graph in word
I have a user form from which I want to plot a graph. I know how to get the info from the form but am finding it difficult to plot the graph. I have got the code below from another website which seems to do what I want (e.g. plot a graph) but it inserts a new graph each time you run the code. I am sure it is due to the line I have marked "here" but I don't know how to change it to reference a...
4 12/22/2008 10:13:43 AM
exiting the windows fax-wizard prematurely
hallo, is it anyway possible to detect with VBA-code when a user exits prematurely the windows fax-wizard with 'Cancel' ? mvg.... ...
4 12/22/2008 10:12:36 AM
Add paragraph to Paragraphs collection?
Say I've got Dim myParas As Paragraphs Dim myPara As Paragraph ' myParas = first and second paragraph in doc Set myParas = ActiveDocument.Range(0, ActiveDocument.Paragraphs(2).Range.End).Paragraphs ' myPara = fifth paragraph in doc Set myPara = ActiveDocument.Paragraphs(5) .... then there is no way to add myPara to myParas, so that myParas contains the first, second, and fifth p...
3 12/22/2008 8:12:06 AM
Searching for Text in a Footnote
I can do a search in Word and find text in a footnote. However, when I use the code below, recorded as a VBA macro during the search, it does not find text in a footnote. Why does it do this, and how can I search using VBA for text in a footnote? Thanks, Alan Sub FindBookmark() ' ' FindBookmark Macro ' ' Selection.Find.ClearFormatting With Sel...
2 12/22/2008 3:35:47 AM
Need macro to always go to the same folder
I’m using Word 2003 and am not a programmer. The macro below automates mail merge requests. When I need to choose which document to merge, I’d like to always go to the same folder (the merge fields are already in the document). **This is the path to the folder c:/Documents/My Documents/My Business/1Consultancy/Training/Seminars/InPerson/Courses/Computer Magic/Class Samples/Trainin...
11 12/21/2008 11:44:01 PM
Navigate to the End of the Paragraph -- w/o Mouse
Version of Word: 2003. I would like to navigate to end of a paragraph from the keyboard without using the mouse. Any suggestions or macros would be greatly appreciated. e125...
4 12/21/2008 11:07:44 PM
Getting Range of Next Line without selecting it
I want to get the Range of the "next" line (one down from current cursor position), so I can determine if it is empty, and select it if it is not empty. I wrote the following code, but I am having two problems: It sets the Range start properly only when the current line is selected (I don't want to require this). Also, I am not sure how to find the value of the end of the next lin...
3 12/21/2008 1:24:17 AM
Adding a shape or textbox to a specified page
I've tried to write some code that doesn't work quite as I would like. Can anyone help? Various things are done correctly in the earlier part of the code, which I don't need to bother you with. However I then want to add a new page to the end and place a text box on there (left hand corner) with given text. This is given below and works intermittently. -------------- doc.Range(1).Inse...
3 12/21/2008 12:19:00 AM
Sequentially Numbering Labels
I have a project where I need to sequentially number labels, based on a starting/ending number in a UserForm. The labels are 80 to a sheet (Avery 5267) and the numbers need to run down and across. I have managed to cobble together some code that will do this as long as I only need one sheet of labels. When I need more than 80 labels I add rows to my label template, however with my c...
2 12/20/2008 2:56:13 AM
275 Pages: 1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  >>  

Home | Search | Terms | Imprint Contact
Newsgroups Reader - provided by WiredBox.Net