rubab Posted March 15, 2008 Posted March 15, 2008 I am using Microsoft Office Word 2007. I have a document which has approximately 1000 link in it & i want to bold them. But these links are between lines, which means i have to bold all these links manually.I want to know is there any option to bold & Underline all the links at the same time?When i put the cursor in the hyperlink and right click the Style it shows me this window:Can you tell me what should i do now, because i am still not able to change all the Links to Bold or Underlined.
spacesurfer Posted March 15, 2008 Posted March 15, 2008 You need to write a macro. Here's a macro that removes hyperlinks:Sub removeallhyperlinks() For Each myHyperlink In ActiveDocument.Hyperlinks myHyperlink.Delete Next myHyperlinkEnd SubSo you need to write a similar macro. Just replace myHyperlink.Delete with the VB script to make it bold. Don't ask me how. read the help file.Sub makeboldhyperlinks() For Each myHyperlink In ActiveDocument.Hyperlinks add script to make bold Next myHyperlinkEnd Sub
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now