I have some .NET interop code where I've managed to load objects and read properties, however I am having trouble with setting a property on an object. Here's the relevant parts of the Delphi code: uses mscorlib_TLB, Winapi.ActiveX; type // Irrelevant parts of the code omitted TDotNetObject = class(TObject) private [...] read more
I have C++ code that hosts a clr in order to make use of Managed.dll, written in c#. This .net has a method like the following that allows code to register for notification of events: public void Register(IMyListener listener); The interface looks something like this public interface IMyListener { void [...] read more
I have some issue in accessing the dictionary item in VB.NET. My intension is to access the key without looping. The dictionary under consideration is nested to 4th level. The issue is that the Keys at level 1, level 2 an level 4 are known. All I need to do [...] read more
I am creating a database job execution program that will allow users to automate data set retrieval from various API interfaces, and import them to our database. Once all the jobs are loaded at application start, a background worker engine_JobTrigger starts a loop that repeatedly checks the date and time [...] read more