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.
81 lines
2.0 KiB
Plaintext
81 lines
2.0 KiB
Plaintext
11 months ago
|
unit u_code_ctn_kind;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
Dialogs, bsSkinCtrls, BusinessSkinForm, dxExEdtr, dxCntner, dxTL,
|
||
|
dxDBCtrl, dxDBGrid, ExtCtrls;
|
||
|
|
||
|
type
|
||
|
Tfrm_code_ctn_kind = class(TForm)
|
||
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
||
|
dxDBGrid1: TdxDBGrid;
|
||
|
dxDBGrid1Column1: TdxDBGridMaskColumn;
|
||
|
dxDBGrid1Column2: TdxDBGridMaskColumn;
|
||
|
Panel1: TPanel;
|
||
|
bsSkinButton1: TbsSkinButton;
|
||
|
bsSkinButton2: TbsSkinButton;
|
||
|
bsSkinButton4: TbsSkinButton;
|
||
|
bsSkinButton3: TbsSkinButton;
|
||
|
bsSkinButton5: TbsSkinButton;
|
||
|
procedure bsSkinButton1Click(Sender: TObject);
|
||
|
procedure bsSkinButton3Click(Sender: TObject);
|
||
|
procedure bsSkinButton2Click(Sender: TObject);
|
||
|
procedure bsSkinButton4Click(Sender: TObject);
|
||
|
procedure bsSkinButton5Click(Sender: TObject);
|
||
|
procedure FormShow(Sender: TObject);
|
||
|
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||
|
private
|
||
|
{ Private declarations }
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
frm_code_ctn_kind: Tfrm_code_ctn_kind;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
uses u_data_share, my_sys_function;
|
||
|
|
||
|
{$R *.dfm}
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.bsSkinButton1Click(Sender: TObject);
|
||
|
begin
|
||
|
frm_data_share.t_code_ctn_kind.Insert;
|
||
|
end;
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.bsSkinButton3Click(Sender: TObject);
|
||
|
begin
|
||
|
table_cancel(frm_data_share.t_code_ctn_kind);
|
||
|
end;
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.bsSkinButton2Click(Sender: TObject);
|
||
|
begin
|
||
|
table_post(frm_data_share.t_code_ctn_kind);
|
||
|
end;
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.bsSkinButton4Click(Sender: TObject);
|
||
|
begin
|
||
|
table_delete(frm_data_share.t_code_ctn_kind);
|
||
|
end;
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.bsSkinButton5Click(Sender: TObject);
|
||
|
begin
|
||
|
close;
|
||
|
end;
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.FormShow(Sender: TObject);
|
||
|
begin
|
||
|
frm_data_share.t_code_ctn_kind.requery;
|
||
|
end;
|
||
|
|
||
|
procedure Tfrm_code_ctn_kind.FormCloseQuery(Sender: TObject;
|
||
|
var CanClose: Boolean);
|
||
|
begin
|
||
|
CanClose:=frm_close_query(frm_data_share.t_code_ctn_kind);
|
||
|
end;
|
||
|
|
||
|
end.
|