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.
37 lines
749 B
Plaintext
37 lines
749 B
Plaintext
11 months ago
|
unit u_op_delete_insert;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
Dialogs, BusinessSkinForm, StdCtrls, bsSkinCtrls, wwdbdatetimepicker;
|
||
|
|
||
|
type
|
||
|
Tfrm_op_delete_insert = class(TForm)
|
||
|
Label1: TLabel;
|
||
|
bsSkinButton1: TbsSkinButton;
|
||
|
bsSkinButton2: TbsSkinButton;
|
||
|
Edit2: TEdit;
|
||
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
||
|
wwDBDateTimePicker1: TwwDBDateTimePicker;
|
||
|
procedure FormShow(Sender: TObject);
|
||
|
private
|
||
|
{ Private declarations }
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
frm_op_delete_insert: Tfrm_op_delete_insert;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.dfm}
|
||
|
|
||
|
procedure Tfrm_op_delete_insert.FormShow(Sender: TObject);
|
||
|
begin
|
||
|
wwDBDateTimePicker1.Date:=date;
|
||
|
end;
|
||
|
|
||
|
end.
|