C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Code Snippets » VB.NET Syntax »

Color Dialog


Posted Date: 11 Nov 2008    Resource Type: Code Snippets    Category: VB.NET Syntax
Author: Abraham KuriakoseMember Level: Gold    
Rating: 1 out of 5Points: 4



Using color dialog to select color and get rgb values
place a color dialog on to the form

If dlgcolor.ShowDialog() = Windows.Forms.DialogResult.OK Then
PictureBoxcolor.BackColor = dlgcolor.Color
sbred.Value = dlgcolor.Color.R.ToString
sbgreen.Value = dlgcolor.Color.G.ToString
sbblue.Value = dlgcolor.Color.B.ToString
txtred.Text = dlgcolor.Color.R.ToString
txtgreen.Text = dlgcolor.Color.G.ToString
txtblue.Text = dlgcolor.Color.B.ToString

End If




Responses

Author: srinivasa reddy tatikonda    09 Jan 2009Member Level: Silver   Points : 2
Private Sub btnPickColor_Click(ByVal sender As _
System.Object, _
ByVal e As System.EventArgs) Handles btnPickColor.Click
dlgColor.Color = Me.BackColor
If dlgColor.ShowDialog() = DialogResult.OK Then
btnPickColor.BackColor = dlgColor.Color
Me.BackColor = dlgColor.Color
End If
End Sub
Best Regards

Srinivasa Reddy


Feedbacks      
Popular Tags   What are tags ?   Search Tags  
Sign In to add tags.
Colordialog  .  

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: Move Window by Dragging the Client Area of the Form
Previous Resource: Winsock Component
Return to Discussion Resource Index
Post New Resource
Category: VB.NET Syntax


Post resources and earn money!
 
Related Resources



dotNet Slackers

About Us    Contact Us    Privacy Policy    Terms Of Use