//Advanced Delphi Systems Code: ads_AcroForm_Temp
unit ads_AcroForm_Temp;
{Copyright(c)2016 Advanced Delphi Systems

 Richard Maley
 Advanced Delphi Systems
 12613 Maidens Bower Drive
 Potomac, MD 20854 USA
 phone 301-840-1554
 dickmaley@advdelphisys.com

 The code herein can be used or modified by anyone.  Please retain references
 to Richard Maley at Advanced Delphi Systems.  If you make improvements to the
 code please send your improvements to dickmaley@advdelphisys.com so that the
 entire Delphi community can benefit.  All comments are welcome.
}
(*
UnitIndex Master Index Implementation Section Download Units
Description: ads_AcroForm_Temp.pas
This unit contains the following routines.

Register 

*)
interface
Uses
  Acrobat_TLB, Classes;

Type
  TAcroForm_xxxx = class(TComponent)
  Private
    FAcroForm_xxxx : Variant;
  Public
    constructor Create(AOwner: TComponent); override;
    destructor  Destroy; override;
  End;

  procedure Register;

implementation

Uses
  Variants, ComObj;

//
Unit Description UnitIndex Master Index
procedure Register;
begin
  RegisterComponents('Acrobat', [TAcroForm_xxxx]);
end;

constructor TAcroForm_xxxx.Create(AOwner: TComponent);
begin
  inherited;
  FAcroForm_xxxx := CreateOleObject('AcroForm.xxxx');
end;

destructor TAcroForm_xxxx.Destroy;
begin
  FAcroForm_xxxx := unassigned;         
  inherited;
end;

end.
//