QUOTE(LookNAO @ 27 Feb, 2008 - 11:22 AM)

Load the MSComm control.
Now depending on what you are hooking up to it, you need to know the following:
Baud rate
parity
data bit
stop bit
It will look something like : 9600, n, 8, 1
When you load the MSComm control, it does not work "out of the box".
set the following:
MSComm1.RThreshold = 1
MSComm1.SThreshold = 1
Depending on the handshaking:
MSComm1.DTREnable = False
Good luck
Thanks for the input
i am using baud rate, parity,databit and stop bit as 110,e,7,2.
no hand shaking
i am getting data in a text box, and can able to send out from a text box.
But now i have to send and store from a data base.
for sending i think this will work
x = Data1.Recordset.Fields("TTW Command")
MSComm2.Output = xbut for receiving data in a data base i am lost
I can still receive data line by line in a text box, but how can i store the same, serially in a data base under a field.
How this will affect
MSComm1.RThreshold = 1
MSComm1.SThreshold = 1
In my case both r 0.
my project involves connecting a computer with a RADAR for initiating certain command and getting results for its fault diagnostic.