블로그 이미지
자료에 문제가 있을 경우, 확인하는대로 삭제처리 하겠습니다. 즐거운 하루 되시길...
05-04 06:48
Total
Today
Yesterday

카테고리

분류 전체보기 (199)
이야기방 (20)
공부방 (173)
개발노트&관련잡다구니 (6)

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
Posted by 래채
, |