View Single Post
 
Old 09-13-2016, 05:13 AM
Jow Jow is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Sep 2016
Posts: 3
Jow is on a distinguished road
Default 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
Reply With Quote