Hello world! I'm talking about the location of controls in C#. I have a label lblTitle. And one of the properties of a control that's on the form is the location. You'll notice there're two values, separated by a comma. Push this little plus: + We'll see those values are X and Y. X is the distance from the left hand side. If we set X to zero. The label is zero distance From the left hand side of the form. If we move it across, You'll see that X value gets bigger. Y is the distance from the top. If I set that to zero,. That label is all the way up at the top. I'm going to, If I double click on the form I get the code for form load. I'm going to... move it when I click on it. So I'm going to go to events And for the label I'm going to select the click event. lblTitle dot Location. lblTitle.Location= new Point And then I can give it the values. Let me give it a 0 and 100. And then run this, and when I click on this label, Set the X value to 0, and it moved it down I presume that's 100. And so that's how we can change the location.