Club Delphi  
    FTP   CCD     Buscar   Trucos   Trabajo   Foros

Retroceder   Foros Club Delphi > Otros entornos y lenguajes > C++ Builder
Registrarse FAQ Miembros Calendario Guía de estilo Temas de Hoy

Respuesta
 
Herramientas Buscar en Tema Desplegado
  #1  
Antiguo 04-05-2011
Avatar de Diego827
Diego827 Diego827 is offline
Miembro
NULL
 
Registrado: oct 2010
Posts: 157
Poder: 14
Diego827 Va por buen camino
Arrow Detectar fabricante de graficos

Hola amigos, una consulta: necesito detectar si el fabricante del chipset o GPU de video de la pc es ATI, Intel o nVidia; agradeceria cualquier respuesta,

Saludos a toda la comunidad Delphiana,
Responder Con Cita
  #2  
Antiguo 04-05-2011
beginner01 beginner01 is offline
Miembro
NULL
 
Registrado: mar 2011
Ubicación: República Dominicana
Posts: 181
Poder: 14
beginner01 Va por buen camino
saludos.

revisa aqui
Responder Con Cita
  #3  
Antiguo 05-05-2011
Avatar de Diego827
Diego827 Diego827 is offline
Miembro
NULL
 
Registrado: oct 2010
Posts: 157
Poder: 14
Diego827 Va por buen camino
Wink Gracias!!!

Código:
 Have  you ever wondered what display devices are available to your  application? Here are some good starting points. But you should remember  to further investigate this avenue, as it's more to using the display  settings than detecting them. 
  
procedure TForm1.ButtonClick(Sender: TObject); 
var 
  lpDisplayDevice: TDisplayDevice; 
  dwFlags: DWORD; 
  cc: DWORD; 
begin 
 lpDisplayDevice.cb := sizeof(lpDisplayDevice); 
 dwFlags := 0; 
 cc:= 0; 
 while EnumDisplayDevices(nil, cc, lpDisplayDevice , dwFlags) do 
  begin 
    Inc(cc); 
    aListbox.Items.Add(lpDisplayDevice.DeviceString); {there is also additional information in lpDisplayDevice} 
  end; 
end; 
  

Another way to detect video card settings is to read them from the registry, under the following registry key(s) : 
  
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Class\Display 
  
However, if you previously had other videocards installed, you will still 
have keys for the older videocards as well 
%HKLM%\System\CurrentControlSet\Services\Class\Display\0000 
%HKLM%\System\CurrentControlSet\Services\Class\Display\0001 
%HKLM%\System\CurrentControlSet\Services\Class\Display\0002 
..... 



   Bogdan Grigorescu - BogdanG@gmail.com 
   BG Remote Programming Group
Excelente amigo, muy agradecido por tu atención.
Responder Con Cita
Respuesta



Normas de Publicación
no Puedes crear nuevos temas
no Puedes responder a temas
no Puedes adjuntar archivos
no Puedes editar tus mensajes

El código vB está habilitado
Las caritas están habilitado
Código [IMG] está habilitado
Código HTML está deshabilitado
Saltar a Foro

Temas Similares
Tema Autor Foro Respuestas Último mensaje
graficos alfil123 Impresión 2 04-01-2008 10:33:06
El fabricante Dell podría ofrecer Linux como una alternativa a Windows ArdiIIa Noticias 29 10-05-2007 21:52:42
Mensaje : Fabricante Desconocido??? BetoAlonso Varios 4 29-12-2006 17:28:41
Graficos Luli Gráficos 2 02-11-2004 06:15:14
Gráficos Luli Gráficos 1 08-10-2004 00:10:04


La franja horaria es GMT +2. Ahora son las 04:59:17.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Traducción al castellano por el equipo de moderadores del Club Delphi
Copyright 1996-2007 Club Delphi