![]() |
|
#12
|
||||
|
||||
|
Here is some aircode that might get you started. I'll assume that you use the checkbox Tag property to store the associated bookmark name
Code:
Dim aCtl as MSForms.Control
For Each aCtl In Me.Controls
Select Case TypeName(aCtl)
Case "CheckBox"
If ActiveDocument.Bookmarks.Exists(aCtl.Tag) then
ActiveDocument.Bookmarks(aCtl.Tag).Range.Font.Hidden = Not aCtl.Value
End If
End Select
Next aCtl
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
number every second page consecutively
|
acrimin | Word | 10 | 10-02-2024 04:18 AM |
Number every other page consecutively
|
fredhinke | Word | 1 | 11-11-2016 01:30 PM |
Import external font to Word document
|
Patrick_87 | Word | 3 | 07-17-2015 01:04 AM |
| how to put three videos in PowerPoint 2013 and have them play consecutively | historyb | PowerPoint | 0 | 10-16-2014 11:42 AM |
Automatically inserting information into report
|
joughin | Word | 3 | 05-15-2012 09:12 PM |