I'm not sure what you are asking either. If the message returned is terminated with the character you specified with the VISA Configure Serial Port, you can use a high number for the byte count for the VISA Read. The VISA Read will automatically stop when the termination character is detected. If there is no termination character, you use the VISA Bytes at Serial Port to determine how many bytes are available and wire the result of that to the byte count input of the VISA Read. To get a little fancier, you can put the VISA Bytes at Serial Port inside a while loop and exit the loop when the byte count is greater than 0. Then, in another loop, you have another VSIA Bytes at Serial Port wired to the VISA Read and this time, exit the while loop when the byte count is equal to 0.