I don't know if this helps or not, but you can use an event to change the IP address of the Com Component linked in your DataSubscriber.
I tried it out with two different buttons and it worked.
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
EthernetIPforCLXCom2.IPAddress = "192.168.0.1"
End Sub
Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
EthernetIPforCLXCom2.IPAddress = "192.168.0.2"
End Sub