git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.FastReport@7 475b051d-3a53-6940-addd-820bf0cfe0d7
41 lines
929 B
ObjectPascal
41 lines
929 B
ObjectPascal
{*******************************************}
|
|
{ }
|
|
{ FastQueryBuilder 1.03 }
|
|
{ }
|
|
{ Copyright (c) 2005 }
|
|
{ Fast Reports Inc. }
|
|
{ }
|
|
{*******************************************}
|
|
|
|
{$I fqb.inc}
|
|
|
|
unit fqbLinkForm;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
StdCtrls, ExtCtrls, Buttons;
|
|
|
|
type
|
|
TfqbLinkForm = class(TForm)
|
|
RadioOpt: TRadioGroup;
|
|
RadioType: TRadioGroup;
|
|
txtTable1: TStaticText;
|
|
txtTable2: TStaticText;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
txtCol1: TStaticText;
|
|
Label4: TLabel;
|
|
txtCol2: TStaticText;
|
|
BitBtn1: TBitBtn;
|
|
BitBtn2: TBitBtn;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.DFM}
|
|
|
|
end.
|