FormCustomer.pas
资源名称:__DCOM.rar [点击查看]
上传用户:etonglee
上传日期:2014-03-01
资源大小:698k
文件大小:1k
源码类别:
Internet/IE编程
开发平台:
Delphi
- unit FormCustomer;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, ComCtrls, Grids, DBGrids, ExtCtrls;
- type
- TFrmCustomer = class(TForm)
- pnlControls: TPanel;
- dbgrdCustomer: TDBGrid;
- pnlFilter: TPanel;
- StatusBar: TStatusBar;
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- implementation
- {$R *.dfm}
- procedure TFrmCustomer.FormClose(Sender: TObject;
- var Action: TCloseAction);
- begin
- Action:=caFree;
- end;
- end.