Вниз
Скачать: 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.035 c
2-1149773285
Zikmu
2006-06-08 17:28
2006.06.25
Нумерация строк


3-1146227434
Zhur
2006-04-28 16:30
2006.06.25
KaDAO - проблемы с кодировкой


15-1149205505
dancer
2006-06-02 03:45
2006.06.25
Обжимка витой пары


2-1149748766
XTD
2006-06-08 10:39
2006.06.25
Почему программа работает с паузами ?


2-1149604960
Alex>
2006-06-06 18:42
2006.06.25
Массив записей




   Наверх