S
SunshineStateBroker via OfficeKB.com
Right now i have a macro that auto-generates a series of text form input
fields based on a number that a user entered (thank you to those on this
board that assisted in the creation of said macro), i am now running in to
the problem that if the user's input needs more than one line, the text form
field goes all the way back to the left edge of the screen. i tried playing
around with the .LeftIndent command to no avail.
Here is a snippet of my code, can someone assist me in how to force the text
field to indent to the appropriate position on consecutive lines?
.TypeText "Grantor:"
.LeftIndent = InchesToPoints(0.13) '<-- This is where i failed at my attempt.
.FormFields.Add Range:=Selection.Range, Type:=wdFieldFormTextInput
.TypeParagraph
.TypeText "Grantee:"
.FormFields.Add Range:=Selection.Range, Type:=wdFieldFormTextInput
.TypeParagraph
.TypeText "Date Recorded:"
.FormFields.Add Range:=Selection.Range, Type:=wdFieldFormTextInput
.TypeParagraph
Thank you.
fields based on a number that a user entered (thank you to those on this
board that assisted in the creation of said macro), i am now running in to
the problem that if the user's input needs more than one line, the text form
field goes all the way back to the left edge of the screen. i tried playing
around with the .LeftIndent command to no avail.
Here is a snippet of my code, can someone assist me in how to force the text
field to indent to the appropriate position on consecutive lines?
.TypeText "Grantor:"
.LeftIndent = InchesToPoints(0.13) '<-- This is where i failed at my attempt.
.FormFields.Add Range:=Selection.Range, Type:=wdFieldFormTextInput
.TypeParagraph
.TypeText "Grantee:"
.FormFields.Add Range:=Selection.Range, Type:=wdFieldFormTextInput
.TypeParagraph
.TypeText "Date Recorded:"
.FormFields.Add Range:=Selection.Range, Type:=wdFieldFormTextInput
.TypeParagraph
Thank you.