RETORNO DE CARRO EN VISUAL BASIC EN UN TEXT BOX Y UN LABEL

 

En un formulario introducimos un textbox , un label y un botón

 

Introducimos el código siguiente en el botón

 

Private Sub Command1_Click()

Dim retorno

retorno = vbCr + vbLf   'vbCr=Chr(10) y vbLf=Chr(13)

Label1.Caption = Label1.Caption + retorno + "Hola" + retorno + "Adios"

Text1.Text = Text1.Text + retorno + "Hola" & retorno & "Adios"

End Sub