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
718 B
Plaintext
37 lines
718 B
Plaintext
unit u_code_package_edi;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, bsSkinCtrls, bsdbctrls, Grids, Wwdbigrd, Wwdbgrid,
|
|
BusinessSkinForm;
|
|
|
|
type
|
|
Tfrm_code_package_edi = class(TForm)
|
|
wwDBGrid1: TwwDBGrid;
|
|
bsSkinDBNavigator1: TbsSkinDBNavigator;
|
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
|
procedure FormShow(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frm_code_package_edi: Tfrm_code_package_edi;
|
|
|
|
implementation
|
|
|
|
uses u_main, u_data_share;
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure Tfrm_code_package_edi.FormShow(Sender: TObject);
|
|
begin
|
|
frm_data_share.t_code_package_edi.Requery();
|
|
end;
|
|
|
|
end.
|