View Single Post
 
Old 05-31-2016, 04:19 PM
gmaxey gmaxey is offline Windows 7 32bit Office 2010 (Version 14.0)
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

What have tried? Few here are going to develop your project for you. If you want friendly names then you are going to have defined names that you can convert to friendly. Something like this to get you started:

Code:
Private Sub UserForm_Initialize()
Dim oBM As Bookmark
  For Each oBM In ActiveDocument.Bookmarks
    ListBox1.AddItem Replace(oBM.Name, "_", " ")
  Next
  ListBox1.MultiSelect = fmMultiSelectMulti
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote