Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Word and its quirks

  • 08-01-2005 12:48pm
    #1
    Closed Accounts Posts: 2,035 ✭✭✭


    Could anyone explain why MS Word (2000 on XP) has a habit of making loads of my text hyperlinked...even when it never was and isn't actually linked. i.e. The format box beside Font refuses to let me set it back to normal text. I mean I just copy and paste from 1 word to another straight and it still underlines half the paragraph (calls it a hyperlink but doesn't go blue just black).

    Is there anyway to turn off hyperlinking full stop? I already have word blocked on my firewall but that just upsets it. :rolleyes:


Comments

  • Registered Users, Registered Users 2 Posts: 14,318 ✭✭✭✭Raam


    try this...

    select the text that you want to make 'normal'. Right click it, point to 'Hyperlink', then in that sub-menu choose 'Remove Hyperlink'

    KR


  • Closed Accounts Posts: 2,035 ✭✭✭Bri


    Thanks but unfortunatley I'm aware of this. It's a long-winded way to do it hence me wanting to turn it off. Also most of the time they arn't really hyperlinks - they're not a web address or e-mail and hence don't point to anything. They just get formatted as if they were, which is affecting my own formatting. It's incredibly irritating as I'm copying inside of Word only and in moving from 1 doc to another it 'adds' this kind of sh!t.

    The original document wasn't made up of web-copied material by the way, just my own writings which baffles me even more.

    Thanks anyway.


  • Registered Users, Registered Users 2 Posts: 884 ✭✭✭Cork Skate


    Instead of using pasting, go to Edit, Paste Special and select "Unformatted
    Text"

    Also try and use Tools - Auto correct - Autoformat - uncheck "Internet & Network Paths as Hyperlinks"

    If you already have a document full of hyperlinks, here's a macro to
    turn them all into plain text:

    Public Sub UnHyperText()
    Dim nLinks As Long, i As Long
    nLinks = ActiveDocument.Hyperlinks.Count
    For i = nLinks To 1 Step -1
    ActiveDocument.Hyperlinks(i).Delete
    Next i
    End Sub


    I got that from a mate, i aint the best with macros so can help any further with it. Hope that helps !!


  • Closed Accounts Posts: 336 ✭✭Miles


    Open Word and type this in: = rand (200,99)

    Wait three seconds and see what happens.;)


  • Registered Users, Registered Users 2 Posts: 884 ✭✭✭Cork Skate


    Miles wrote:
    Open Word and type this in: = rand (200,99)

    Wait three seconds and see what happens.;)

    This is what it does !!


  • Advertisement
  • Closed Accounts Posts: 336 ✭✭Miles


    Correct. Harmless but fun to watch.


  • Closed Accounts Posts: 2,035 ✭✭✭Bri


    Thanks... :rolleyes:


  • Closed Accounts Posts: 2,035 ✭✭✭Bri


    Cork Skate wrote:
    Instead of using pasting, go to Edit, Paste Special and select "Unformatted
    Text"

    Also try and use Tools - Auto correct - Autoformat - uncheck "Internet & Network Paths as Hyperlinks"

    If you already have a document full of hyperlinks, here's a macro to
    turn them all into plain text:

    Public Sub UnHyperText()
    Dim nLinks As Long, i As Long
    nLinks = ActiveDocument.Hyperlinks.Count
    For i = nLinks To 1 Step -1
    ActiveDocument.Hyperlinks(i).Delete
    Next i
    End Sub


    I got that from a mate, i aint the best with macros so can help any further with it. Hope that helps !!

    Cheers for the help. I missed it earlier with Miles' wonderful suggestion below.


  • Closed Accounts Posts: 336 ✭✭Miles


    Bri wrote:
    Thanks... :rolleyes:
    You're welcome.:rolleyes:


  • Moderators, Recreation & Hobbies Moderators, Science, Health & Environment Moderators, Technology & Internet Moderators Posts: 93,583 Mod ✭✭✭✭Capt'n Midnight


    Word Quirks

    RANT there is tons of code in it that should not be there, how much time was wasted on these rather than on getting working stable ?
    google for - word easter egg
    google for - word site:annoyances.org /RANT


  • Advertisement
Advertisement