Programming Tutorials

Comment on Tutorial - String Split function in VB.net By Issac



Comment Added by : Eldan

Comment Added at : 2012-06-17 08:25:09

Comment on Tutorial : String Split function in VB.net By Issac
Try this code:


Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click

label1.text = textbox1.text & ", " & textbox2.text & ", " & textbox3.text ........

End Sub
End Class

I hope this is what you wanted :)


View Tutorial