git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@26 05c56307-c608-d34a-929d-697000501d7a
38 lines
667 B
ObjectPascal
38 lines
667 B
ObjectPascal
unit InspectorRLDialog;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
|
StdCtrls, Mask, DBCtrls, ExtCtrls;
|
|
|
|
type
|
|
TInspectorRLDialogForm = class(TForm)
|
|
Label8: TLabel;
|
|
DBEdit8: TDBEdit;
|
|
Label9: TLabel;
|
|
DBEdit9: TDBEdit;
|
|
Label10: TLabel;
|
|
DBEdit10: TDBEdit;
|
|
Label11: TLabel;
|
|
DBEdit11: TDBEdit;
|
|
Bevel1: TBevel;
|
|
Button1: TButton;
|
|
Button2: TButton;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
InspectorRLDialogForm: TInspectorRLDialogForm;
|
|
|
|
implementation
|
|
|
|
uses InspectorRLMain;
|
|
|
|
{$R *.DFM}
|
|
|
|
end.
|