unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
procedure WMDisplayChange( var msg : TWMDisplayChange );message wm_DisplayChange;
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure tform1.WMDisplayChange( var msg : TWMDisplayChange );
begin
showmessage('Renk=2 üzeri '+inttostr(msg.BitsPerPixel)+
' En='+inttostr(msg.width)+
' Boy='+inttostr(msg.height))
end;
end.