首页 相关文章 在delphi7中利用mscomm控件编程

在delphi7中利用mscomm控件编程

Mscomm是微软一个强大的串口通讯的控件,其强大,简单的特点今我们不舍,在delphi中我们也可以使用它。下面这些代码是针对发送和接收为16进制处理的。
  var
   senddata:array[1..10] of char;
   reData:array of Variant;
   sendstr:string;
   restr:string;
   i:longint;
  begin
   mscomm1.CommPort := 1; //指定端口
   mscomm1.Settings := '9600,N,8,1'; //其它参数
   mscomm1.InBufferSize := 1024; //接收缓冲区
   mscomm1.OutBufferSize := 1024; //发送缓冲区
   mscomm1.InputMode := comInputModeBinary; //接收模式
   mscomm1.InputLen := 0; ...[ 查看全文 ]

2016-02-19 标签:

在delphi7中利用mscomm控件编程的相关文章

手机页面
收藏网站 回到头部