Put a BasicLabel on the form and set both PLCAddressValue and PLCAddressKeypad to L48241 (this address should be covering 2 registers 48241 and 48242 because you are looking for 32-bit value).
Once you run the application then this BasicLabel should show you the value stored in registers and if you click the BasicLabel then a keypad should pop up to allow you to write a new value, which if successful will then be shown on the BasicLabel.
Thanks
I found a solution:
To Tare the load cell amplifier two codes have to be send to the specific adddress
As we send a 32 bits but is only a 16 bits I wireshark the TCP as recommended.
The amplifier accepts h2061 as the address to write, but the driver is sending to register 2060. Starting one before to write 32 bits.
I move my address to h2062 and the driver was sending the correct register to h2061.
Dim address = "48290"
Dim v = ModbusTCPCom1.Write(address, "1")
Dim v1 = ModbusTCPCom1.Write(address, "8")