M
Mike Fechner
Guest
You can’t pass ABL function/method references to .NET. All you can do is build your own .NET library, which translates the synchronous callbacks into .NET events which you can handle from the ABL side. When the thing is async, you will need to perform the thread synchronization on the .NET side using the InvokeRequired/Invoke mechanics.
Continue reading...
Continue reading...