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.
|