If your message has a terminator such as a CR or LF at the end, then with the VISA Configure Serial Port, set Enable Termination Char to true ans specify the termination character in hex. You can then set the bytes to read to some arbitrary high number. The VISA Read will automatically terminate when the termination character is detected. If there is no exact termination character, use the VISA Bytes at Serial Port to determine how many bytes are available and wire that output to the VISA Read. You may use a small delay before using the VISA Bytes at Serial Port to make sure that everything has been sent. You could wait until the available bytes is greater than 0 in one loop and then in the next loop, keep reading as long as available bytes is not 0. There have been numerous examples posted on serial communication as well as the shipping examples.