Delphi OmniThreadLibrary + OPC Client
问题 I am working in a single-thread OPC client program managing 3 different Siemens PLCs connected to the same OPC Server, also by Siemens. The single-threaded client looks like this: loop begin processPLC1; processPLC2; processPLC3; end; Each processPLC procedures make calls to the underlying OPC library, such as: OPCutils.WriteOPCGroupItemValue(FGroupIf, FHandleItemOpc, Value); Ok, now I want to call each processPLC in a different thread and work in parallel. I did some research and started