unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,
ActiveX, ClimaController_TLB, StdCtrls, AxCtrls;
type
TForm1 =
class(TForm)
ListBox1: TListBox;
procedure FormCreate(Sender: TObject);
private
{ Private-Deklarationen }
ClimaController: IDispatch;
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
ClimaController := CoTFW_ClimaController.Create;
EnumDispatchProperties( ClimaController , GUID_NULL, VT_EMPTY, ListBox1.Items);
end;
end.