|
|
|
|
|
Dicas
|
|
Visual Basic (Imagem/Som/Multimídia)
|
|
|
Título da Dica: Recebendo o número de cores da placa de video
|
|
|
|
Postada em 9/9/2003 por Ð@®l@n
'Colocar isto em um módulo: Public Declare Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Long, ByVal nIndex As Long) As Long Public Const BITSPIXEL = 12
Private Sub Command1_Click() BitsPerPixel = GetDeviceCaps(Form1.hDC, BITSPIXEL) MsgBox BitsPerPixel End Sub
|
|
|
|
|