Sub
Makro44()
ActiveDocument.Unprotect Password:=
""
ActiveDocument.Tables(1).Cell(2, 1).
Select
Selection.InsertRowsBelow 1
Selection.Rows.SetHeight RowHeight:=InchesToPoints(1.1), _
HeightRule:=wdRowHeightExactly
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
With
Selection.FormFields(1)
.Name =
"Datum"
.EntryMacro =
""
.ExitMacro =
""
.Enabled =
True
.OwnHelp =
False
.HelpText =
""
.OwnStatus =
False
.StatusText =
""
With
.TextInput
.EditType Type:=wdDateText,
Default
:=
""
, Format:=
"dd.MM.yyyy"
.Width = 10
End
With
End
With
ActiveDocument.Tables(1).Cell(3, 1).
Select
Selection.MoveRight Unit:=wdCell
Selection.Font.Size = 3
Selection.TypeParagraph
Selection.Font.Size = 12
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
Selection.MoveRight Unit:=wdCell
Selection.Font.Size = 3
Selection.TypeParagraph
Selection.Font.Size = 12
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
Selection.MoveRight Unit:=wdCell
Selection.Font.Size = 3
Selection.TypeParagraph
Selection.Font.Size = 12
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
Selection.MoveRight Unit:=wdCell
Selection.Font.Size = 3
Selection.TypeParagraph
Selection.Font.Size = 12
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
Selection.MoveRight Unit:=wdCell
Selection.Font.Size = 3
Selection.TypeParagraph
Selection.Font.Size = 12
Selection.FormFields.Add Range:=Selection.Range, Type:= _
wdFieldFormTextInput
ActiveDocument.Tables(1).Cell(3, 1).
Select
ActiveDocument.Protect Password:=
""
, NoReset:=
False
, Type:= _
wdAllowOnlyFormFields
End
Sub