It works, thanks!
But this macro starts each time any content control gets focus. So I need to either change the code so it just starts when a specific content control is marked or do something like:
Code:
Private Sub Document_ContentControlOnEnter(ByVal CC As ContentControl)
If CC.Title like "Leder" Then doSomeThing
End Sub
It's been i while since I worked with macros so it's not stright forward to me, but I'll figuere it out.