10.04.2019 Views

Ejercicios de programación .net (nivel inicial)

Se muestra el funcionamiento de los conceptos básicos para programar en .net

Se muestra el funcionamiento de los conceptos básicos para programar en .net

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Unión <strong>de</strong> Caracteres<br />

Public Class Form2<br />

Private Sub Button1_Click(ByVal sen<strong>de</strong>r As<br />

System.Object, ByVal e As System.EventArgs) Handles<br />

Button1.Click<br />

Dim texto1, texto2 As String<br />

texto1 = TextBox1.Text<br />

texto2 = TextBox2.Text<br />

TextBox3.Text = texto1 + texto2<br />

End Sub<br />

Private Sub Button2_Click(ByVal sen<strong>de</strong>r As<br />

System.Object, ByVal e As System.EventArgs) Handles<br />

Button2.Click<br />

Dim texto1, texto2 As String<br />

texto1 = TextBox1.Text<br />

texto2 = TextBox2.Text<br />

TextBox4.Text = texto1 & texto2<br />

End Sub<br />

End Class<br />

Leonel Navarrete

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!