I tried to adapt my project to the latest version on Trunk, but activating the extension leads to a series of InvalidOperationExceptions (illegal cross thread call). I tried to wrap some of the functionality in
```
if (xxx.InvokeRequired)
xxx.Invoke(new MethodInvoker(() => { doSomething(); });
else
doSomething();
```
but that did not work, as not all components are controls.
Comments: ** Comment from web user: danames **
```
if (xxx.InvokeRequired)
xxx.Invoke(new MethodInvoker(() => { doSomething(); });
else
doSomething();
```
but that did not work, as not all components are controls.
Comments: ** Comment from web user: danames **
Felix thanks for catching this. Troy has been updating the extension manager and Eric has been updating the header control so it could have been introduced by changes from either of them. We'll look into it. - Dan