dejar espacios
imaginaros que tengo un textbox y quiero escribir primero una frase cualquiera y luego otra como ago para que me escriba la segunda frase en la siguiente linea?(aunq la primera linea no me llego al final)gracias
Primero, deberás tener el text con la propiedad multiline a True. Y segundo, debes concatenar un retorno de carro antes de añadir la segunda linea a tu text, por ejemplo :
text1.text = "Primera linea del text"
text1.text = text1.text & vbCrLf & "Segunda linea del text"
text1.text = "Primera linea del text"
text1.text = text1.text & vbCrLf & "Segunda linea del text"
