When the control is anchored to bottom left and its text is set to empty string in the form's Load event its position is changed. To workaround this you can either set the text to a space or you can set the text in the form's shown event: Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown RadLabel2.Text = "" End Sub
A vote for fixing this....