To get more than 10 connections, you will have to make 2 changes to ModbusTCPCom.vb
Near the top of the code, change the array size to a higher number than 10:
'* Use a shared Data Link Layer so multiple instances will not create multiple connections
Private Shared DLL(10) As MfgControl.AdvancedHMI.Drivers.ModbusTCP.ModbusTcpDataLinkLayer
Private MyDLLInstance As Integer
In the CreateDLLInstance subroutine, change the i<11 to the value you used above +1
While DLL(i) IsNot Nothing AndAlso DLL(i).IPAddress <> m_IPAddress AndAlso DLL(i).TcpipPort <> m_TcpipPort AndAlso i < 11