Hi,
I have the problem that I'm instanciating an object on the UI-thread (WinForms). This object creation probably takes very long, and I would like to have some sort of a "timeout" for that method (because it's blocking my app).
The problems I have are: 1. the object must be created on the UI thread 2. the object is a foreign object, and I don't have any source access, so I cannot modify it.
So me question would be, if somebody has a creative idea, if it is possible to create a logic which stops the method for been executed if a timeout is reached?
tia Martin