For a single button to write to 2 PLCs you would need to do it in code instead of using PLCAddressClick. For example:
- Add 2 drivers to the form and set the IP address of each driver for it's corresponding PLC
- Add a Button to the form
- Double click the button to get back to the code
- Add code like this:
ModbusTCPCom1.Write("40001",1)
ModbusTCPCom2.Write("40001",1)
To make different panel meters get its data from different PLCs, just set the ComComponent property to the driver instance you want it to use.