Insert more than 500 characters on FormField Word by VBA
Hi!
How can i insert a FormField on Word whit more than 500 characters, by VBA? I'm trying by code below, but it's inserting only the first 255 characters an the lasts 255 characters, but my complete text has around 900 characters, its inserting my text cuting..
If Len(FillText) > 255 Then
SecondBit = Right(FillText, 256)
.FormFields("fldIndeferidos").Result = FirstBit
.Unprotect
.Bookmarks("fldIndeferidos").Range.InsertAfter SecondBit
.Protect Type:=wdAllowOnlyFormFields, NoReset:=True
Else
ActiveDocument.FormFields("fldIndeferidos").Result = FillText
End If
...i have tryed change the code to create ThirdBit for more than 510 characteres, but i had not success..
Thanks
|