V VB2012 New member Joined Feb 5, 2012 Messages 1 Programming Experience 5-10 Feb 5, 2012 #1 I want the professionals VB.NET help me in this: How Get from TextBox1 the text after Name= + It's Variable To the TextBox2 :culpability: Attachments proiey.png 2.6 KB · Views: 33
I want the professionals VB.NET help me in this: How Get from TextBox1 the text after Name= + It's Variable To the TextBox2 :culpability:
N Niko Kähärä New member Joined Feb 10, 2012 Messages 3 Programming Experience 3-5 Feb 10, 2012 #2 Hello, you could do it this way: If TextBox1.Text.Contains("Name=") Then TextBox2.Text = TextBox1.Text.Split("=")(1) End If Last edited: Feb 10, 2012 Upvote 0 Downvote
Hello, you could do it this way: If TextBox1.Text.Contains("Name=") Then TextBox2.Text = TextBox1.Text.Split("=")(1) End If