Word 2003 Clipboard automatically displayed

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Word 2003 Clipboard automatically displayed

Post by uncle »

Hi -

I have checked all the Clipboard Options, restarted. Still no Clipboard. I unchecked then re-checked, still no Clipboard.

I vaguely seem to remember that perhaps some macros have to be in Normal.Dot??? If this is still so, could you please rehearse how that is done in Normal.

Thank you very much.

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Welcome to Eileen's Lounge!

Do you mean that Edit | Office Clipboard doesn't display the Clipboard task pane?
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

Hi, Hans

Yes, it displays only by going to Edit/Office Clipboard. I am after having it displayed all the time, w/o my doing anything.

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Have you turned OFF (unchecked) the option "Collect Without Showing Office Clipboard" in the clipboard options?
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

Yes, Hans

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

If the Clipboard task pane isn't displayed automatically if you press Ctrl+C twice, there might be a corrupt setting.

Try the following:
- Select Start | Run...
- Type

winword /a

- Press Enter or click OK.
- This will start Word without loading Normal.dot and add-ins.
- Does the clipboard work now?
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

Hans - I am sorry that I am not making myself clear. What I am after is having the Clipboard open when I open a document.

Yes, it does appear when I press Ctrl+C twice. I don't want to have to do anything to get it open - I want it to appear with my documents. Possible?

Thank you.
Is there a macro I need to put in Normal.Dot?

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Ah, I apologize - I hadn't understood your request.

Try the following:
- Press Alt+F11 to activate the Visual Basic Editor.
- Click on Normal in the project explorer on the left hand side.
- Select Insert | Module.
- Enter or paste the following code into the module that appears:

Code: Select all

Sub AutoExec()
  CommandBars("Office Clipboard").Visible = True
End Sub
Quit and restart Word; if you're asked whether you want to save changes to the Normal template, click Yes.
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

I'm afraid that didn't work. I received "The command cannot be performed because a dialog box is open..." The dialog box was a Run-time error '5' - invalid procedure call or argument.
Debugging it, the CommandBar line is highlighted. (I did paste the code).

Thanks, Uncle

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Strange, that worked for me (although in Word 2007). Does this version work?

Code: Select all

Sub AutoExec()
  Application.OnTime Now + TimeSerial(0, 0, 2), "ShowClipboard"
End Sub

Sub ShowClipboard()
  CommandBars("Office Clipboard").Visible = True
End Sub
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

Morning -

Unfortunately, the new code still has the same line (CommandBar...) highlighted. I thought I might not be exiting the Editor correctly, so next time I Restarted and went into the Editor, I closed using Save Normal. Restarted, opened a document, no Clipboard.

Thank you. Uncle

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Do you use Norton AntiVirus or Norton Internet Security?
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

No. Use Avast. Thanks for your time!

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Which add-ins do you have (look at Tools | Templates and Add-Ins...)?
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

None, Hans....

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

Not the Adobe Acrobat toolbar either?
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

Not Adobe Acrobat. (This is a new to me PC so haven't had time to download a lot of stuff.)

Thanks.

User avatar
HansV
Administrator
Posts: 78494
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Word 2003 Clipboard automatically displayed

Post by HansV »

I'm afraid we've exhausted all causes for the error message that I know of, so I'm out of ideas. Sorry!
Best wishes,
Hans

uncle
3StarLounger
Posts: 278
Joined: 04 Aug 2010, 19:50

Re: Word 2003 Clipboard automatically displayed

Post by uncle »

I thank you Hans for your efforts!

Uncle

William
StarLounger
Posts: 79
Joined: 08 Feb 2010, 21:48
Location: Wellington, New Zealand

Re: Word 2003 Clipboard automatically displayed

Post by William »

Could the problem be a missing reference, though it's not obvious what it might be.

The "CommandBars("Office Clipboard").Visible = False" code doesn't work for me either, using Word 2003 - though the following does:

Code: Select all

WordBasic.EditOfficeClipboard
This displays the Office Clipboard, and there don't need to be any open documents. I haven't tried this as part of an AutoExec macro, however.