Hi,
You can use the VISA VIs located on the Function palette >> Instrument I/O >> Serial to send and receive data from the device. For some simple examples go to the help menu >> Find examples and search for serial.
To send a particular caracter or action (as ctrl-f), you need to find the numeric value using the
ASCII Table. For the ctrl-f you would send the numeric value 0x06.
In LabVIEW you would place this value in a 8bit integer (U8)control. You then create an array of U8s with the command and other commands if necessary. Then use the "Byte array to string.vi" to transform the array to the string data type used by the VISA
write function. If you display this string you'll see strange characters since the ctrl-f numeric value, for example, does not represent a visible character.
Hope this helps.
DiegoF
National Instruments.