delphi如何使用com控件
展开全部
我一般使用spcomm控件
很简单的
comm.CommPort := 1;
comm.BaudRate := 9600;
comm.StartComm;
comm.PortOpen:=true;
if comm.PortOpen then
begin
showmessage('串口打开');
end
else
begin
showmessage('串口打开失败');
end;
至于发送
Comm.WriteCommData(数组, 数组长度);
至于接收 就在onReceiveData事件里
Move(Buffer^, ByteArr, BufferLength); 其中ByteArr是接收的数组
很简单的
comm.CommPort := 1;
comm.BaudRate := 9600;
comm.StartComm;
comm.PortOpen:=true;
if comm.PortOpen then
begin
showmessage('串口打开');
end
else
begin
showmessage('串口打开失败');
end;
至于发送
Comm.WriteCommData(数组, 数组长度);
至于接收 就在onReceiveData事件里
Move(Buffer^, ByteArr, BufferLength); 其中ByteArr是接收的数组
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询