Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2006.06.25;
Скачать: CL | DM;

Вниз

Полупрозрачный MessageBox   Найти похожие ветки 

 
Sorcerer   (2006-03-27 16:51) [0]

Здравствуйте! Как средствами Win API вывести полупрозрачный MessageBox?


 
Sorcerer   (2006-03-27 16:52) [1]

OS win XP.


 
easy ©   (2006-03-27 21:11) [2]

unit Unit1;

interface

uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
 Dialogs, StdCtrls;
const
 WM_MSGBOX  = WM_USER + 1;
type
 TForm1 = class(TForm)
   Button1: TButton;
   procedure Button1Click(Sender: TObject);
 private
   { Private declarations }
   procedure msgBoxShow(var msg: TMessage); message WM_MSGBOX;
 public
   { Public declarations }
 end;

var
 Form1: TForm1;

implementation

{$R *.dfm}

procedure make50transp(winHWND: HWND);
var
 exStyle: Longint;
begin
 exStyle := GetWindowLong(winHWND, GWL_EXSTYLE);
 if (exStyle and WS_EX_LAYERED = 0) then begin
   exStyle := exStyle or WS_EX_LAYERED;
   SetwindowLong(winHWND, GWL_EXSTYLE, exStyle);
 end;
 SetLayeredWindowAttributes(winHWND, 0, 128, LWA_ALPHA);
end;

procedure TForm1.msgBoxShow(var msg: TMessage);
var
 msgbHandle: HWND;
begin
 msgbHandle := GetActiveWindow;
 if msgbHandle <> 0 then
   make50transp(msgbHandle);
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
 PostMessage(handle, WM_USER + 1, 0, 0);
 MessageBox(handle, "This Is A Transparent Message Box", "50% MessageBox.", MB_OK or MB_ICONWARNING);
end;

end.


 
Sorcerer   (2006-03-28 16:31) [3]

> easy ©   (27.03.06 21:11) [2]

Спасибо огромное!



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

Текущий архив: 2006.06.25;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.026 c
15-1149146657
Un#x
2006-06-01 11:24
2006.06.25
Факультеты


2-1149561821
cinol
2006-06-06 06:43
2006.06.25
Нужен алгоритм.


11-1129102697
Алексей Ефременко
2005-10-12 11:38
2006.06.25
Аналог компонента TChart в KOL


2-1149443813
13
2006-06-04 21:56
2006.06.25
MDI приложение


11-1129183342
GMax
2005-10-13 10:02
2006.06.25
TKOLThread - ошибка ?