Hi Bob:
No: It's a bug in VBA. The Macro *should* force the toolbar visible. But
I forgot that the docking mechanism is ignored. I'm sorry: I forgot...
Nancy: Try this version of the macro:
Sub ReviewingReveal()
Dim tb As CommandBar
Set tb = Application.CommandBars("Reviewing")
With tb
.Enabled = True
.Visible = True
.RowIndex = 9 ' Docking order
.Top = 300
.Left = 300
End With
End Sub
That should force the Reviewing toolbar into the middle of your screen, from
where you can drag it where you want it.
Cheers
On 12/7/06 10:18 PM, in article C0DA60D3.10664%
[email protected],
Just a shot in the dark here, but maybe the Reviewing Toolbar itself isn't
the problem... Seems like *something* you've tried should have made a
difference in one way or another
Have you tried going into Tools>Customize>Customize Toolbars/Menus to turn
the bar on from there? Also, in trying Beth's suggestion, did you click on
the _name_ of the bar (to highlight it) rather than just checking the box)
before clicking Reset? - And make sure the list in the lower left displays
the word Normal.
If all this still doesn't work try resetting the View Menu itself. When in
the Customize dialog it appears as a toolbar right below the actual Apple
Menu Bar. Ctrl+click it & choose Reset Command.
Good Luck |:>)
Bob Jones
[MVP] Office:Mac
On 7/11/06 10:34 PM, in article
(e-mail address removed), "(e-mail address removed)"
Aha! Thanks for this tip. I feel we're getting closer to a
solution... I am now the proud owner of a macro which has no red
text... but...
I'm still struggling though. I run the macro and it does not solve my
problem. If I uncheck "Reviewing" under View>Toolbars prior to running
the macro, the macro succeeds in checking it for me (activating it), so
it is doing something (a promising start). But it still does not
appear on my screen.
I have tried the other fixes in the web article on macros, by doing
Debug>Compile Normal. I also retried the other solutions suggested in
this thread (reset Reviewing, play with screen resolution, trash
Normal).
I'm really at a loss! If there is anything else you can suggest,
please let me know. Could this be related to something bigger like my
system software?
Thanks again for your patience and help!
Matt
John McGhie [MVP - Word and Word Macintosh] wrote:
Mi Hatt:
You're correct: You've been hit by the "Non-breaking-space bug".
Damn: The article I sent you to does not describe the problem.
What has happened is that you have pasted from a web browser into the VBA
editor. In the web browser, all the spaces were transposed into
non-breaking spaces to preserve the layout, because HTML rules munch
multiple spaces into one.
Unfortunately, to the Mac Word VBA editor a non-breaking space is a
different character -- it's not "white space", and it gives you this
error.
The cure is to replace all the spaces in front of the red lines with
"real"
spaces, and the problem will go away. If you have to do a lot of them,
paste the text first into a blank Word document, then use Find/Replace to
replace the non-breaking spaces with ordinary spaces.
Beth: That's the second user today who has been hit with this problem.
Could you please add that note prominently to the web article?
Cheers
On 11/7/06 12:59 PM, in article
(e-mail address removed),
"(e-mail address removed)"
Thanks Elliott and John for your suggestions.
Unfortunately trashing Normal didn't do it, nor did the screen
resolution strategy. I tried running the Macro below and it looks as
if it's buggy? It's my first time with Macros, but I read the linked
file explaining how to do it.
When I try running it, I get "syntax error"
in the VBE interface, four lines are red, which seems to mean
problematic:
.Enabled = True
.Visible = True
.RowIndex = 9 ' Docking order
.Left = 0
Those four lines. Any fixes? other suggestions. I'm getting desperate
here!
Thanks so much,
Matt
John McGhie [MVP - Word and Word Macintosh] wrote:
Here you go: run the following macro:
Sub ReviewingReveal()
Dim tb As CommandBar
Set tb = Application.CommandBars("Reviewing")
With tb
.Enabled = True
.Visible = True
.RowIndex = 9 ' Docking order
.Left = 0
End With
End Sub
If you don't know how, see here:
http://word.mvps.org/mac/installmacro.html
Cheers
On 10/7/06 2:39 PM, in article
(e-mail address removed),
"(e-mail address removed)"
Please help...
I've been having trouble displaying the Reviewing Toolbar. No amount
of toggling/untoggling, restarting Word, restarting my computer, or
even reinstalling Office has helped so far. I'm struggling with
reviewing and working on collaborative documents without this toolbar.
It worked fine for a couple of months after I first installed Office
2004 (Word version 11.2), but the toolbar then started appearing in
strange places and wouldn't let me drag it to the top of the screen.
Finally it just disappeared altogether. The other toolbars appear
unaffected.
Please help if you have any suggestions.
Matt
Powerbook G4; 1GHz; OSX 10.4.7
--
Please reply to the newsgroup to maintain the thread. Please do not
email
me unless I ask you to.
John McGhie <
[email protected]>
Microsoft MVP, Word and Word for Macintosh. Consultant Technical
Writer
Sydney, Australia +61 (0) 4 1209 1410
--
Please reply to the newsgroup to maintain the thread. Please do not
email
me unless I ask you to.
John McGhie <
[email protected]>
Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer
Sydney, Australia +61 (0) 4 1209 1410
--
Please reply to the newsgroup to maintain the thread. Please do not email
me unless I ask you to.
John McGhie <
[email protected]>
Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer
Sydney, Australia +61 (0) 4 1209 1410