Re: Word Form with fields
Nobody has a better method? I don't need to save the data, just get it printed out without using pen and paper. Of course, the next step would be saving the data, so I don't want to lock that out either.
I think it's going to work out. Maybe not perfectly the first time, but I did half of the 4 pages today, and it seems OK.
I was hoping someone had a comment before I got to the point of no return or had to redo. I don't like doing something twice :)
Re: Word Form with fields
I believe you can set the properities of such fields to allow less then unlimited characters.
I recorded a macro while doing that
VB Code:
CommandBars("Forms").Visible = True
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
Selection.PreviousField.Select
With Selection.FormFields(1)
.Name = "Text2"
.EntryMacro = ""
.ExitMacro = ""
.Enabled = True
.OwnHelp = False
.HelpText = ""
.OwnStatus = False
.StatusText = ""
With .TextInput
.EditType Type:=wdRegularText, Default:="", Format:=""
.Width = 11
End With
End With
I hope that helps!