Changing the location of a control on a windows form programatically using VB.net?
You can also do it this way:
label1.Location = new Point(x,y);
What are you trying? I find the easiest thing to do is set the Top and Left properties individually:
label1.Left = 50;
label1.Top = 70;
Setting Location.X and Location.Y will probably result in a compile-time error, because Location is of type "Point", a value type.