Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
 
 
 
 
 
 
 
Old Pages
 
Old Index
Site Map
What's New
 
Books
How To
Tips & Tricks
Tutorials
Stories
Performance
Essays
Links
Q & A
New in VB6
Free Stuff
Pictures
 
 
 
TitleFind the system's color depth (bits per pixel)
Keywordscolor, color depth, bits per pixel, bpp
CategoriesGraphics, 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
 
 
Copyright © 1997-2003 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated