unit KaveAllTest;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls,com485;

type
  TForm2 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
    c : TCom485;
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

implementation
{$R *.DFM}

procedure TForm2.Button1Click(Sender: TObject);
begin
  c := TCom485.Create(self);
end;

end.
