|
|
Title | Find the system's color depth (bits per pixel) |
Keywords | color, color depth, bits per pixel, bpp |
Categories | Graphics, Windows |
|
|
Use the GetDeviceCaps API function with the BITSPIXEL flag.
|
|
Private Sub Form_Load()
MsgBox "This system is using " & _
Format$(GetDeviceCaps(hdc, BITSPIXEL)) & _
"-bit color."
Unload Me
End Sub
|
|
|
|
|
|