Hi,
how can I activate my created 'ContentControl' (cursor blinking in this one)?
I need something like this (marked by red color):
Code:
Dim i As Long
Dim myContentControl As contentControl
For i = 1 To ActiveDocument.ContentControls.Count
If ActiveDocument.ContentControls(i).Title = "test" Then
Set myContentControl = ActiveDocument.ContentControls(i)
End If
Next
myContentControl.Activate
Please help me