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

как узнать разрешение экрана   Найти похожие ветки 

 
Aks   (2004-02-11 12:21) [0]

Люди, как узнать разрешение текущего экрана? и можно ли его поменять?


 
RDen   (2004-02-11 12:28) [1]

ну например так:

unit Unit1;

interface

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

function GetNumColors: LongInt;

type
TForm1 = class(TForm)
Button1: TButton;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
procedure OnActivate(Sender: TObject);
private
procedure WM_NCHITTEST(var M: TWMNCHitTest); message wm_NCHitTest;

{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.OnActivate(Sender: TObject);
begin
ShowWindow(Application.Handle, SW_HIDE);
end;

function GetNumColors: LongInt;
var
BPP: Integer;
DC: HDC;
begin
DC := CreateDC("DISPLAY", nil, nil, nil);
if DC <> 0 then begin
try
BPP := GetDeviceCaps(DC, BITSPIXEL) * GetDeviceCaps(DC, PLANES);
finally
DeleteDC(DC);
end;
case BPP of
1: Result := 2;
4: Result := 16;
8: Result := 256;
15: Result := 32768;
16: Result := 65536;
24: Result := 16777216;
end;
end else
Result := 0;
end;

procedure TForm1. WM_NCHitTest(var M: TWMNCHitTest);

begin
inherited;
if M.Result = htClient then
M.Result := htCaption;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
Label1.Caption := inttostr(GetNumColors) + " colors " + inttostr(Screen.Width) +
"x" + inttostr(Screen.height);
end;

end.


 
Amoeba ©   (2004-02-11 12:29) [2]

Screen.Width и Screen.Height
F1
RTFM


 
Aks   (2004-02-11 12:40) [3]

Спасибо



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

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



Память: 0.45 MB
Время: 0.039 c
4-80355
Winni
2003-12-17 20:04
2004.02.25
Как запустить екзешник из ресурса ?


4-80373
konstvd
2003-12-16 12:40
2004.02.25
Фокус на предыдущий котрол


1-79907
AsbAlex
2004-02-08 01:23
2004.02.25
Помагите перенести код с паскаля на си


1-79811
Тимохов
2004-02-10 12:26
2004.02.25
Delphi + WinApi


1-79978
@G
2004-02-14 19:08
2004.02.25
Форма без значков




   Наверх