View Single Post
 
Old 10-26-2018, 12:07 AM
andi_bln andi_bln is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Oct 2015
Location: Berlin
Posts: 8
andi_bln is on a distinguished road
Default Placing in a table cell text and a formfield

Hello,

I'm trying to place a text in a table cell and right after the text ( within the cell ) , a formfield ( Checkbox ) must be placed. At the moment it's not possible to do it, because the Checkbox is placed always in the next cell. I need to collapse the cell range to the end but I don't know how..
Could you help?
Sorry for my poor english ..

Andreas


example

Dim Ff As FormField, Rng As Range
Set Rng = DC.Range(Start:=MainTable.Cell(14, 1).Range.Start, _
End:=MainTable.Cell(14, 1).Range.End)



Set Ff = DC.FormFields.Add(Rng, wdFieldFormCheckBox)
Reply With Quote