Вниз
Скачать: CL | DM;

OnShow у TFrame как сделать?   Найти похожие ветки 

 
DVM ©   (2006-10-05 11:15) [0]

сабж.


 
clickmaker ©   (2006-10-05 11:19) [1]

WndProc, WM_SHOWWINDOW


 
DVM ©   (2006-10-05 11:19) [2]

ясно


 
DVM ©   (2006-10-05 11:29) [3]

Еще можно так:

type
 TViewFrame = class(TFrame)
   lblMain: TLabel;
 private
   procedure CMShowingChanged(var M: TMessage); message CM_SHOWINGCHANGED;
 public
   { Public declarations }
 end;

implementation

{$R *.dfm}

procedure TViewFrame.CMShowingChanged(var M: TMessage);
begin
 inherited;
 if Showing then
   begin
     // Show
   end
 else
   begin
     // Hide
   end;
end;



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.032 c
1-1160471759
regdown
2006-10-10 13:15
2006.11.19
Вопрос Файл Delphi7


2-1162367551
Antonq
2006-11-01 10:52
2006.11.19
Как сообщением поменять курсор мыши


2-1162638407
l|l|l|l|
2006-11-04 14:06
2006.11.19
"Блокирующие" вызовы функций.


2-1162501134
dRake
2006-11-02 23:58
2006.11.19
Пара вопросов (+)


15-1162217711
Lexer
2006-10-30 17:15
2006.11.19
Проблема с сетью WIFI




   Наверх