Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 10-14-2020, 07:26 PM
Guessed's Avatar
Guessed Guessed is offline How to add multiple different color highlight buttons to toolbar Windows 10 How to add multiple different color highlight buttons to toolbar Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

You would need macros to do this via buttons since they aren't built-in. You can do a series of macros to toggle the colours. There is a finite number of highlight colours but if you know the available constant names for the colours then you just build another macro for each one.
Code:
Sub HL1()
  SetHiLite wdYellow
End Sub

Sub HL2()
  SetHiLite wdBrightGreen
End Sub

Function SetHiLite(iCol As Long)
  If Selection.Range.HighlightColorIndex = iCol Then
    Selection.Range.HighlightColorIndex = wdNoHighlight
  Else
    Selection.Range.HighlightColorIndex = iCol
  End If
End Function
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to create a "Font color" button and a "Highlight text" button in the Quick Launch toolbar ? gloub Word 12 02-19-2019 03:19 PM
Can I edit macro buttons on the quick access toolbar in excel? appo Excel Programming 2 11-13-2018 10:30 AM
Is it possible to use two of the same toolbar buttons in Word 2007? WaltR Word 3 08-04-2012 03:30 PM
Need to put two highlight buttons on toolbar in different colors davidmrt Word 6 12-11-2011 05:54 AM
How to add multiple different color highlight buttons to toolbar custom toolbar with buttons to open new docs based on templates Brandi Mail Merge 18 06-15-2010 02:10 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 06:52 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft