Does anyone know how to put a carrage return for the default text for a text box?

I tried this:

Code:
Private Sub form_load()
txtHeader.Alignment = 2
txtHeader.Text = "Welcome to the Manager Functions" & vbCrLf & EmployeeName(J)
End Sub
it didn't work. The vbCrLf. Am I doing it wrong??

Brian