unit Unit2;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm2 = class(TForm)
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
procedure VisibleChanging; override; // <<-- 요기
end;
var
Form2: TForm2;
implementation
{$R *.dfm}
procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action:=caHide;
end;
procedure TForm2.VisibleChanging;
//
<<-- 요기
begin
// inherited;
end;
end.
원본 링크 : http://cafe.naver.com/bcbmaster.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=1437&
'공부방 > Delphi' 카테고리의 다른 글
[델파이] 엑셀 제어 (0) | 2013.12.31 |
---|---|
[델파이] 변수에 대해서 (0) | 2013.11.13 |
[델파이] 델파이7에서 퀵레포트를 PDF로 변환하기 (0) | 2010.11.26 |
[델파이] 클립보드 사용 (0) | 2010.11.09 |
[델파이] 구성 파일 (0) | 2010.10.27 |