![]() |
|
#2
|
||||
|
||||
|
Hi GreenPolyps,
That is possible, using a macro like: Code:
Sub Demo()
Dim Rng As Range, i As Long
With ActiveDocument
For i = .FormFields.Count To 1 Step -1
With .FormFields(i)
If .Type = wdFieldFormCheckBox Then
Set Rng = .Range
.Delete
With Rng
.InlineShapes.AddOLEControl ClassType:="Forms.CheckBox.1"
.MoveEnd wdWord, 1
.InlineShapes(1).Width = .InlineShapes(1).Height
End With
End If
End With
Next
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Check Boxes
|
jellyrolls | Office | 4 | 07-15-2011 08:07 PM |
| Table - Check Boxes - Create Select All | lajohn1963 | Word Tables | 2 | 09-25-2010 11:18 AM |
| Can't open .pst legacy files | RetiredEngineer | Outlook | 1 | 11-14-2009 01:06 PM |
| Problem with Developer Form -- Check Boxes and Text Boxes | PCC | Word | 1 | 05-16-2009 05:22 AM |
check boxes in outlook 2007
|
kim | Outlook | 3 | 02-17-2009 10:34 AM |