Hello World! I'm talking about color dialog control in C#. I'm continuing with my happy birthday program. And I've added the color dialogue control that we're going to use when you click on color either in the menu on the tool strip. Let's look at the code: I've used a different method here. This can actually be used with any of the dialog controls. When we show a dialog, it returns a result. and that is, the type of that is the class DialogResult. With this dialog control the result is either going to be OK or Cancel. So we're going to check if the user pressed OK. So if that result is DialogResult.OK then I'm going to change the back color to the color the user selected. I'm going to call that same function from the menu color click. And let's just run that so you can see that dialog. And at this point I can pick a font. I can select a picture, I can change the background of the form, I can even pick one of these custom colors. So I have selected a font, and a color, I show the filename in the status bar. and I show the date and time being updated. And that's it for right now.