You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
unit u_op_airtruckdetailfind;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, bsSkinCtrls, BusinessSkinForm, StdCtrls, RxLookup, Mask,
|
|
rxToolEdit, wwdbdatetimepicker;
|
|
|
|
type
|
|
Tfrmairtruckdetailfind2 = class(TForm)
|
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
|
bsSkinButton5: TbsSkinButton;
|
|
bsSkinButton1: TbsSkinButton;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
Label4: TLabel;
|
|
Label5: TLabel;
|
|
Label6: TLabel;
|
|
Edit1: TEdit;
|
|
RxDBLookupCombo3: TRxDBLookupCombo;
|
|
RxDBLookupCombo1: TRxDBLookupCombo;
|
|
wwDBDateTimePicker6: TwwDBDateTimePicker;
|
|
wwDBDateTimePicker1: TwwDBDateTimePicker;
|
|
procedure bsSkinButton1Click(Sender: TObject);
|
|
procedure bsSkinButton5Click(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frmairtruckdetailfind2: Tfrmairtruckdetailfind2;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure Tfrmairtruckdetailfind2.bsSkinButton1Click(Sender: TObject);
|
|
begin
|
|
modalresult:=mrok ;
|
|
end;
|
|
|
|
procedure Tfrmairtruckdetailfind2.bsSkinButton5Click(Sender: TObject);
|
|
begin
|
|
modalresult:=mrcancel ;
|
|
end;
|
|
|
|
end.
|