Is there a way to clear this? (Not disable it, just clear it out.)

Word 2002, SP3

Thanks.

~ Peri

Re: Most Recently Used Font List by Klaus

Klaus
Wed Nov 03 17:12:07 CST 2004

"Peri" wrote:
> Is there a way to clear this? (Not disable it, just clear it out.)
>
> Word 2002, SP3


Hi Peri,

You could set/clear the corresponding Registry key:
System.ProfileString("Options", "NoFontMRUList") = "1"
((Restart Word))
System.ProfileString("Options", "NoFontMRUList") = "0"
((Restart Word))

But you probably can't clear it while Word is running.

:-( Klaus

Re: Most Recently Used Font List by Peri

Peri
Wed Nov 03 19:59:07 CST 2004

Thanks, Klaus. I was hoping it would be much simpler than that ;-) .

Klaus Linke wrote:
> "Peri" wrote:
>
>>Is there a way to clear this? (Not disable it, just clear it out.)
>>
>>Word 2002, SP3
>
> Hi Peri,
>
> You could set/clear the corresponding Registry key:
> System.ProfileString("Options", "NoFontMRUList") = "1"
> ((Restart Word))
> System.ProfileString("Options", "NoFontMRUList") = "0"
> ((Restart Word))
>
> But you probably can't clear it while Word is running.
>
> :-( Klaus

Re: Most Recently Used Font List by Klaus

Klaus
Wed Nov 03 20:18:37 CST 2004

Peri wrote:
> Thanks, Klaus. I was hoping it would be much simpler than that ;-) .

Manipulating the combo box font dropdown directly with a macro doesn't seem
to work:
CommandBars("Formatting").Controls("&Font:").ListHeaderCount = 0
(...this gives an error message)

Klaus