Click here to Skip to main content
15,878,852 members
Articles / Programming Languages / Visual Basic

Color Grabber

Rate me:
Please Sign up or sign in to vote.
2.15/5 (8 votes)
19 Feb 2010CPOL1 min read 26.4K   272   12  
A utility to catch a color from the desktop
Option Strict On
Option Explicit On

Public Class Main

   Private Sub btnQuit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnQuit.Click
      Me.Close()
   End Sub

   Private Sub btnSelect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelect.Click
      Dim f As New Canvas
      Canvas.Show()
   End Sub
End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions