请给我一份spcomm控件和说明(100分)

  • 主题发起人 主题发起人 心法
  • 开始时间 开始时间
http://vip.6to23.com/aizb/subpage/delphidoc/spcomm.htm
自己去看吧。
 
告诉我你的EMAIL,发给你
 
看看这几个页面,对你理解SPComm源代码绝对有帮助:
http://www.ly.js.cn/computer/wlxy/cxsj/3.htm
http://www.5xsoft.com/data/200110/2914445801.htm
http://www.5xsoft.com/data/200110/2914445801_1.htm
 
楼上已经给了URL,我看已经够了
 
转帖,希望有用
SPCOMM RS-232多线程控件例子:现时DELPHI上有很多串行口控件,SPCOMM控件有Data Bits、Parity、 Stop Bits 等配置,支持 Read/Write 时序控制 (Timing control)、 ReadIntervalTimeout、 WriteIntervalTimout 等 ,支持 DTR/DSR, RTS/CTS 硬件流程控置及 Xon/Xoff 软件流程控置,是目前比较完善的控件。 以下是一个用RS-232进行数据接收、显示的例子。必须将RS232的通信参数设置好才能正确接收数据。(Data Bits,Parity,Stop Bits,COM口参数)
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, SPComm;
type
TForm1 = class(TForm)
Comm1: TComm;
Memo1: TMemo;
procedure Comm1ReceiveData(Sender: TObject;
Buffer: Pointer;
BufferLength: Word);
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject;
var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Comm1ReceiveData(Sender: TObject;
Buffer: Pointer;
BufferLength: Word);
var
s: string;
begin

SetLength(S, BufferLength);
//接收RS232的数据并显示Memo1上。
Move(Buffer^, PChar(S)^, BufferLength);
Memo1.Lines.Add(S);
Memo1.Invalidate;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin

Comm1.startcomm;//创建窗体时,将comm1控件打开。
end;

procedure TForm1.FormClose(Sender: TObject;
var Action: TCloseAction);
begin

comm1.StopComm;//关闭窗体时,将comm1控件关闭。
end;

end.

 
时间太久,强制结束。
 
后退
顶部