Ver Mensaje Individual
  #3  
Antiguo 16-04-2005
slat slat is offline
Miembro
 
Registrado: jun 2004
Posts: 12
Reputación: 0
slat Va por buen camino
tambien puedes obtener la resolucion con las propiedades width y height del objeto Tscreen

Código Delphi [-]
function Resolucion: string;
var
x, y: integer;
begin
x:=screen.Width;
y:=screen.Height;
result:=inttostr(x)+' x '+inttostr(y);
end;
Responder Con Cita