Re: ColorDialog Programming Software Development by arjunsasidharan … if any one can give me the related function with colordialog(vb.net) and if i can change backcolor of form… with it?how? add a button and a colordialog to the form and type in the following code in… Re: ColorDialog Programming Software Development by discovery-power … if any one can give me the related function with colordialog(vb.net) and if i can change backcolor of form… with it?how? add a button and a colordialog to the form and type in the following code in… ColorDialog Programming Software Development by yaya_star Hi all i just wanna ask if any one can give me the related function with colordialog(vb.net) and if i can change backcolor of form with it?how? Thanks:confused: Re: ColorDialog Programming Software Development by manal Add ColorDialog control to the form , then change its property to the way you want it to show . to show the dailog [CODE]ColorDialog1.ShowDialog()[/CODE] you can get the color that user selected by ColorDialog1.Color after this you can set the backcolor of form to this color Re: ColorDialog Programming Software Development by yaya_star Thanks , its worked ;) Re: ColorDialog Programming Software Development by themccoolfan the function or code Me.ColorDialog1.ShowDialog() to change the back and fore color with control, i get every thing except this. Why is my code window highlighting colordiaog1 when i type....should i declare something can some give me the whole code to change the fore color and the back color of a button during run time with control using this… Re: ColorDialog Programming Software Development by Luc001 Hi [QUOTE]Also guys please tell me if there is any website where i can get tutored visual basic....please[/QUOTE] You can find some tutorials for VB 2008, [URL="http://www.vbtutor.net/vb2008/vb2008tutor.html"]here.[/URL] Re: ColorDialog Programming Software Development by discovery-power never mind all sorted. Re: ColorDialog Programming Software Development by kvprajapati Hi discovery_power. You cannot hijack another thread to ask your question but you have to start your own thread instead. Please do not resurrect old threads. Have a look at forum [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL]. Please read before posting - [url]http://www.daniweb.com/forums/thread78223.html… drawing a shape and autofill it using colordialog [super urgent] Programming Software Development by kazekagerandy … im editing and fill its insides with colors from a colordialog that will serve as if it applied a lipstick. just… colordialog box Programming Software Development by dhanashreegd i want to use color dialog box and i also want to pick up color from that dialogbox and use it as backcolor in the crystal report textboxobjet colordialog box Programming Software Development by prasadsatam If ColorDialog1.ShowDialog = DialogResult.OK Then Dim Text18 As TextObject Me.Color = ColorDialog1.Color end if Re: colordialog box Programming Software Development by Jx_Man please don't make many threads with same topic, just use one thread... its annoying.. Re: colordialog box Programming Software Development by waynespangler Try this: [CODE]Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If ColorDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then Me.BackColor = ColorDialog1.Color End Sub End Class[/CODE] Re: drawing a shape and autofill it using colordialog [super urgent] Programming Software Development by Unhnd_Exception [QUOTE=;][/QUOTE] What your trying to do is not all that all basic. Here is the most basic example I can provide. You will need to apply this with what you are doing. This will draw a polygon and fill it. There are more things involved such as clip rectangles, cursors, and more. This should be a starting point for you. [code] Public … update treeview Programming Software Development by azolfaghari …on the node, then change the colour of rectangle using colorDialog. I have done something, but once I choose the …colour in colorDialog and press ok, it does change the rectangle colour,… but the colorDialog appears a few second after being disappear. Would you let… Small problem face me Programming Software Development by Ali.M.Habib … mnuColorChange_Click(object sender, System.EventArgs e) { // Show color dialog. ColorDialog dlgColor = new ColorDialog(); dlgColor.ShowDialog(); // Change label background. mnuLabel.SourceControl.BackColor = dlgColor… Change BackColor of Entire Application Programming Software Development by S2009 …. But the backcolor is not changed. [code] In Form1 ColorDialog c1 = new ColorDialog(); public System.Drawing.Color bkc; private void button1_Click(object… Re: Change BackColor of Entire Application Programming Software Development by lighthead … public static System.Drawing.Color x1; public Form1() { InitializeComponent(); ColorDialog cd = new ColorDialog(); cd.ShowDialog(); x1 = cd.Color; } private void button1_Click(object… Retaining the changes made to the backcolor property Programming Software Development by S2009 … the user restarts the application. CODE In Form1 [code] ColorDialog c1 = new ColorDialog(); public static System.Drawing.Color bkc; private void button1_Click… Re: Retaining the changes made to the backcolor property Programming Software Development by S2009 [QUOTE=sknake;916222]The code for app.config is generated by the IDE. Double click on the file and add properties via the user interface.[/QUOTE] Can you please tell What is the Use of Using block? using (ColorDialog cd = new ColorDialog()) Saving Background color of programm and load it when the from gets loaded ? Programming Software Development by Danny1994 … trying to save and load the color picked of a ColorDialog. (The user can choose a Color and the background of…]http://msdn.microsoft.com/en-us/library/system.windows.forms.colordialog.aspx[/url]) I tryed some stuff, but it all didn… Applying settings at whole application - C# Programming Software Development by Dino000 … like when one clicks on the color settings button: ColorDialog dlg = new ColorDialog(); dlg.Color = Properties.Settings.Default.bgdColor; if (dlg.ShowDialog… Picture box picture control is not working Programming Software Development by 민성 …(); } Color a0; Color a1; Color a2; Color a3; private ColorDialog _colorDialog = new ColorDialog(); private FontDialog _aaa = new FontDialog(); Font a4 = new Font… Re: Colour Dialog Coding help Programming Software Development by Begginnerdev … code: Try 'Create a new instance of the ColorDialog class. Dim cd As New ColorDialog 'Set the dialog's properties. With cd… Setting up a dialog box (font & color) Programming Software Development by Starfighter330 I am trying to set up some common dialogs but some how forgot how to do it. I have a menustrip set up just need to know how to apply a fontdialog and colordialog. Can anyone assit me with this, I need some help as soon as possible. I am working on this for a lab for a class, thanks! -Sami- Jiberish Visual C++ Errors Un-Understandable Programming Software Development by killdude69 … RadioButton; class ListBox; class Label; class ComboBox; class FontDialog; class ColorDialog; class OpenFileDialog; class SaveFileDialog; } class WGCL::Form { public: Form(DWORD… Project Problems Please Help. Programming Software Development by brandon1 … drawn using a trackbar? 3.How can you use a colordialog to change the color of the "draw.rectangle"… Color Picker Programming Software Development by sathya8819 Hi, I would like to know if it is possible to obtain a color picker in c#, something similar to the properties dialog box in .NET. My application requires choosing the color dynamically. I know that there is a ColorDialog control, but I assume that the color picker is far more helpful. Any idea on how to generate one?? Thanks drawing a region and fill it with color using colobox [corrected] Programming Software Development by kazekagerandy how can i draw a free-shape (it means no particular shape or sides) and fill it in with the colors chosen from colordialog? e.g. im gonna draw a rounded rectangle and i want to fill its insides with color red. answers will be appreciated :)