
' This function sets the state of the comm port DTR line true or
' false according to the entry argument. A TRUE state sets the
' line on the RS232 interface to a +V level while a FALSE puts
' the line to the -V level.

Sub Comm_DTR(DTR_State As Boolean)

  MSComm.DTREnable = DTR_State

End Sub
