使用ACTIVEX和DELPHI开发串口通讯
于Delphi中没有串口控件可用,所以首先需要把ActiveX控件MSCOMM加到元件选项板上。这是一个非常好的控件它不仅能对串口进行操作,而且还可以对Modem进行控制。下面结合一个具体的实例来说明如何用MSCOMM控件开发出串口通信程序。
创建一个Communication.dpr工程,把窗体的Name属性变为CommForm,将标题改为The Communication Test,选择File/Save As将新的窗体存储为CommFrm.pas。
其相应代码如下:
变量说明
var
CommForm: TCommForm;
ss :string;
savef,readf :file of char;
i,j :longint;
初始化
procedure TCommForm.FormCreate(Sender: TObject);
begin
mscomm.commport:=1;
mscomm.settings:='9600,n,8,1';
mscomm.inputlen:=1;
mscomm.inbuffercount:=0;
mscomm.portopen:=true;
ss:='';
i:=0;
j:=0;
assignfile(savef,'save1');
rewrite(savef);
assignfile(readf,'read1');
reset(readf);
end;
设置确定
procedure TCommForm.btnConfirmClick(Sender: TObject);
begin
if mscomm.portopen then
mscomm.portopen:=false;
mscomm.commport:=strtoint(edtCommport.text);
mscomm.settings:=edtCommsetting.Text;
end;
传输事件
procedure TCommForm.MSCommComm(Sender: TObject);
var
filenrc :char;
buffer :variant;
s1:string;
c :char;
begin
case mscomm.commEvent of
comEvSend:
begin
while not(eof(readf)) do
begin
read(readf,filenrc);
mscomm.output:=filenrc;
j:=j 1;
lblDisplay.caption:=inttostr(j);
if mscomm.outbuffercount>=2 then
break;
end;
end;
comEvReceive:
begin
buffer:=mscomm.Input;
s1:=buffer;
c:=s1[1];
ss:=ss c;
i:=i 1;
lblDisplay.caption:=c inttostr(i);
write(savef,c);
if (c=chr(10))or(c=chr(13)) then
begin
lblDisplay.caption:='cr' inttostr(i);
memDisplay.lines.add(ss);
ss:='';
end;
end;
end;
end;
- 最新文章
- 获取其他程序中TreeView的内容[01-04]
- 获取其他进程中ListBox和ComboBox的内容[01-04]
- 我写的采用csv格式将数据转换为excel的函数,带有分栏功..[01-04]
- 事件的危机——调试手记之一[01-04]
- 窗体的建立时机及缓冲的思想在ini文件中的应用.txt[01-04]
- 通用查询组件设计(续四)[01-04]
- 相关文章
- 如何使程序在运行时自动注册ActiveX控件[01-04]
- DELPHI实现activex控件的限制[01-04]
- Delphi深度探索-数据库明了的ActiveX控件[01-04]
- DirectInput 鼠标编程入门[01-04]
- 在C++ Builder中使用ActiveX控件显示Flas..[01-03]
- 如何在C++ Builder 2007 中添加 Active..[01-03]
