In VBA for MS Word 2010, how can I get Word to bring up a color palette dialog box so the user can pick a color?
There are tons of examples on how to do it in Excel, but I haven't found any help for Word users. Here's the code for Excel:
Application.Dialogs(xlDialogPatterns).Show
Problem is, there's no wdDialogPatterns equivalent, nor can I find anything with a name that suggests a color palette dialog. I've found wdFormatBordersAndShading, but it's not quite the same: I want the user to select a color for later and repeated use.
Thanks!
