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

Панель задач и реестр XP   Найти похожие ветки 

 
NikSoft ©   (2006-06-07 13:00) [0]

Народ, не могли бы вы подсказать каким образом заставить XP не показывать иконку активного Delphi-приложения на панели задач?
Мерси.


 
Игорь Шевченко ©   (2006-06-07 13:37) [1]

unit main;

interface

uses
 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;

type
 TForm1 = class(TForm)
 protected
   procedure CreateWnd; override;
 private
   { Private declarations }
 public
   { Public declarations }
 end;

var
 Form1: TForm1;

implementation

{$R *.DFM}

{ TForm1 }

procedure TForm1.CreateWnd;
begin
 inherited;
 SetWindowLong(Application.Handle, GWL_EXSTYLE,
 GetWindowLong(Application.Handle, GWL_EXSTYLE) and not WS_EX_APPWINDOW or WS_EX_TOOLWINDOW);  
end;

end.



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

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



Память: 0.44 MB
Время: 0.026 c
2-1149666052
Fiallo4ka
2006-06-07 11:40
2006.06.25
ПАРОль


2-1149758283
Tempora
2006-06-08 13:18
2006.06.25
Вопрос по формам


2-1149514671
VitV
2006-06-05 17:37
2006.06.25
Сокеты в Дэлфях.


2-1149339228
Tigraman
2006-06-03 16:53
2006.06.25
Как работать с ListView?


2-1149559496
Василий
2006-06-06 06:04
2006.06.25
Прозрачность Textout




   Наверх